/* =============================================
   LUXE CANAPÉS & CATERING  MAIN STYLESHEET
   ============================================= */


/* --- CSS Variables --- */

:root {
    --primary: #8e623b;
    /* rich dark brown */
    --primary-dark: #6b4828;
    /* deeper brown for hover */
    --gold: #C9A84C;
    /* warm gold accent */
    --gold-light: #bd956a;
    /* soft warm tan */
    --white: #FFFFFF;
    --cream: #efe7de;
    /* warm cream background */
    --cream-light: #edf2f5;
    /* very light off-white */
    --taupe: #c3b19b;
    /* muted taupe */
    --dark: #3d2410;
    /* deep brown for headings */
    --text: #7a6555;
    /* warm brown-grey text */
    --light-bg: #efe7de;
    /* cream background */
    --overlay: rgba(142, 98, 59, 0.08);
    --font-body: 'Inter', sans-serif;
    --font-display: 'Forum', serif;
    --container: 1290px;
    --transition: 0.3s ease;
}


/* --- Reset & Base --- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}


/* --- Container --- */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 30px;
}


/* --- Typography --- */

h1,
h2,
h3 {
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.15;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

.sub-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sub-label::before,
.sub-label::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--gold);
}


/* --- Buttons --- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 4px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
}

.btn-gold:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.btn svg,
.btn i {
    font-size: 0.85em;
}


/* --- Section Spacing --- */

section {
    position: relative;
}

.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 70px 0;
}


/* =============================================
     TOP BAR
     ============================================= */

.top-bar {
    background: var(--cream);
    padding: 10px 30px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--taupe);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dark);
}

.top-bar-social {
    display: flex;
    gap: 14px;
}

.top-bar-social a {
    color: var(--primary);
}

.top-bar-social a:hover {
    color: var(--gold);
}


/* =============================================
     HEADER / NAV
     ============================================= */

.site-header {
    background: var(--primary);
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--gold);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 45px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav a {
    color: var(--cream);
    font-size: 0.88rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 22px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}

.main-nav a:hover,
.main-nav .active a {
    color: var(--gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    color: var(--cream);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
}


/* =============================================
     HERO SLIDER
     ============================================= */

.hero {
    position: relative;
    min-height: 600px;
    background-color: var(--primary);
    background-image: url('img/low-angle-friends-holding-cocktails.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* important  fixes iOS blank gap bug */
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(61, 36, 16, 0.88) 40%, rgba(61, 36, 16, 0.25));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 30px 100px;
    max-width: 700px;
}

.hero-tag {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.95;
    color: var(--cream-light);
    display: block;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--taupe);
    margin-bottom: 36px;
    max-width: 500px;
}


/* =============================================
     ABOUT SECTION
     ============================================= */

.about {
    padding: 110px 0;
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 93%;
    border-radius: 2px;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 32px;
}

.feature-box {
    background: var(--primary);
    padding: 28px 30px;
    border-radius: 4px;
    margin-bottom: 28px;
    border-left: 4px solid var(--gold);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--cream);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}


/* =============================================
     WHO WE ARE
     ============================================= */

.who-we-are {
    padding: 100px 0;
    background: var(--cream);
}

.who-we-are .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.who-text {
    grid-column: span 1;
}

.who-text h2 {
    margin-bottom: 20px;
}

.who-text p {
    margin-bottom: 28px;
}

.who-images {
    display: flex;
    gap: 16px;
}

.who-images img {
    width: 48%;
    object-fit: cover;
    border-radius: 2px;
}


/* =============================================
     MENU / PRODUCTS
     ============================================= */

.menu-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.menu-image img {
    width: 100%;
    border-radius: 2px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--taupe);
}

.product-item:first-child {
    border-top: 1px solid var(--taupe);
}

.product-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--gold-light);
}

.product-info {
    flex: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text);
}

.product-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
}

.menu-cta {
    margin-top: 32px;
}


/* =============================================
     EVENT / BOOKING SECTION
     ============================================= */

.event-section {
    padding: 100px 0;
    background: var(--cream);
    border-top: 1px solid var(--taupe);
    border-bottom: 1px solid var(--taupe);
}

