/* Header container */
.site-header {
    background-color: #CC5500;
    padding: 6px 0;
    width: 100%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Utility Nav Container */
.utility-nav {
    display: flex;
    align-items: center;
    gap: 20px;
   flex-shrink: 0;
}

/* Hidden until cart has items */
.hidden {
    display: none;
}

nav.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    margin: 0 auto; /* centers nav links */
}


/* Inner layout */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* group logo and title together */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo */
.logo img {
    height: 60px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

/* Title */
.site-title {
    color: #fff;
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.main-nav {
    margin-right: 4px;
}

.main-nav a {
    display: inline-block;
    padding: 6px 14px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    border-radius: 6px;
    text-decoration: none;

    /* Match hero-card style */
    background: rgba(255, 255, 255, 0.25);  /*warm, earthy */
    backdrop-filter: blur(2px);
    transition: background 0.25s ease, color 0.25s ease;
    box-shadow: none;
}

/* Hover */
.main-nav a:hover {
    background: rgba(0, 0, 0, 0.25); /* slightly stronger */
    color: white;
}

/* Active link */
.main-nav a[aria-current="page"],
.main-nav a.active {
    color: #fff;
    box-shadow: none;
    background-color: #2b4506;
    color: #fff;
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}

/* Shine effect for active link */
.main-nav a[aria-current="page"]::before,
.main-nav a.active::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 6px;
    background: 
        linear-gradient(
            to bottom right, 
            rgba(255, 255, 255, 0.35), 
            rgba(255, 255, 255, 0) 60%
        ),
        linear-gradient(
            to top left, 
            rgba(255, 255, 255, 0.20), 
            rgba(255, 255, 255, 0) 70%
        );
    pointer-events: none;
    animation: shine 2s infinite;
}

.user-icon {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.auth-trigger {
    background: none;
    border: none;
    font-weight: 700;
    color: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.auth-trigger:hover {
    opacity: 0.75;
}

.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.auth-modal.hidden {
    display: none;
}

.auth-modal-content {
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    position: relative;
}

/* Logo */
.auth-logo img {
    width: 100px;
    display: block;
    margin: 0 auto 10px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(83%) saturate(1782%) hue-rotate(2deg) brightness(93%) contrast(101%) drop-shadow(0 2px 3px rgba(0,0,0,0.25));
}

/* Title */
.auth-title {
    text-align: center;
    color: #2b4506;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Form fields */
.auth-form label {
    font-weight: 600;
    margin-top: 12px;
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Password wrapper */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Remember + Forgot */
.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.auth-row .remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.forgot-link {
    color: #CC5500;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.forgot-link:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* Legal text */
.auth-legal {
    font-size: 0.8rem;
    color: #555;
    margin: 15px 0;
    line-height: 1.4;
}

/* Green shiny button (matches Proceed to Payment) */
.modal-btn-orange {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, #cc5500 0%, #b44a00 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
}

.modal-btn-orange:hover {
    background: linear-gradient(180deg, #e05f00 0%, #a84300 100%);
    transform: translateY(-2px);
}

/* Divider */
.auth-divider {
    height: 1px;
    background: #ddd;
    margin: 25px 0;
}

/* Subtitles */
.auth-subtitle {
    text-align: center;
    color: #cc5500;
    margin-bottom: 5px;
}

.auth-subsubtitle {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Outline button */
.modal-btn-outline-orange {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #cc5500;
    background: #fff;
    color: #cc5500;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-btn-outline-orange:hover {
    border-color: #b44a00;
    color: #b44a00;
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Help section */
.auth-help {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 8px;
    color: #333;
    text-align: center;
}

.auth-help p {
    margin: 0;
}

.auth-help p strong {
    font-weight: 700;
}

.chat-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.chat-icon:hover {
    transform: translateY(-2px) scale(1.1);
}


.auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.auth-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #CC5500;
    text-align: center;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.auth-submit {
    width: 100%;
    margin-top: 20px;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    font-weight: 700;
    color: #666;
}

.btn-white {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    background: #fff;
    border: 2px solid #CC5500;
    color: #CC5500;
    font-weight: 700;
    cursor: pointer;
}

.terms-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
}


.bag-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 700;
}

.bag-svg {
    width: 20px;
    height: 20px;
    fill: #f5f5f5;
}

.bag-icon:hover .bag-svg {
    opacity: 0.75;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #2b4506;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 50%;
    line-height: 1;
}


/* Hamburber (hidden on desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* Global Orange Button */
.btn-orange {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    background: linear-gradient(180deg, #ff8a2b 0%, #ff5a00 100%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none; /* helps <button> elements match <a> elements */
}

/* Hover + Active */
.btn-orange:hover {
    background: linear-gradient(180deg, #ffa24d 0%, #ff6a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.btn-orange:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}


/* INDEX HERO */
.index-page-hero {
    position: relative;
    background: url('../media/homehero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 280px;
    text-align: center;
}

.index-page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.7)
    );
}

.index-hero-text {
    position: absolute;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.index-hero-text h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.index-hero-text p {
    color: #fff;
    font-size: 1.5rem;
    max-width: 600px;
    margin-top: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.index-hero-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 12px auto;
    border-radius: 2px;
    box-shadow:
        0 6px 12px rgba(0,0,0,0.25),
        0 0 18px rgba(0,0,0,0.20);
}

@media (max-width: 768px) {

    .index-hero-text {
        top: 45%;
        padding: 0 16px;
    }

    .index-hero-text h1 {
        font-size: 2rem; /* key fix */
        line-height: 1.2;
    }

    .index-hero-text p {
        font-size: 1.2rem;
        max-width: 90%;
    }

    /* HERO BUTTON ONLY */
    .index-page-hero .btn-orange {
        padding: 10px 20px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
}

/* GLOBAL HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url('../media/homehero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );
}

.hero-text {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #2b4506;
  text-shadow:
  0 4px 10px rgba(0,0,0,0.45),
  0 2px 4px rgba(0,0,0,0.35);
}

.hero-text h2 {
    line-height: 1.2;
    text-shadow:
    0 4px 10px rgba(0,0,0,0.55),
    0 2px 4px rgba(0, 0, 0, 0.45);
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
    text-shadow:
    0 4px 10px rgba(0,0,0,0.55),
    0 2px 4px rgba(0, 0, 0, 0.45);
}


/* Intro Section Between Hero + Feature Cards */
.index-page .index-intro-section {
    text-align: center;
    padding: 40px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.index-page .index-intro-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b4506; /* deep green to match your feature card buttons */
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Orange divider */
.index-page .index-intro-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

.index-intro-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #2b2b2b;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}


/* Feature Section */
.index-page .feature-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    padding: 60px 20px;
    overflow-x: auto; /* allows horizontal scroll on small screens */
}

/*HOME PAGE FEATURE CARDS
--------------------------*/

.index-page .feature-card {
    width: 300px;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
}

/* Top image block */
.index-page .feature-bg {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Remove cinematic overlays */
.index-page .feature-bg::after,
.index-page .feature-card::before {
    display: none;
}

/* Content section */
.index-page .feature-content {
    position: relative;
    padding: 18px;
    text-align: center;
    color: #2b4506;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Title */
.index-page .feature-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #2b4506;
    text-shadow: none;
}

/* Subtitle */
.index-page .feature-content h3.subtitle {
    font-size: 1.1rem;
    margin: 0;
    color: #444;
    text-shadow: none;
}

/* Description */
.index-page .feature-content p {
    font-size: 0.95rem;
    margin: 0;
    color: #444;
    text-shadow: none;
}

/* Divider (optional) */
.index-page .feature-divider {
    width: 40px;
    height: 3px;
    background: #ff8a2b;
    margin: 0 auto;
    border-radius: 2px;
}

/* Button stays the same */
.index-page .feature-card .btn-orange {
    margin-top: 10px;
}

/* Force the button to align at the bottom across all cards */
.index-page .feature-content .btn-orange {
    margin-top: auto;
}

/*COME BACK HERE TO REVISE*/

/* Green glossy button with reduced shine + stronger green */
.index-page .feature-card .btn-orange {
    background: linear-gradient(
        to bottom,
        #4a7a22,   /* brighter, richer green */
        #2b4506    /* deep base green */
    );
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;

    /* Stronger green, softer bevel */
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -2px 4px rgba(0,0,0,0.35),
        0 4px 12px rgba(0,0,0,0.25);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Top-left shine (reduced intensity + smaller radius) */
.index-page .feature-card .btn-orange::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: radial-gradient(
        circle at top left,
        rgba(255,255,255,0.18),   /* reduced from 0.35 */
        rgba(255,255,255,0) 40%   /* tighter fade */
    );

    pointer-events: none;
}

/* Bottom-right shine (reduced intensity + smaller radius) */
.index-page .feature-card .btn-orange::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: radial-gradient(
        circle at bottom right,
        rgba(255,255,255,0.12),   /* reduced from 0.25 */
        rgba(255,255,255,0) 50%
    );

    pointer-events: none;
}

/* Hover lift */
.index-page .feature-card .btn-orange:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -2px 4px rgba(0,0,0,0.35),
        0 8px 18px rgba(0,0,0,0.35);
}

/* Add this to your existing button styles */
.index-page .feature-card .btn-orange {
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -2px 4px rgba(0,0,0,0.35),
        0 3px 8px rgba(0,0,0,0.28); /* <-- soft outer lift */
}



/* Cater Row */
.index-page section.cater-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    padding: 80px 20px;
    flex-wrap: wrap; /* mobile-friendly */
}

.index-page section.cater-row .cater-card {
    background: #e8d8c3; /* your warm tan */
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 500px;
    flex: 1;
    min-width: 320px;
    color: #000;
    text-align: left;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.index-page .cater-card h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
}

.index-page .cater-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 10px auto 20px auto;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

.index-page .cater-card .cater-card-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* List styling */
.index-page .cater-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.index-page .cater-card li {
    margin-bottom: 18px;
    line-height: 1.5;
    font-size: 1.05rem;
}

/* Colored labels */
.index-page .label {
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 6px;
}

.index-page .label.worry { color: #cc5500; }
.index-page .label.vibes { color: #cc5500; }
.index-page .label.reliability { color: #cc5500; }
.index-page .label.speedy { color: #cc5500; }

.index-page .cater-card .cater-badge {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 10px 0;
    opacity: 0.9;
}

/* Center the button */
.index-page .cater-card .btn-orange {
    display: block;
    width: fit-content;
    margin: 25px auto 0 auto;
    margin-top: 70px;
}

/* HOME PAGE — QUOTE FORM */
.index-page .index-quote-card {
    background: #e8d8c3;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 500px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    flex: 1;
    min-width: 320px;
    margin: 0;
}

.index-page .index-quote-card h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
}

.index-page .index-quote-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 10px auto 20px auto;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

.index-page .index-quote-card .quote-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.index-page .index-quote-card p {
    color: #2b2b2b;
}

.index-page .index-quote-card form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.index-page .index-quote-card form input,
.index-page .index-quote-card form select,
.index-page .index-quote-card form textarea {
    display: block;
    width: 90%;
    align-self: center;
    box-sizing: border-box;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.85);
    color: #333;
    outline: none;
    transition: 0.2s ease;
}

.index-page .index-quote-card textarea {
    min-height: 120px;
    resize: vertical;
}

.index-page .index-quote-card button {
    margin-top: 10px;
}

/* HOME PAGE — Fix checkbox alignment */
.index-page .index-quote-card .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
}

.index-page .index-quote-card .consent input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    transform: scale(1.2);
    flex-shrink: 0;
}

.index-page .index-quote-card button {
    width: fit-content;
    align-self: center;
    padding: 12px 24px;
}

.index-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Menu Hero Section */
.menu-page-hero {
    position: relative;
    background: url('../media/menu-hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center; /* centers content horizontally */
    align-items: flex-end; /* moves text lower */
    padding-bottom: 280px; /* spacing from bottom */
    text-align: center;
}

.menu-page-hero .menu-hero-text {
    position: absolute;
    left: 50%;
    top: 40%; /* adjust as needed to move text up/down */
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers text */
    margin: 0; /* reset any default margins */
}

.menu-page-hero .menu-hero-text h1 {
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

.menu-page-hero .menu-hero-text p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin-top: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.menu-page-hero .menu-hero-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 12px auto;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

.menu-hero .btn-orange {
    margin-top: 15px;
}

/* Section Wrapper */
.menu-page .fan-favorites {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Section Title */
.menu-page .fan-favorites h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2b4506;
}

.menu-page .fan-favorites-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 12px auto 30px auto;
    border-radius: 2px;
    box-shadow:
        0 6px 12px rgba(0,0,0,0.25),
        0 0 18px rgba(0,0,0,0.20);
}

/* Section Subtitle */
.menu-page .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

/* Grid Layout */
.menu-page .favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    /*max-width: 1100px;
    margin: 0 auto;*/
}

/* Individual Card Item */
.menu-page .favorite-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    overflow: hidden; /* ensures image doesn't spill out */
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
.menu-page .favorite-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.16);
}

/* Full-width image at top */
.menu-page .favorite-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Item Title */
.menu-page .favorite-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 16px 20px 6px 20px;
    color: #222;
}

/* Item Description */
.menu-page .favorite-item p {
    font-size: 0.95rem;
    color: #444;
    margin: 0 20px 12px 20px;
    line-height: 1.4;
}

/* Item Price */
.menu-page .favorite-item .price {
    font-weight: 700;
    font-size: 1rem;
    color: #2b4506;
    margin: 0 20px 12px 20px;
    display: block;
}

/* Button spacing */
.menu-page .favorite-item .btn-orange {
    margin: 0 20px 16px 20px;
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Wrapper */
.menu-page .menu-categories {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.menu-page .menu-section-title {
    text-align: center;
    font-size: 2rem;
    margin: 60px auto 30px auto;
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Orange divider */
.menu-page .menu-section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 12px auto 0 auto;
    border-radius: 2px;
    box-shadow:
        0 6px 12px rgba(0,0,0,0.25),
        0 0 18px rgba(0,0,0,0.20);
}

.menu-page .menu-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* or 0.55 if needed */
    z-index: 0;
}
.menu-page .menu-section * {
    position: relative;
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    z-index: 1;
}

.menu-intro {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 20px auto 40px;
    color: #555;
}


/* Menu Category header button */
.menu-page .menu-category-header {
    width: 100%;
    background: #ffffff;
    padding: 14px 22px;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2b4506;
    text-align: left;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    align-items: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    margin-bottom: 12px;
}

.menu-page .menu-category-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

/* Menu Category image */
.menu-page .menu-category-header .menu-category-img {
    width: 85px;
    height: 85px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Title */
.menu-page .menu-category-title {
    margin-left: 12px;
    flex: 1;
}

/* Arrow rotation */
.menu-page .menu-category-header.active .arrow {
    transform: rotate(90deg);
}

/* Arrow styling */
.menu-page .arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    transform: rotate(0deg);
    color: #cc5500;
}

/* Hidden content container */
.menu-page .menu-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.no-specials-message {
    text-align: center;
    font-style: italic;
    color: #777;
    margin: 1em 0;
}


/* Menu item card inside accordion */
.menu-page .menu-item {
    background: #fff;
    padding: 24px 26px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    margin-bottom: 16px;
}

.menu-page .menu-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.menu-page .menu-item p {
    font-size: 0.95rem;
    color: #2b2b2b;
    margin-bottom: 10px;
}

.menu-page .menu-item .price {
    font-weight: 700;
    color: #2b4506;
    margin-bottom: 12px;
    display: block;
}

.menu-page .menu-category-content .menu-item .btn-orange {
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.menu-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-page .btn-orange {
    background-color: #d35400; /* deeper orange */
}



/* Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    pointer-events: none; /* overlay cannot intercept clicks */
}

/* When modal is open */
.modal-overlay.show {
    display: flex;
    pointer-events: auto; /* overlay becomes clickable only when open */
}

#cart-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 9998;
}

#cart-modal-overlay.is-open {
    display: block;
}

.cart-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 340px;
    display: none;
    z-index: 9999;
}

.cart-modal.is-open {
    display: block;
}

.cart-modal-close {
    font-size: 1.2rem !important; /* smaller */
    top: 10px;
    right: 10px;
    padding: 0;
    background: none;
    border: none;
    position: absolute;
    cursor: pointer;
    color: #444;
}

#cart-modal-item-img {
    width: 180px;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto 16px;
}

.cart-modal-row {
    display: flex;
    align-items: center;
    justify-content: center; /* centers both elements */
    gap: 10px; /* controls how close they sit */
    margin: 12px 0;
}

.cart-modal-row .btn-orange {
    width: auto !important;
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
    white-space: nowrap;
}

#cart-modal-qty {
    width: 55px;
}

.cart-modal h3 {
    margin-top: 10px;
    margin-bottom: 4px;
}

.cart-modal p {
    margin-bottom: 10px;
}

.cart-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.cart-modal-actions button {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.cart-modal-actions .btn-outline:hover {
    background: #2b4506; /* your green */
    color: #fff;
    border-color: #2b4506;
    transition: 0.2s ease;
}

.cart-modal-actions .btn-secondary:hover {
    background: #e6e6e6;
}

/* Make Add to Cart match the shiny Menu nav button */
#cart-modal-add-btn {
    position: relative;
    background-color: #2b4506 !important;
    color: #fff !important;
    border: none;
    width: auto !important;
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
    border-radius: 6px !important;
    line-height: 1.1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
    overflow: hidden; /* required for shine effect */
}

/* Shine effect (copied from nav) */
#cart-modal-add-btn::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 6px;
    background:
        linear-gradient(
            to bottom right,
            rgba(255, 255, 255, 0.35),
            rgba(255, 255, 255, 0) 60%
        ),
        linear-gradient(
            to top left,
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0) 70%
        );
    pointer-events: none;
    animation: shine 2s infinite;
}


