/* Wedding Page CSS - Part 1: Hero & Coverage Sections - Enhanced Font Sizes */

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

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

/* ================================================ */
/* WEDDING HERO SECTION */
/* ================================================ */

.marshall-wedding-hero {
    position: relative;
    min-height: 220px; /* Slightly increased */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Lancelot', cursive, serif;
}

/* Original */
.marshall-wedding-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-weddings.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

/* Additional hero backgrounds */
.marshall-wedding-hero-bw {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-bw.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-event {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-event.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-family {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-family.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-horse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-horse.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-landscape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-landscape.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-models {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-models.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-pets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-pets.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-photoshoot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-photoshoot.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-still {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-still.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-travel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/top-travel.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.marshall-wedding-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.marshall-wedding-hero-title {
    color: #fff;
    font-size: 3.625rem; /* Half-step down from 3.75rem (58px) */
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Lancelot', cursive, serif;
}

/* ================================================ */
/* WEDDING COVERAGE AREAS SECTION */
/* ================================================ */

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

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

.marshall-wedding-coverage-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.marshall-wedding-coverage-title {
    color: #333;
    font-size: 2.75rem; /* Half-step down from 2.875rem (44px) */
    font-weight: 500;
    margin-bottom: 32px; /* Adjusted proportionally */
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

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

.marshall-wedding-coverage-text {
    font-size: 1.3125rem; /* Half-step down from 1.375rem (21px) */
    color: #333;
    line-height: 1.7;
    margin-bottom: 22px; /* Adjusted proportionally */
    text-align: center;
}

.marshall-wedding-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px; /* Increased from 40px */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.marshall-wedding-area-item {
    background-color: #f8f9fa;
    padding: 21px 16px; /* Half-step down from increased padding */
    border-radius: 8px;
    text-align: center;
    font-size: 1.1875rem; /* Half-step down from 1.25rem (19px) */
    font-weight: 500;
    color: #333;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #5ca7db;
}

.marshall-wedding-area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

/* Large Tablet Styles (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .marshall-wedding-hero {
        min-height: 200px; /* Increased from 180px */
    }
    
    .marshall-wedding-hero-container {
        padding: 0 30px;
    }
    
    .marshall-wedding-hero-title {
        font-size: 3.275rem; /* Half-step down from 3.4rem (52.4px) */
    }
    
    .marshall-wedding-coverage {
        padding: 80px 0; /* Increased from 70px */
    }
    
    .marshall-wedding-coverage-container {
        padding: 0 30px;
    }
    
    .marshall-wedding-coverage-title {
        font-size: 2.4875rem; /* Half-step down from 2.6rem (39.8px) */
        margin-bottom: 30px; /* Adjusted proportionally */
    }
    
    .marshall-wedding-coverage-text {
        font-size: 1.1875rem; /* Half-step down from 1.25rem (19px) */
        margin-bottom: 20px; /* Adjusted proportionally */
    }
    
    .marshall-wedding-areas-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px; /* Increased from 18px */
        margin-top: 38px; /* Increased from 35px */
    }
    
    .marshall-wedding-area-item {
        font-size: 1.0625rem; /* Half-step down from 1.125rem (17px) */
        padding: 19px 14px; /* Half-step down from increased padding */
    }
}

/* Small Tablet Styles (481px - 768px) */
@media (max-width: 768px) {
    .marshall-wedding-hero {
        min-height: 180px; /* Increased from 160px */
    }
    
    .marshall-wedding-hero-container {
        padding: 0 20px;
    }
    
    .marshall-wedding-hero-title {
        font-size: 2.95rem; /* Half-step down from 3.1rem (47.2px) */
    }
    
    .marshall-wedding-coverage {
        padding: 70px 0; /* Increased from 60px */
    }
    
    .marshall-wedding-coverage-container {
        padding: 0 20px;
    }
    
    .marshall-wedding-coverage-title {
        font-size: 2.25rem; /* Half-step down from 2.375rem (36px) */
        margin-bottom: 26px; /* Adjusted proportionally */
    }
    
    .marshall-wedding-coverage-text {
        font-size: 1.0625rem; /* Half-step down from 1.125rem (17px) */
        margin-bottom: 20px; /* Adjusted proportionally */
    }
    
    .marshall-wedding-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px; /* Increased from 15px */
        margin-top: 35px; /* Increased from 30px */
    }
    
    .marshall-wedding-area-item {
        font-size: 1.03125rem; /* Half-step down from 1.0625rem (16.5px) */
        padding: 17px 13px; /* Half-step down from increased padding */
    }
}

/* Mobile Styles (≤ 480px) */
@media (max-width: 480px) {
    .marshall-wedding-hero {
        min-height: 160px; /* Increased from 140px */
    }
    
    .marshall-wedding-hero-container {
        padding: 0 20px; /* Increased from 15px for small margins */
    }
    
    .marshall-wedding-hero-title {
        font-size: 2.625rem; /* Half-step down from 2.75rem (42px) */
        line-height: 1.3;
    }
    
    .marshall-wedding-coverage {
        padding: 60px 0; /* Increased from 50px */
    }
    
    .marshall-wedding-coverage-container {
        padding: 0 20px; /* Increased from 15px for small margins */
    }
    
    .marshall-wedding-coverage-title {
        font-size: 2.125rem; /* Half-step down from 2.25rem (34px) */
        margin-bottom: 22px; /* Adjusted proportionally */
    }
    
    .marshall-wedding-coverage-text {
        font-size: 1.03125rem; /* Half-step down from 1.0625rem (16.5px) */
        margin-bottom: 20px; /* Adjusted proportionally */
    }
    
    .marshall-wedding-areas-grid {
        grid-template-columns: 1fr;
        gap: 15px; /* Increased from 12px */
        margin-top: 30px; /* Increased from 25px */
    }
    
    .marshall-wedding-area-item {
        font-size: 0.96875rem; /* Half-step down from 1rem (15.5px) */
        padding: 16px 13px; /* Half-step down from increased padding */
        line-height: 1.4;
    }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
    .marshall-wedding-hero {
        min-height: 140px; /* Increased from 120px */
    }
    
    .marshall-wedding-hero-container {
        padding: 0 18px; /* Increased from 12px for better margins */
    }
    
    .marshall-wedding-hero-title {
        font-size: 2.3125rem; /* Half-step down from 2.5rem (37px) */
        line-height: 1.3;
    }
    
    .marshall-wedding-coverage-container {
        padding: 0 18px; /* Increased from 12px for better margins */
    }
    
    .marshall-wedding-coverage-title {
        font-size: 2rem; /* Half-step down from 2.125rem (32px) */
        margin-bottom: 20px; /* Adjusted proportionally */
    }
    
    .marshall-wedding-coverage-text {
        font-size: 0.96875rem; /* Half-step down from 1rem (15.5px) */
        margin-bottom: 18px; /* Adjusted proportionally */
    }
    
    .marshall-wedding-areas-grid {
        gap: 12px; /* Increased from 10px */
        margin-top: 28px; /* Increased from 22px */
    }
    
    .marshall-wedding-area-item {
        font-size: 0.90625rem; /* Half-step down from 0.9375rem (14.5px) */
        padding: 14px 11px; /* Half-step down from increased padding */
    }
}