.event-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.event-text h2 {
    margin-bottom: 16px;
}

.event-text p {
    margin-bottom: 28px;
}

.check-list {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.event-gallery img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
}


/* =============================================
     TESTIMONIALS
     ============================================= */

.testimonials {
    background: var(--primary);
    padding: 100px 0;
}

.testimonials .section-header h2 {
    color: var(--cream-light);
}

.testimonials .sub-label {
    color: var(--gold);
}

.testimonials .sub-label::before,
.testimonials .sub-label::after {
    background: var(--gold);
}

.testimonial-card {
    background: rgba(239, 231, 222, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-text {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-name {
    color: var(--cream-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    color: var(--gold);
    font-size: 0.82rem;
}


/* =============================================
     CONTACT / FORM SECTION
     ============================================= */

.contact-section {
    padding: 110px 0;
    background: var(--white);
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text h2 {
    margin-bottom: 16px;
}

.contact-text p {
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 18px;
    background: var(--cream);
    border: 1px solid var(--taupe);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}


/* =============================================
     GALLERY STRIP
     ============================================= */

.gallery-strip {
    padding: 60px 0 80px;
    overflow: hidden;
    background: var(--cream-light);
}

.gallery-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-track img {
    flex-shrink: 0;
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 2px;
}


/* =============================================
     FOOTER
     ============================================= */

.site-footer {
    background: var(--dark);
    color: var(--taupe);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(195, 177, 155, 0.2);
}

.footer-brand img {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    color: var(--taupe);
    font-size: 1.1rem;
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-col h4 {
    color: var(--taupe);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: var(--cream);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-phone {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    font-size: 0.82rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}


/* =============================================
     OFFER STRIP / PILLS
     ============================================= */

.offer-strip {
    background: var(--primary);
    padding: 18px 0;
    border-bottom: 2px solid var(--gold);
}

.offer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pill {
    background: rgba(239, 231, 222, 0.12);
    color: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
}


/* =============================================
     MENU CATEGORIES
     ============================================= */

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-category {
    border-top: 1px solid var(--taupe);
    padding-top: 20px;
}

.menu-cat-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 400;
}

.menu-text-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.menu-text-list span {
    font-size: 0.9rem;
    color: var(--text);
    position: relative;
    padding-left: 12px;
}

.menu-text-list span::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}


/* =============================================
     DM BADGE
     ============================================= */

.dm-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border: 1px solid var(--gold);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}

.dm-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}


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

@media (max-width: 1024px) {
    .about .container,
    .who-we-are .container {
        grid-template-columns: 1fr;
    }
    .who-images {
        display: none;
    }
    .menu-grid,
    .event-section .container,
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .top-bar-left {
        display: none;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    .main-nav,
    .header-phone {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    /* ✅ One clean hero rule */
    .hero {
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
    .hero::after {
        background: linear-gradient( to top, rgba(61, 36, 16, 0.92) 0%, rgba(61, 36, 16, 0.55) 45%, rgba(61, 36, 16, 0.2) 100%);
    }
    .hero-content {
        padding: 40px 20px 60px;
        max-width: 100%;
    }
    .hero-tag {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
        line-height: 1;
    }
    .section-pad {
        padding: 70px 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .event-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-phone {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85svh;
    }
    .hero-tag {
        font-size: clamp(2.4rem, 12vw, 3.2rem);
    }
}


/* Mobile Nav */

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        z-index: 999;
    }
    .main-nav.open {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav ul li a {
        display: block;
        padding: 12px 24px;
        border-bottom: 1px solid #f0f0f0;
    }
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px;
    }
    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: #1a1a1a;
        transition: all 0.3s ease;
    }
    /* Animate to X when open */
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    /* Hide desktop CTA on mobile */
    .header-cta {
        display: none;
    }
    /* Make header relative so nav can position absolutely */
    .site-header .container {
        position: relative;
    }
}


/* Hide the burger on desktop */

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

.testimonial-cta {
    display: block !important;
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
    clear: both;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-google {
    display: inline-block !important;
    padding: 14px 32px;
    border: 2px solid var(--gold);
    color: var(--white) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-google:hover {
    background-color: var(--gold);
    color: var(--dark) !important;
}