#cart-modal-add-btn:hover {
    background: linear-gradient(to bottom, #ffbe78, #e07f1c);
    transform: translateY(-1px);
}

.cart-modal-actions .btn-orange.checkout-btn {
    background: #2b4506 !important; /* green */
    border-color: #2b4506 !important;
    color: #fff !important;
}

.cart-modal-actions .btn-orange.checkout-btn:hover {
    background: #1f3304 !important;
}

/* Limit modal height */
#cart-modal {
    max-height: 90vh;
    overflow: hidden;
}

/* Make the content scrollable */
/* Default (desktop/tablet) */
#cart-modal-content {
    max-height: 55dvh;
    overflow-y: auto;
    padding-right: 6px;
}

/* 📱 Mobile optimization */
@media (max-width: 600px) {
    #cart-modal-content {
        max-height: 45vh; /* tighter on small screens */
    }
}

#cart-modal-content::-webkit-scrollbar {
    width: 6px;
}

#cart-modal-content::-webkit-scrollbar-track {
    margin: 8px 0; /* 👈 THIS SHORTENS THE VISIBLE BAR */
}

#cart-modal-content::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 6px;
}

/* Shiny Checkout button */
.checkout-btn {
    position: relative;
    background-color: #2b4506 !important;
    color: #fff !important;
    border: none;
    padding: 10px 20px !important;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    width: 100%;
    display: block;
    margin-top: 12px;
}

