/* ============================================
   PG GOURMANDISES - CUSTOM STYLES
   Luxury & Editorial Aesthetic
   ============================================ */

:root {
    /* ============================================
       PALETTE CHAMPAGNE / DORÉ CHIC
       ============================================ */

    --color-bg-main: #F8F4EE;
    --color-bg-secondary: #EFE7DD;
    --color-bg-dark: #2F2623;
    /* Doré champagne */
    --color-accent: #C6A06A;
    /* Hover / doré plus soutenu */
    --color-accent-dark: #A67C52;
    /* Rosé champagne subtil */
    --color-accent-soft: #D8B49A;
    /* Textes */
    --color-text: #3A2E2A;
    --color-text-light: #7A6B63;
    /* Bordures */
    --color-border: #E8DED2;
    /* Blanc chaud */
    --color-white: #FFFCF8;
    /* Bootstrap overrides */
    --bs-primary: #C6A06A;
    --bs-secondary: #8A7662;
    --bs-body-bg: #F8F4EE;
    --bs-body-color: #3A2E2A;
    /* Spacing */
    --spacing-lg: 3rem;
    --spacing-md: 2rem;
    --spacing-sm: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    color: var(--color-text);
    background: var(--color-bg-main);
    line-height: 1.6;
    font-size: 1rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

h4 {
    font-size: 1.3rem;
}

p {
    font-size: 1rem;
    color: var(--color-text-light);
}

footer a {
    color: var(--color-accent);
}

.italic-accent {
    font-style: italic;
    color: var(--color-accent);
    font-weight: 400;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    margin: 1rem 0 1.5rem;
    color: var(--color-text);
}

.section-description {
    font-size: 1rem;
    color: var(--color-text-light);
    /*max-width: 600px;*/
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(196, 133, 106, 0.1);
    border: 1px solid rgba(196, 133, 106, 0.3);
    border-radius: 50%;
    color: #C4856A;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

    .social-link:hover {
        background: #C4856A;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(196, 133, 106, 0.2);
    }

    .social-link svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

@media (max-width: 576px) {
    .social-icons {
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

        .social-link svg {
            width: 18px;
            height: 18px;
        }
}
/* ============================================
   NAVBAR
   ============================================ */
.navbar-nav .nav-link:hover,
.btn-link:hover,
.contact-item a:hover {
    color: var(--color-accent);
    opacity: 0.85;
}

.navbar {
    border-bottom: 1px solid var(--color-border);
    /*  box-shadow: 0 2px 8px rgba(0,0,0,0.05);*/
    background: rgba(248, 244, 238, 0.92);
    backdrop-filter: blur(10px);
}

.brand-pg {
    color: var(--color-text);
    font-weight: 700;
}

.brand-italic {
    font-style: italic;
    color: var(--color-accent);
}

.navbar-nav .nav-link {
    margin: 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text) !important;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: var(--color-accent) !important;
    }

.btn-commander {
    background: linear-gradient( 135deg, #C6A06A, #B48A5A );
    border-radius: 3px;
    box-shadow: 0 8px 20px rgba(198, 160, 106, 0.18);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: none;
    padding: 0.65rem 1.5rem;
    transition: all 0.3s ease;
}

    .btn-commander:hover {
        background: var(--color-accent);
        color: white;
        transform: translateY(-2px);
    }

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: var(--color-bg-main);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin: 1.5rem 0;
    line-height: 1.15;
    color: var(--color-text);
    animation: slideInUp 0.8s ease-out;
}

.hero-description {
    font-size: 1rem;
    margin: 1.5rem 0;
    max-width: 500px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.2s both;
}

    .cta-group .btn-dark {
        background: var(--color-text);
        color: white;
        border: none;
        padding: 0.85rem 2rem;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        transition: all 0.3s ease;
    }

        .cta-group .btn-dark:hover {
            background: var(--color-accent);
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

    .cta-group .btn-link {
        color: var(--color-text);
        text-decoration: none;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        position: relative;
        padding: 0.5rem 0;
    }

        .cta-group .btn-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--color-accent);
            transition: width 0.3s ease;
        }

        .cta-group .btn-link:hover {
            color: var(--color-accent);
        }

/* Hero Gallery */
/* ============================================
   HERO SECTION - MINIMAL FIX
   Ajoute SEULEMENT ce CSS, ne modifie pas l'existant
   ============================================ */

/* Réduit l'espace entre grande image et texte sur mobile */
@media (max-width: 991px) {
    /* Grande image du haut */
    .hero-section .row > .col-12:first-child {
        margin-bottom: 1rem !important; /* Réduit de 3rem (mb-4) à 1rem */
    }

    /* Réduit le padding du texte sur mobile */
    .hero-section .col-lg-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    /* Réduit l'espace avant les petites images */
    .hero-section .row:last-child {
        margin-top: 1.5rem !important; /* Au lieu de mt-5 */
    }
}

@media (max-width: 768px) {
    .hero-section .col-lg-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .hero-section .row > .col-12:first-child {
        margin-bottom: 0.75rem !important;
    }
}

/* Hover effect sur les images mobile (optionnel) */
@media (max-width: 991px) {
    .hero-section img {
        transition: transform 0.3s ease;
    }

        .hero-section img:hover {
            transform: translateY(-4px);
        }
}

/* ============================================
   AJUSTEMENT DE POSITION D'IMAGE
   Ajoute ceci à ton CSS pour pouvoir repositionner l'image
   ============================================ */

/* 
   GRANDE IMAGE (Mobile)
   Par défaut : center = centre l'image
   Tu peux changer à :
   - "top" = haut
   - "bottom" = bas
   - "left" = gauche
   - "right" = droite
   - "top left" = haut-gauche
   - "top right" = haut-droite
   - etc.
   OU utiliser des % pour plus de précision : "50% 30%" = centré horizontalement, 30% du haut
*/

.hero-section .d-lg-none img[src*="traiteur_buffet"] {
    object-position: center 35% !important;
    /* 
    Explication :
    - "center" = centré horizontalement
    - "35%" = à 35% du haut (pour voir la personne entièrement)
    
    À adapter selon ta préférence !
    Essaie : 30%, 35%, 40%, 50% pour voir le rendu
    */
}

/* 
   ALTERNATIVE : Si tu veux une valeur spécifique pour mobile petit
*/
@media (max-width: 576px) {
    .hero-section .d-lg-none img[src*="traiteur_buffet"] {
        object-position: center 40% !important;
    }
}

/* 
   Autres images (Cake, Burger) - optionnel
   Si tu veux les recadrer aussi
*/

.hero-section img[src*="layer_cake"] {
    object-position: center center !important;
}

.hero-section img[src*="mini_humburger"] {
    object-position: center center !important;
}


.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: auto;
}

