/* Photoshoot Booking Section - Enhanced Font Sizes */

/* Basic CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base font size */
html {
    font-size: 16px;
}

/* ================================================ */
/* PHOTOSHOOT BOOKING SECTION */
/* ================================================ */

.marshall-home-booking {
    background-color: #ffffff;
    padding: 90px 0; /* Increased from 80px */
    font-family: 'Lancelot', cursive, serif;
}

.marshall-home-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marshall-home-booking-content {
    text-align: center;
}

.marshall-home-booking-title {
    color: #333;
    font-size: 2.75rem; /* Increased from 2.625rem (44px) - Section title */
    font-weight: 500;
    margin-bottom: 18px; /* Increased from 15px */
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.marshall-home-booking-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #5ca7db;
}

.marshall-home-booking-subtitle {
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) - Body text */
    color: #555;
    margin-bottom: 55px; /* Increased from 50px */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Booking Services Grid */
.marshall-home-booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px; /* Increased from 40px */
    margin-bottom: 65px; /* Increased from 60px */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.marshall-home-booking-service {
    background-color: #f8f9fa;
    padding: 40px 30px; /* Increased from 35px 25px */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.marshall-home-booking-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.marshall-home-booking-icon {
    margin-bottom: 22px; /* Increased from 20px */
}

.marshall-home-booking-icon i {
    font-size: 45px; /* Increased from 42px */
    color: #5ca7db;
}

.marshall-home-booking-service-title {
    font-size: 1.5625rem; /* Increased from 1.5rem (25px) - Sub title */
    font-weight: 500;
    color: #333;
    margin-bottom: 18px; /* Increased from 15px */
}

.marshall-home-booking-service-description {
    font-size: 1.1875rem; /* Increased from 1.125rem (19px) - Secondary text */
    color: #555;
    line-height: 1.6;
    margin-bottom: 28px; /* Increased from 25px */
    flex-grow: 1;
}

/* Booking Service Buttons */
.marshall-home-booking-button {
    background-color: #5ca7db;
    color: white;
    font-family: 'Lancelot', cursive, serif;
    font-size: 1.0625rem; /* Increased from 1rem (17px) - List text */
    font-weight: 500;
    padding: 14px 28px; /* Increased from 12px 25px */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(92, 167, 219, 0.3);
    margin-top: auto;
    align-self: center;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
}

.marshall-home-booking-button:hover {
    background-color: #4a94c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 167, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* Main CTA Section */
.marshall-home-booking-cta {
    background-color: #e8e8e8;
    padding: 45px 35px; /* Increased from 40px 30px */
    border-radius: 8px;
    text-align: center;
    margin-top: 25px; /* Increased from 20px */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.marshall-home-booking-cta-title {
    font-size: 1.8125rem; /* Increased from 1.75rem (29px) - Larger sub title */
    font-weight: 500;
    color: #333;
    margin-bottom: 18px; /* Increased from 15px */
}

.marshall-home-booking-cta-text {
    font-size: 1.1875rem; /* Increased from 1.125rem (19px) - Secondary text */
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px; /* Increased from 25px */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.marshall-home-booking-main-button {
    background-color: #5ca7db;
    color: white;
    font-family: 'Lancelot', cursive, serif;
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) - Larger button text */
    font-weight: 500;
    padding: 20px 45px; /* Increased from 18px 40px */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(92, 167, 219, 0.3);
    text-decoration: none;
    display: inline-block;
}

.marshall-home-booking-main-button:hover {
    background-color: #4a94c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 167, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* ================================================ */
/* RESPONSIVE BREAKPOINTS */
/* ================================================ */

/* Large Tablet Styles (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .marshall-home-booking {
        padding: 80px 0; /* Increased from 70px */
    }
    
    .marshall-home-booking-container {
        padding: 0 30px;
    }
    
    .marshall-home-booking-title {
        font-size: 2.4875rem; /* Increased from 2.375rem (39.8px) */
        margin-bottom: 18px; /* Increased from 15px */
    }
    
    .marshall-home-booking-subtitle {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 50px; /* Increased from 45px */
    }
    
    .marshall-home-booking-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px; /* Increased from 30px */
        margin-bottom: 55px; /* Increased from 50px */
    }
    
    .marshall-home-booking-service {
        padding: 35px 25px; /* Increased from 30px 20px */
    }
    
    .marshall-home-booking-icon i {
        font-size: 40px; /* Increased from 38px */
    }
    
    .marshall-home-booking-service-title {
        font-size: 1.4375rem; /* Increased from 1.375rem (23px) */
        margin-bottom: 16px; /* Increased */
    }
    
    .marshall-home-booking-service-description {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 26px; /* Increased */
    }
    
    .marshall-home-booking-button {
        font-size: 0.9375rem; /* Increased from 0.875rem (15px) */
        padding: 13px 25px; /* Increased from 11px 22px */
    }
    
    .marshall-home-booking-cta {
        padding: 40px 30px; /* Increased from 35px 25px */
    }
    
    .marshall-home-booking-cta-title {
        font-size: 1.5625rem; /* Increased from 1.5rem (25px) */
        margin-bottom: 16px; /* Increased */
    }
    
    .marshall-home-booking-cta-text {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 28px; /* Increased */
    }
    
    .marshall-home-booking-main-button {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        padding: 18px 40px; /* Increased from 16px 35px */
    }
}

/* Small Tablet Styles (481px - 768px) */
@media (max-width: 768px) {
    .marshall-home-booking {
        padding: 70px 0; /* Increased from 60px */
    }
    
    .marshall-home-booking-container {
        padding: 0 20px;
    }
    
    .marshall-home-booking-title {
        font-size: 2.25rem; /* Increased from 2.125rem (36px) */
        margin-bottom: 18px; /* Increased from 15px */
    }
    
    .marshall-home-booking-subtitle {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 45px; /* Increased from 40px */
    }
    
    .marshall-home-booking-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Increased from 25px */
        margin-bottom: 50px; /* Increased from 45px */
    }
    
    .marshall-home-booking-service {
        padding: 30px 22px; /* Increased from 25px 18px */
    }
    
    .marshall-home-booking-icon i {
        font-size: 38px; /* Increased from 36px */
    }
    
    .marshall-home-booking-service-title {
        font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
        margin-bottom: 15px; /* Increased */
    }
    
    .marshall-home-booking-service-description {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        margin-bottom: 26px; /* Increased */
    }
    
    .marshall-home-booking-button {
        font-size: 0.875rem; /* Increased from 0.8125rem (14px) */
        padding: 12px 22px; /* Increased from 10px 20px */
    }
    
    .marshall-home-booking-cta {
        padding: 35px 25px; /* Increased from 30px 20px */
    }
    
    .marshall-home-booking-cta-title {
        font-size: 1.4375rem; /* Increased from 1.375rem (23px) */
        margin-bottom: 15px; /* Increased */
    }
    
    .marshall-home-booking-cta-text {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        margin-bottom: 26px; /* Increased */
    }
    
    .marshall-home-booking-main-button {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        padding: 17px 34px; /* Increased from 15px 30px */
    }
}