.checkout-btn:hover {
    background-color: #1f3304 !important; /* slightly darker green */
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.35);
}

/* Shine effect copied from nav */
.checkout-btn::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 8px;
    background:
        linear-gradient(
            to bottom right,
            rgba(255, 255, 255, 0.35),
            rgba(255, 255, 255, 0) 60%
        ),
        linear-gradient(
            to top left,
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0) 70%
        );
    pointer-events: none;
    animation: shine 2s infinite;
}


/* Shiny hover for Login/Create Account */
.btn-outline.full:hover {
    position: relative;
    background-color: #2b4506 !important;
    color: #fff !important;
    border-color: #2b4506 !important;
    overflow: hidden;
}

/* Shine overlay on hover */
.btn-outline.full:hover::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 8px;
    background:
        linear-gradient(
            to bottom right,
            rgba(255, 255, 255, 0.35),
            rgba(255, 255, 255, 0) 60%
        ),
        linear-gradient(
            to top left,
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0) 70%
        );
    pointer-events: none;
    animation: shine 2s infinite;
}

/* ===== FLAVOR SELECTOR (WINGS) ===== */
.flavor-selector {
    margin-top: 1rem;
    text-align: center;
    padding-right: 6px; /* prevents scrollbar overlap */
}

.flavor-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 0.8rem;
}