.gallery-item-1 {
    grid-row: 1 / 3; /* Occupe 2 lignes */
    height: 400px;
}

.gallery-item-2 {
    height: 300px;
}

.gallery-item-3 {
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(58, 46, 42, 0.08);
}

/* Sur tablette et mobile */
@media (max-width: 900px) {
    .hero-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        height: auto;
    }

    .gallery-item-1 {
        grid-column: 1 / -1; /* Occupe les 2 colonnes */
        height: 180px;
    }

    .gallery-item-2,
    .gallery-item-3 {
        height: 180px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: var(--color-bg-dark);
    color: white;
    padding: 4rem 0;
    margin: 2rem 0;
}

.stat-item {
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #eee;
    cursor: pointer;
    border: 1px solid var(--color-border);
}

    .portfolio-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .portfolio-card:hover img {
        transform: scale(1.08);
    }

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

/* ============================================
   GÂTEAUX SECTION
   ============================================ */

.gateaux-section {
    background: var(--color-white);
}

.subsection-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 0.5rem 0 1rem;
}

.subsection-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.gateaux-section .btn-dark {
    background: var(--color-text);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .gateaux-section .btn-dark:hover {
        background: var(--color-accent);
        transform: translateY(-2px);
    }

.gateaux-section img {
    max-width: 100%;
    height: auto;
    border: 8px solid white;
    box-shadow: 0 15px 35px rgba(58, 46, 42, 0.08);
}

/* ============================================
   OCCASIONS SECTION
   ============================================ */

.occasions-section {
    background: var(--color-bg-pink);
    padding: 5rem 0;
}

.occasion-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    background: var(--color-white);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .occasion-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .occasion-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.occasion-content {
    padding: 2rem;
}

.occasion-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.occasion-card h4 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.occasion-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* ============================================
   TRAITEUR SECTION
   ============================================ */

.traiteur-section {
    background: var(--color-bg-dark);
    color: white;
    padding: 5rem 0;
}

.traiteur-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 1rem 0;
}