/* Mobile Styles (≤ 480px) */
@media (max-width: 480px) {
    .marshall-home-booking {
        padding: 60px 0; /* Increased from 50px */
    }
    
    .marshall-home-booking-container {
        padding: 0 20px; /* Increased from 15px for small margins */
    }
    
    .marshall-home-booking-title {
        font-size: 2.125rem; /* Increased from 2rem (34px) */
        margin-bottom: 30px; /* Increased from 25px */
    }
    
    .marshall-home-booking-subtitle {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 40px; /* Increased from 35px */
    }
    
    .marshall-home-booking-grid {
        gap: 25px; /* Increased from 20px */
        margin-bottom: 45px; /* Increased from 40px */
    }
    
    .marshall-home-booking-service {
        padding: 28px 20px; /* Increased from 22px 16px */
    }
    
    .marshall-home-booking-icon i {
        font-size: 35px; /* Increased from 32px */
    }
    
    .marshall-home-booking-service-title {
        font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-home-booking-service-description {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        margin-bottom: 26px; /* Increased */
    }
    
    .marshall-home-booking-button {
        font-size: 0.875rem; /* Increased from 0.8125rem (14px) */
        padding: 11px 20px; /* Increased from 9px 18px */
    }
    
    .marshall-home-booking-cta {
        padding: 30px 20px; /* Increased from 25px 15px */
        margin-top: 20px; /* Increased from 15px */
    }
    
    .marshall-home-booking-cta-title {
        font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-home-booking-cta-text {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        margin-bottom: 25px; /* Increased from 20px */
    }
    
    .marshall-home-booking-main-button {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        padding: 15px 28px; /* Increased from 12px 24px */
    }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
    .marshall-home-booking-container {
        padding: 0 18px; /* Increased from default for better margins */
    }
    
    .marshall-home-booking-title {
        font-size: 2rem; /* Increased for better readability (32px) */
        margin-bottom: 25px;
    }
    
    .marshall-home-booking-subtitle {
        font-size: 1rem; /* Increased from smaller sizes (16px) */
        margin-bottom: 35px;
    }
    
    .marshall-home-booking-grid {
        gap: 22px;
        margin-bottom: 40px;
    }
    
    .marshall-home-booking-service {
        padding: 25px 18px;
    }
    
    .marshall-home-booking-icon i {
        font-size: 32px;
    }
    
    .marshall-home-booking-service-title {
        font-size: 1.25rem; /* Increased (20px) */
        margin-bottom: 12px;
    }
    
    .marshall-home-booking-service-description {
        font-size: 0.9375rem; /* Increased (15px) */
        margin-bottom: 22px;
    }
    
    .marshall-home-booking-button {
        font-size: 0.8125rem; /* Increased (13px) */
        padding: 10px 18px;
    }
    
    .marshall-home-booking-cta {
        padding: 28px 18px;
        margin-top: 18px;
    }
    
    .marshall-home-booking-cta-title {
        font-size: 1.25rem; /* Increased (20px) */
        margin-bottom: 12px;
    }
    
    .marshall-home-booking-cta-text {
        font-size: 0.9375rem; /* Increased (15px) */
        margin-bottom: 22px;
    }
    
    .marshall-home-booking-main-button {
        font-size: 0.9375rem; /* Increased (15px) */
        padding: 14px 26px;
    }
}