.flavor-card {
    background: #fff7ef;
    border: 2px solid #ffb36b;
    border-radius: 10px;
    padding: 0.8rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.flavor-card:hover {
    background: #ffe2c7;
}

.flavor-card.selected {
    background: #ffb36b;
    color: white;
    border-color: #ff7a00;
}

.hidden {
    display: none;
}

/* Hero Section */
.specials-page .specials-hero {
    position: relative;
    background: url('../media/specials-hero2.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center; /* centers content horizontally */
    align-items: flex-end; /* moves text lower */
    padding-bottom: 280px; /* spacing from bottom */
}

.specials-page .specials-hero .specials-hero-text {
    position: absolute;
    left: 50%;
    top: 40%; /* adjust as needed to move text up/down */
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers text */
    margin: 0; /* reset any default margins */
}

.specials-page .specials-hero .specials-hero-text h1 {
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

.specials-page .specials-hero .specials-hero-text p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin-top: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.specials-page .specials-hero .specials-hero-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 12px auto;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

.specials-page .specials-hero .btn-orange {
    margin-top: 15px;
}

/* ===== SPECIALS ROW ===== */
.specials-page .specials-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 40px 20px;
    background: #d7c2a1;
    flex-wrap: wrap;
}

/* ===== CARD ===== */
.specials-page .special-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: 500px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.specials-page .special-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.special-content {
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    align-items: center;
}

.special-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.special-description {
    margin: 0;
    color: #555;
    line-height: 1.45;
}

.special-price-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
}

.special-price-row .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2b4506;
}