.traiteur-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.traiteur-list {
    list-style: none;
    margin: 2rem 0;
}

    .traiteur-list li {
        margin: 1.5rem 0;
        padding-left: 2rem;
        position: relative;
        font-size: 0.95rem;
        color: rgba(255,255,255,0.9);
        line-height: 1.7;
    }

        .traiteur-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--color-accent);
            font-weight: bold;
            font-size: 1.2rem;
        }

.traiteur-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.traiteur-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.traiteur-section .btn-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
    margin-top: 1rem;
}

    .traiteur-section .btn-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--color-accent);
    }

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 1rem 0;
}

.contact-description {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.contact-info {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 50px;
    height: 50px;
    background: var(--color-bg-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-item a:hover {
        color: var(--color-accent);
    }

/* Form Styles */
.contact-form {
    background: var(--color-bg-main);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        color: var(--color-accent);
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.6rem;
    }

.form-control,
.form-select {
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    background: var(--color-white);
    color: var(--color-text);
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--color-accent);
        box-shadow: 0 0 0 0.2rem rgba(196, 133, 106, 0.15);
        outline: none;
    }

    .form-control::placeholder {
        color: #999;
    }

.btn-submit {
    background: var(--color-text);
    color: white;
    border: none;
    width: 100%;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1rem;
    cursor: pointer;
}

    .btn-submit:hover {
        background: var(--color-accent);
        transform: translateY(-2px);
    }

/* ============================================
   EVENT TYPE BUTTONS - Style pour les boutons types d'événement
   ============================================ */

.event-type-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.button-group {
    position: relative;
}

    .button-group input[type="radio"] {
        display: none;
    }

.btn-event {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 2px solid #E0D5CC;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-text);
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

    .btn-event .letter {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: #C4856A;
        color: white;
        border-radius: 4px;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .btn-event:hover {
        border-color: #C4856A;
        background: rgba(196, 133, 106, 0.05);
        transform: translateY(-2px);
    }

.button-group input[type="radio"]:checked + .btn-event {
    border-color: #C4856A;
    background: rgba(196, 133, 106, 0.1);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(196, 133, 106, 0.15);
}

/* ============================================
   FORM ERROR MESSAGES
   ============================================ */

.form-error {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

    .form-error:empty {
        display: none;
    }

.required {
    color: #dc3545;
    margin-left: 0.25rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
    background-image: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .event-type-buttons {
        grid-template-columns: 1fr;
    }

    .btn-event {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

        .btn-event .letter {
            width: 28px;
            height: 28px;
            font-size: 0.75rem;
        }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: var(--color-accent);
    }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-gallery {
        height: auto;
        margin-top: 3rem;
    }

    .gallery-item {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3/4;
        margin-bottom: 1rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1.5rem;
    }

        .stat-item:last-child {
            border-bottom: none;
        }

    .traiteur-gallery {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

        .cta-group .btn-dark {
            width: 100%;
            text-align: center;
        }
}

@media (max-width: 576px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 2rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }
}


/* ============================================
   ADDITIONS - Nouvelles sections
   À ajouter à la fin du fichier site.css
   ============================================ */

/* ============================================
   INTRODUCTION SECTION
   ============================================ */

.intro-section {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.intro-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 1.5rem 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: var(--color-bg-main);
    padding: 5rem 0;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 4px;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(58, 46, 42, 0.08);
        border-color: var(--color-accent);
    }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 1rem 0;
    color: var(--color-text);
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: 1rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    background: var(--color-white);
    padding: 5rem 0;
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events-section {
    background: var(--color-bg-pink);
    padding: 5rem 0;
}

.event-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .event-card:hover {
        box-shadow: 0 15px 35px rgba(58, 46, 42, 0.08);
        transform: translateY(-5px);
    }

.event-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.event-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--color-text);
    line-height: 1.3;
}

.event-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: 1rem;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.whyus-section {
    background: var(--color-white);
    padding: 5rem 0;
    border-top: 1px solid var(--color-border);
}

.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.whyus-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.whyus-checkmark {
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: bold;
    min-width: 40px;
    flex-shrink: 0;
}

.whyus-item p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
}

.whyus-item strong {
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.cta-final-section {
    background: var(--color-bg-main);
    padding: 4rem 0;
}

    .cta-final-section .btn-dark {
        margin-top: 2rem;
    }

/* ============================================
   CONTACT SECTION (Enhanced)
   ============================================ */

.contact-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--color-bg-main);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    margin-top: 2rem;
}

    .contact-form .form-group {
        margin-bottom: 1.5rem;
    }

    .contact-form label {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        color: var(--color-accent);
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.7rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        border: 1px solid var(--color-border);
        border-radius: 4px;
        padding: 0.85rem 1rem;
        font-family: 'Lora', serif;
        font-size: 0.95rem;
        background: var(--color-white);
        color: var(--color-text);
        transition: all 0.3s ease;
    }

        .contact-form .form-control:focus,
        .contact-form .form-select:focus {
            border-color: var(--color-accent);
            box-shadow: 0 0 0 0.2rem rgba(196, 133, 106, 0.15);
            outline: none;
        }

        .contact-form .form-control::placeholder {
            color: #bbb;
        }

    /* Checkboxes styling */
    .contact-form .form-check {
        margin-bottom: 0.75rem;
    }

    .contact-form .form-check-input {
        border: 1px solid var(--color-border);
        width: 1.2em;
        height: 1.2em;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .contact-form .form-check-input:checked {
            background-color: var(--color-accent);
            border-color: var(--color-accent);
        }

        .contact-form .form-check-input:hover {
            border-color: var(--color-accent);
        }

    .contact-form .form-check-label {
        font-size: 0.95rem;
        color: var(--color-text);
        cursor: pointer;
        margin-left: 0.5rem;
        user-select: none;
    }

.btn-submit {
    background: var(--color-text);
    color: white;
    border: none;
    width: 100%;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    cursor: pointer;
    border-radius: 4px;
}

    .btn-submit:hover {
        background: var(--color-accent);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .event-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 1rem;
    }

        .contact-form label {
            font-size: 0.65rem;
        }

    .whyus-checkmark {
        font-size: 1.5rem;
        min-width: 30px;
    }

    .whyus-item p {
        font-size: 0.9rem;
    }
}


.btn-cta-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.4rem;
    background: linear-gradient( 135deg, #C6A06A, #B78B5D );
    color: #FFFDF9;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(198, 160, 106, 0.18);
    transition: all 0.35s ease;
}

    .btn-cta-luxury:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(198, 160, 106, 0.28);
        color: white;
        background: linear-gradient( 135deg, #D0AA75, #BE9468 );
    }