.special-price-row .btn-orange {
    padding: 0.5rem 1.5rem;   /* smaller button */
    font-size: 1rem;      /* smaller text */
    width: auto;            /* prevents full-width behavior */
}



/* ===== REWARDS SECTION ===== */
.specials-page .rewards-section {
    background: #fff7f0;
    padding: 60px 20px;
    text-align: center;
}

.specials-page .rewards-divider {
    width: 80px;
    height: 4px;
    background: #ff5a00;
    margin: 10px auto 20px;
}

/* ===== COUPONS ===== */
.specials-page .coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px auto;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
}

.specials-page .coupon-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.specials-page .coupon-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    background: #f3e2c8;
    color: #2b4506;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.specials-page .expires {
    font-weight: 600;
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #2b4506;
}

.specials-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .specials-page .specials-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .specials-page .coupon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .specials-page .coupon-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    header nav a, 
    .nav-btn, 
    .return-menu {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 8px;

    }

    header {
        padding: 10px 12px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-text {
        padding: 20px;
        max-width: 90%;
    }

    .hero-section {
        min-height: 60vh;
        background-size: cover;
        background-position: center;
    }
}

.specials-page .coupon-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
   

.locations-page .locations-hero {
    background: url('../media/locations-hero.png') center/cover no-repeat;
    display: flex;
    align-items: flex-end; /* moves text lower */
    justify-content: flex-start; /* keeps it left */
    padding-bottom: 80px; /* spacing from bottom */
}

.locations-page .locations-hero .hero-text {
    margin-left: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.locations-page .locations-hero .hero-text h1 {
    color: #fff;
    text-align: left;
    align-items: flex-start;
}

.locations-page .locations-hero .btn-orange {
    margin-top: 15px;
}

/* Modal Background */
.locations-page .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Box */
.locations-page .modal-content {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Close Button */
.locations-page .close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.locations-page .close-modal:hover {
    opacity: 1;
}

/* Mini Map */
.locations-page .mini-map {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 12px;
    margin: 15px 0;
}

.locations-page.follow-note {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.locations-page .modal-social {
    margin-top: 10px;
    display: flex;
    gap: 14px;
    justify-content: center;
}

.locations-page .modal-social .social-icon {
    font-size: 1.3rem;
    color: #2b4506;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.locations-page .modal-social .social-icon:hover {
    opacity: 1;
}

.locations-page .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #2b4506;
    letter-spacing: 1px;
}

/* Locations page */
.locations-page .info-row {
    background: #faf7f2;
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 50px 20px;
    border-radius: 30px;
    align-items: flex-start;
    flex-wrap: wrap; /* mobile-friendly */
}

.locations-page .hours-card {
    background: #e8d8c3; /* your warm tan */
    padding: 55px 30px 35px 30px;
    border-radius: 20px;
    max-width: 500px;
    flex: 1;
    min-width: 320px;
    color: #000;
    text-align: left;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.locations-page .hours-card h2 {
    color: #2b4506;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    white-space: nowrap;
}

/* Align days left, times right*/
.locations-page .hours-card ul li {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.locations-page .hours-card .time {
    text-align: right;
    min-width: 140px;
}

/* List styling */
.locations-page .hours-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 5px 0;
}

.locations-page .hours-card li {
    margin-bottom: 18px;
    line-height: 0.5;
    font-size: 1.05rem;
}

.locations-page .hours-card::before,
.locations-page .locations-card::before {
    content: "";
    display: block;
    height: 6px;
    width: 60px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    border-radius: 4px;
    margin-bottom: 20px;
}

/*.hours-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 10px auto 20px auto;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}*/

.locations-page .hours-note {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #555;
}

.locations-page .locations-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    flex: 1;
    min-width: 320px;
}

.locations-page .locations-subtitle {
    font-size: 1.4rem;
    color: #2b4506;
    margin-bottom: 15px;
    font-weight: 700;
}

.locations-page .locations-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.6;
    background: #faf7f2;
    border: 1px solid rgba(0,0,0.0.06);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    flex: 1;
    min-width: 320px;
    font-size: 1.1rem;
    opacity: 0.95; /* optional, softer text */
}

/* Center the button */
.locations-page .locations-card .btn-orange {
    margin-top: 25px;
    padding: 6px 14px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    align-self: flex-start;
    display: block;
    width: fit-content;
}


/* ABOUT HERO */
.about-page-hero {
    position: relative;
    background: url('../media/about-hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 280px;
    text-align: center;
}

.about-page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.7)
    );
}

.about-hero-text {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}


.about-hero-text h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.about-hero-text p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin-top: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}


.about-hero-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 12px auto;
    border-radius: 2px;
    box-shadow:
        0 6px 12px rgba(0,0,0,0.25),
        0 0 18px rgba(0,0,0,0.20);
}

/* About Intro Section */
.about-page .about-intro {
    text-align: center;
    padding: 40px 20px 15px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-page .about-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2b4506; /* deep green to match your feature card buttons */
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.about-page .aboutintro-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 0 auto 25px auto;
    border-radius: 2px;
    box-shadow:
        0 6px 12px rgba(0,0,0,0.25),
        0 0 18px rgba(0,0,0,0.20);
}

.about-page .about-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #333;
    opacity: 0.95;
}

/* About Section */
.about-page .about-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    padding: 80px 20px;
    flex-wrap: wrap;
    overflow-x: auto; /* allows horizontal scroll on small screens */
}

.about-page .about-card {
    position: relative;
    width: 340px;
    min-width: 340px;
    flex: 1;
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
    0 20px 40px rgba(0,0,0,0.35),
    0 0 40px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}
 
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-page .subscribe-card {
    background: #e8d8c3; /* your warm tan */
    padding: 28px 24px;
    border-radius: 20px;
    max-width: 380px;
    flex: 1;
    min-height: 360px;
    min-width: 320px;
    color: #000;
    text-align: left;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.about-page .subscribe-card h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
}

.about-page .subscribe-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 10px auto 20px auto;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scaleX(0.6); }
    to { opacity: 1; transform: scaleX(1); }
}

.about-page .subscribe-card .subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Subscribe Form Styling */
.about-page .subscribe-form input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.85);
    color: #333;
    outline: none;
    transition: 0.2s ease;
}

.about-page .subscribe-form input:focus {
    border-color: #cc5500;
    box-shadow: 0 0 0 3px rgba(204, 85, 0, 0.25);
}

.about-page .subscribe-form .about-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #333;
    margin-bottom: 15px;
}

.about-page .subscribe-form .about-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.about-page .subscribe-card button {
    display: block;
    margin: 20px auto 0 auto; /* centers the button */
}

.about-page .subscribe-card .btn-orange:hover {
    transform: translateY(-2);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Field labels */
.about-page .field-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b4506; /* deep green to match your brand */
    margin-bottom: 6px;
    margin-top: 10px;
}

.about-page .field-label .optional {
    font-weight: 400;
    color: #555;
    font-size: 0.85rem;
}



/* CATERING HERO */
.catering-page-hero {
    position: relative;
    background: url('../media/cateringhero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 280px;
    text-align: center;
}

.catering-page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.catering-hero-text {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.catering-hero-text h1 {
    font-size: 3rem;
    color: #fff;
}

.catering-hero-text h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-top: 10px;
}

.catering-hero-text p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin-top: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.catering-hero-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 12px auto;
    border-radius: 2px;
    box-shadow:
        0 6px 12px rgba(0,0,0,0.25),
        0 0 18px rgba(0,0,0,0.20);
}


.catering-page .menu-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.catering-page .menu-section h2 {
    text-align: center;
    color: #2b4506;
    font-size: 2rem;
}

.catering-page .catering-menu-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

/* Dropdown container */
.catering-page .menu-dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

/* Dropdown button */
.catering-page .dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 18px;
    font-size: 1.1rem;
    transition: background 0.25s ease, transform 0.15s ease;
    font-weight: 600;
    color: #000000;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Orange arrow on the right */
.catering-page .dropdown-toggle::after {
    content: "›"; /* right arrow */
    font-size: 1.4rem;
    color: #cc5500; /* Wheel Foodie orange */
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

/* Click feedback */
.catering-page .dropdown-toggle:active {
    background: rgba(204, 85, 0, 0.12);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transform: scale(0.98);
}

/* Rotate arrow when open */
.catering-page .dropdown-toggle.active::after {
    transform: translateY(-50%) rotate(90deg);
}

/* Hover effect */
.catering-page .dropdown-toggle:hover {
    background: rgba(204, 85, 0, 0.08);
}

/* Dropdown content */
.catering-page .dropdown-content {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* When active (your JS already toggles this) */
.catering-page .dropdown-toggle.active + .dropdown-content {
    max-height: 800px; /* large enough for content */
}

.catering-page .dropdown-content.two-col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 15px 20px;
}

.catering-page .menu-item {
    padding: 16px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
}

.catering-page .menu-item h4 {
    color: #2b4506;
    margin-bottom: 6px;
}

.catering-page .price {
    color: #cc5500;
    font-weight: bold;
}

/* Catering.html Gallery Section */
.catering-page .gallery-section {
    text-align: center;
    padding: 40px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.catering-page .gallery-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b4506; /* deep green to match your feature card buttons */
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.catering-page .gallery-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}



/* IMAGE EFFECTS*/
.catering-page .gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.catering-page .gallery-card {
    position: relative;
    height: 220px; /* pick ONE height */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.catering-page .gallery-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.catering-page .gallery-card:hover .gallery-bg {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.catering-page .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catering-page .gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/*CATERING TABLE*/
/* FINAL CLEAN VERSION */
.catering-table {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;

    border-collapse: collapse;
    table-layout: fixed;

    text-align: left; /* 🔥 better for readability */
}

.catering-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.catering-table th {
    background: #ff5a00;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.catering-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.catering-table tr:hover {
    background: #f7f7f7;
}

.catering-table h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #2b4506; /* deep green to match your feature card buttons */
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.catering-table th:nth-child(1),
.catering-table td:nth-child(1) {
    width: 30%;
}

.catering-table th:nth-child(2),
.catering-table td:nth-child(2) {
    width: 25%; /* Includes column gets more space */
}

.catering-table th:nth-child(3),
.catering-table td:nth-child(3) {
    width: 30%;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 70vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox.hidden {
    display: none;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 2100;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Gradient overlay for readability */
.catering-page .gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 20%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 1;
}

/* Content on top of image */
.catering-page .gallery-content {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes text up, button down */
    z-index: 2;
    color: #fff;
    text-align: center;
}

.catering-page .gallery-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
    letter-spacing: 1px;
}

.catering-page .gallery-content h3 {
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.catering-page .gallery-content p {
    font-size: 1rem;
    margin: 10px 0 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* WHAT TO EXPECT SECTION */
.catering-page .expect-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.catering-page .expect-title {
    font-size: 2rem;
    color: #2b4506;
    margin-bottom: 10px;
}

.catering-page .expect-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

.catering-page .expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.catering-page .expect-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.catering-page .expect-item h3 {
    font-size: 1.2rem;
    color: #2b4506;
    margin-bottom: 8px;
}

.catering-page .expect-item p {
    font-size: 0.95rem;
    color: #444;
    max-width: 260px;
    margin: 0 auto;
}

.catering-page .contact-section {
    text-align: center;
    padding: 40px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.catering-page .contact-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b4506; /* deep green to match your feature card buttons */
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Orange divider */
.catering-page .contact-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

.catering-page .catering-quote-card {
    margin: 0 auto;
}

.catering-page .catering-form-section,
.catering-page .catering-gallery-section,
.catering-page .catering-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Match input styling */
.catering-page .catering-quote-card form input,
.catering-page .catering-quote-card form select,
.catering-page .catering-quote-card form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.85);
    color: #333;
    outline: none;
    transition: 0.2s ease;
}

/* Fix iPhone Safari date input appearance */
.catering-page input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 12px 14px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

/* Fake placeholder for iPhone (Safari hides real placeholders) */
.catering-page input[type="date"]::before {
    content: attr(placeholder);
    color: #777;
}

.catering-page input[type="date"]:focus::before,
.catering-page input[type="date"]:valid::before {
    content: "";
}

/* Hover + focus effect */
.catering-page .catering-quote-card form select:focus,
.catering-page .catering-quote-card form textarea:focus {
    border-color: #cc5500;
    box-shadow: 0 0 0 3px rgba(204, 85, 0, 0.25);
}

/* Dropdown arrow styling (clean + modern) */
.catering-page .catering-quote-card form select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

/* Textarea height */
.catering-page .catering-quote-card form textarea {
    min-height: 120px;
    resize: vertical;
}


.catering-page .catering-quote-card {
    background: #e8d8c3;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 500px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.catering-page .catering-quote-card h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
}

.catering-page .catering-quote-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a2b, #ff5a00);
    margin: 10px auto 20px auto;
    border-radius: 2px;
    box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    0 0 18px rgba(0,0,0,0.20);
}

.catering-page .catering-quote-card .catering-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.catering-page .catering-quote-card form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Consent checkbox styling */
.catering-page .catering-quote-card .catering-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    margin-top: 15px;
}

.catering-page .catering-quote-card .catering-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.catering-page .catering-quote-card button {
    width: fit-content;
    align-self: center;
    padding: 12px 24px;
}

.catering-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Footer container */
.site-footer {
    background-color: #CC5500;
    color: #f5e9d6;
    padding: 2rem 1rem;
    margin-top: 3rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.site-footer a {
    color: #fff7e6;
}

.site-footer a:hover {
    color: white;
}

/* Center and contrain content */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Footer text styling */
.site-footer p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.footer-map-btn {
    display: inline-block;
    margin-top: 0.5rem 0 1.25rem 0;
    padding: 8px 14px;
    background: rgba(255,255,255,0.15);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s ease;
}

.footer-map-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* Social Media Icons and Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    transition: 0.2s ease-in-out;
}

.footer-social .icon {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.25);
    transition: fill 0.2s ease, transform 0.25s ease;
}

.footer-social .social-icon:hover .icon {
    fill: rgba(255,255,255,0.55); /* soft sand highlight */
    transform: scale(1.15);
}

@media (max-width: 768px) {

    .main-nav {
        position: absolute;
        top: 70px;
        right: 10px;
        width: 200px;
        z-index: 999;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.75);
        padding: 20px;
        gap: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    /* When JS toggles .open, show the menu */
    .main-nav ul.open {
        display: flex;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        background: none;
        border: none;
    }

    /* Keep header spacing clean */
    .header-inner {
        justify-content: space-between;
    }

    header {
        padding: 8px 16px;
    }

    header .logo {
        max-width: 120px;
    }

    nav a {
        font-size: 0.9rem;
    }

   

    /* Reduce spacing in the utility nav */
    .utility-nav {
        gap: 10px;
    }


    .hero img,
    .hero-backgrouond {
        width: 100%;
        height: auto;
        object-fit: cover;
    }


    /* Reduce top spacing above the first card */
    .locations-page .hours-card {
        margin-top: 0;
    }

    /* Reduce padding on the container */
    .locations-page .hours-section,
    .locations-page .location-section {
        padding-top: 10px;
    }

     /* Adjust font size and spacing for better fit */
    .locations-page .hours-card h2 {
        font-size: 1.4rem; /* adjust until it fits */
        line-height: 1.3;
        text-align: center;
        white-space: normal;
    }

     /* menu page hero only */
    .menu-page .hero {
        padding-bottom: 40px;
        position: relative;
        height: 300px;
        overflow: hidden;
    }

    .menu-page .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .menu-page .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

    .menu-page .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .menu-page .hero-text h2 {
        font-size: 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 800px) {

    /* Stack feature cards */
    .index-page .feature-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .index-page .feature-card {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Menu hero text scaling for mobile */
    .menu-page-hero .menu-hero-text h1 {
        font-size: 2.5rem;       /* smaller headline */
        line-height: 1.2;
    }

    .menu-page-hero .menu-hero-text p {
        font-size: 1.3rem;       /* smaller subtext */
        max-width: 90%;
        margin: 10px auto 0;
    }

    /* Adjust hero text vertical position for mobile */
    .menu-page-hero .menu-hero-text {
        top: 45%;              /* slightly lower for better balance */
        transform: translate(-50%, -50%);
    }

    /* MENU PAGE — mobile button size */
    .menu-page-hero .btn-orange {
        font-size: 1rem;     /* slightly larger but still mobile-friendly */
        padding: 10px 20px;      /* balanced size */
        border-radius: 6px;
        margin-top: 18px;       /* spacing under paragraph */
    }


    /* ABOUT PAGE — mobile hero adjustments */
    .about-hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        text-shadow: 0 3px 10px rgba(0,0,0,0.85);
    }

    .about-hero-text p {
        font-size: 1.2rem;
        max-width: 90%;
        margin-top: 10px;
        text-shadow: 0 3px 10px rgba(0,0,0,0.85);
    }

    /* Adjust vertical placement for mobile */
    .about-hero-text {
        top: 45%;
        transform: translate(-50%, -50%);
    }

    /* Reduce hero height so text isn't pushed too low */
    .about-page-hero {
        height: 75vh;
        padding-bottom: 180px;
    }


    .catering-page-hero {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    /* Catering hero text + button scaling for mobile */
    .catering-page-hero h1 {
        font-size: 2rem;        /* smaller headline */
        line-height: 1.2;
    }

    .catering-page-hero p {
        font-size: 1.2rem;        /* smaller subtext */
        max-width: 90%;
        margin: 0 auto;
    }

    
    /* Catering hero button — correct selector */
    .catering-page-hero .btn-orange {
        font-size: 0.85rem;
        padding: 8px 16px;
        border-radius: 6px;
        margin-top: 18px;
    }


    .catering-page .gallery-card {
        width: 90%;
        height: 160px;
    }
}

.account-area {
    position: relative;
}

.account-dropdown {
    position: absolute;
    right: 0;
    top: 45px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 12px;
    width: 180px;
}

.account-dropdown a,
.account-dropdown button {
    display: block;
    padding: 8px 0;
    text-align: left;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
}

.payment-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 380px;
}

.hidden {
    display: none !important;
}

/* ================================
   FORM SUCCESS MESSAGES
================================ */
.form-success {
  background: #e8f7ec; /* soft green */
  color: #2e7d32; /* deeper green for contrast */
  padding: 14px 18px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
