/*
Theme Name: NOLA Holi
Theme URI: https://nolaholi.org
Author: NOLA Holi Team
Author URI: https://nolaholi.org
Description: A vibrant WordPress theme for the NOLA Holi Festival celebrating the Indian festival of colors in New Orleans with Mardi Gras flair
Version: 1.4.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nolaholi
Tags: festival, events, custom-colors, custom-menu, featured-images, full-width-template, responsive-layout

This theme, like WordPress, is licensed under the GPL.
Last Updated: 2025-01-14 - Compact mobile header with centered nav button
*/

/* ===========================
   CSS Variables - Mardi Gras Colors
   =========================== */
   :root {
    --mardi-gras-purple: #5E2B7A;
    --mardi-gras-green: #00843D;
    --mardi-gras-gold: #FFC107;
    --light-purple: #8B5BA8;
    --light-green: #4CAF50;
    --dark-purple: #3D1A4F;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-festival: linear-gradient(135deg, var(--mardi-gras-purple) 0%, var(--mardi-gras-green) 50%, var(--mardi-gras-gold) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--mardi-gras-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--mardi-gras-green);
}

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

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

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--dark-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--mardi-gras-green);
    color: var(--white);
}

.btn-secondary:hover {
    background: #006930;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-gold:hover {
    background: #FFB300;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--mardi-gras-purple);
    border: 2px solid var(--mardi-gras-purple);
}

.btn-outline:hover {
    background: var(--mardi-gras-purple);
    color: var(--white);
}

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--gradient-festival);
    padding: 10px 0;
    text-align: center;
}

.header-top p {
    color: var(--white);
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.header-main {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-festival);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.site-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Header Presenter (Presented by) */
.header-presenter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-left: 30px;
    text-align: center;
    height: 100%;
    padding: 10px 0;
}

.presented-by-text {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
    margin-bottom: 2px;
}

.presenter-mark {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.presenter-mark-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.presenter-mark-link:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

.presenter-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mardi-gras-purple);
    max-width: 150px;
    line-height: 1.2;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0; /* base padding; overridden for top-level on desktop below */
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-festival);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.current::after,
.nav-menu a:focus::after {
    width: 100%;
}

/* Keyboard focus styles for accessibility */
.nav-menu a:focus {
    outline: 2px solid var(--mardi-gras-gold);
    outline-offset: 4px;
}

.nav-menu a:focus:not(:focus-visible) {
    outline: none;
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--mardi-gras-gold);
    outline-offset: 4px;
    background: rgba(255, 193, 7, 0.1);
}

.menu-toggle {
    display: none;
    background: var(--mardi-gras-purple);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
}

/* Home icon */
.menu-item-home .home-icon {
    font-size: 1.8rem;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: grayscale(0);
}

.menu-item-home a {
    color: var(--mardi-gras-purple);
    font-size: 1.8rem;
}

.menu-item-home:hover .home-icon {
    transform: scale(1.15);
}

/* Dropdown menus */
.menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.submenu-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Sub-menu styling - works for both custom and WordPress menus */
.sub-menu,
.menu-item-has-children .sub-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    border-radius: 8px;
    margin-top: 5px;
    z-index: 1000;
}

/* Add invisible hover bridge to prevent gap issues on desktop */
@media (min-width: 769px) {
    .sub-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
    }
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children > a:hover + .sub-menu,
.sub-menu:hover {
    display: block !important;
}

.menu-item-has-children:hover .submenu-icon {
    transform: rotate(180deg);
}

.sub-menu li {
    padding: 0;
    list-style: none;
    margin: 0;
}

.sub-menu li::before {
    content: none !important;
}

.sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.sub-menu a::after {
    display: none !important;
}

.sub-menu a:hover {
    background: var(--off-white);
    color: var(--mardi-gras-purple);
}

/* Focus styles for submenu items */
.sub-menu a:focus {
    outline: 2px solid var(--mardi-gras-gold);
    outline-offset: -2px;
    background: var(--off-white);
    color: var(--mardi-gras-purple);
}

/* Smooth transitions for dropdowns */
.sub-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition-delay: 0s;
    pointer-events: none;
}

/* Keep submenu open when hovering parent OR submenu */
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children.hover-open > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
    transition-delay: 0s;
}

/* Add a small delay before closing to prevent accidental close */
.sub-menu {
    transition-delay: 0s, 0s, 0.15s; /* delay hiding pointer-events */
}

/* Close submenu after leaving hover zone */
.menu-item-has-children:not(:hover) > .sub-menu {
    transition-delay: 0.2s;
}

/* === Desktop menu alignment normalization (top-level anchors) === */
@media (min-width: 769px) {
  /* Keep the main list aligned center and remove stray margins */
  .main-navigation #primary-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .main-navigation #primary-menu > li { margin: 0; }

  /* Make EVERY top-level link share the same line box */
  .main-navigation #primary-menu > li > a {
    display: inline-flex;     /* stable inline box */
    align-items: center;      /* vertical centering */
    height: 48px;             /* menu bar height */
    line-height: 1;           /* avoid baseline differences */
    padding: 0 18px;          /* horizontal padding */
    vertical-align: middle;
  }

  /* Parents with submenus: reserve space for caret without shifting text */
  .main-navigation #primary-menu > li.menu-item-has-children > a {
    position: relative;
    padding-right: 34px;      /* space for caret */
  }

  /* Draw caret without impacting line height/baseline */
  .main-navigation #primary-menu > li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor; /* ▼ */
    opacity: .7;
    display: block;
    line-height: 0;
  }

  /* Touch device support: show submenu when touch-hover class is active */
  .main-navigation #primary-menu > li.menu-item-has-children.touch-hover > .sub-menu {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
  }

  /* Rotate caret when touch-hover is active (same as hover) */
  .main-navigation #primary-menu > li.menu-item-has-children.touch-hover .submenu-icon {
    transform: rotate(180deg);
  }

  /* Skip link for screen readers */
  .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--mardi-gras-gold);
    color: var(--text-dark);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
  }

  .skip-link:focus {
    top: 0;
  }
}

/* Optional: make non-clickable parents feel intentional */
.main-navigation #primary-menu > li.menu-item-type-custom > a[href="#"] {
    cursor: default;
    /* pointer-events: none;  /* uncomment if you want to fully disable click */
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-festival);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--off-white);
    animation: fadeInUp 1.2s ease;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Event Info Bar
   =========================== */
.event-info-bar {
    background: var(--mardi-gras-gold);
    padding: 30px 20px;
    text-align: center;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-purple);
}

/* ===========================
   Content Sections
   =========================== */
.content-section {
    padding: 80px 20px;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--mardi-gras-purple);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-festival);
    margin: 20px auto;
    border-radius: 2px;
}

/* Alternating Background Colors */
.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--off-white);
}

.bg-purple {
    background: var(--mardi-gras-purple);
    color: var(--white);
}

.bg-purple .section-title {
    color: var(--white);
}

.bg-purple p {
    color: var(--off-white);
}

/* ===========================
   Feature Cards
   =========================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--mardi-gras-purple);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   Sponsor Tiers
   =========================== */
.sponsor-tiers {
    padding: 60px 20px;
}

.tier-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.sponsor-tier {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid;
}

.tier-event {
    border-top-color: var(--mardi-gras-purple);
}

.tier-diamond {
    border-top-color: #B9F2FF;
}

.tier-platinum {
    border-top-color: #E5E4E2;
}

.tier-gold {
    border-top-color: var(--mardi-gras-gold);
}

.tier-silver {
    border-top-color: #C0C0C0;
}

.tier-friends {
    border-top-color: var(--mardi-gras-green);
}

.tier-header {
    text-align: center;
    margin-bottom: 30px;
}

.tier-name {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tier-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mardi-gras-green);
}

.tier-benefits {
    list-style: none;
    margin-top: 20px;
}

.tier-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.tier-benefits li:before {
    content: '✓ ';
    color: var(--mardi-gras-green);
    font-weight: bold;
    margin-right: 10px;
}

.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sponsor-logo-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

/* ===========================
   Gallery
   =========================== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ===========================
   Team/Board
   =========================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--mardi-gras-gold);
    box-shadow: var(--shadow-md);
}

.member-name {
    font-size: 1.3rem;
    color: var(--mardi-gras-purple);
    margin-bottom: 5px;
}

.member-role {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.member-bio {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===========================
   Vendor Section
   =========================== */
.vendor-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.vendor-type-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.vendor-type-title {
    font-size: 1.8rem;
    color: var(--mardi-gras-purple);
    margin-bottom: 20px;
}

.vendor-policy {
    background: var(--off-white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.vendor-policy h3 {
    color: var(--mardi-gras-green);
    margin-bottom: 20px;
}

.vendor-policy ul {
    list-style-position: inside;
    color: var(--text-light);
}

.vendor-policy li {
    padding: 8px 0;
}

/* ===========================
   Contact Form
   =========================== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--mardi-gras-purple);
}

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

.contact-info {
    background: var(--off-white);
    padding: 40px;
    border-radius: 15px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    color: var(--mardi-gras-purple);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item p {
    color: var(--text-dark);
    margin: 0;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--mardi-gras-gold);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--off-white);
}

.footer-section a:hover {
    color: var(--mardi-gras-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--mardi-gras-purple);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: var(--mardi-gras-gold);
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--off-white);
    margin: 0;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Reduce header padding on mobile */
    .header-main {
        padding: 12px 0;
    }

    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }
    
    .menu-item-has-children {
        display: block;
    }
    
    /* Mobile dropdown styles */
    .sub-menu,
    .menu-item-has-children .sub-menu {
        position: static !important;
        display: none !important;
        box-shadow: none;
        background: var(--off-white);
        margin: 0;
        border-radius: 0;
    }
    
    .menu-item-has-children.active > .sub-menu {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto;
    }
    
    .sub-menu a {
        padding: 12px 20px 12px 40px;
        font-size: 0.95rem;
    }

    /* Focus styles for mobile menu */
    .nav-menu.active a:focus {
        background: rgba(94, 43, 122, 0.1);
    }

    .menu-toggle:focus {
        outline: 2px solid var(--mardi-gras-gold);
        outline-offset: 2px;
    }
    
    .menu-item-has-children > a {
        justify-content: space-between;
    }
    
    .nav-menu .sub-menu li {
        list-style: none;
        border-bottom: none;
    }
    
    .header-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;  /* Left logo | Nav button | Right logo */
        grid-template-rows: auto;  /* Single row */
        gap: 8px;
        align-items: center;
    }

    /* Mobile site branding - left side */
    .site-branding {
        grid-column: 1;
        grid-row: 1;
        gap: 6px;
        min-width: 0;
        overflow: hidden;
        justify-self: center;
        text-align: center;
    }

    .site-logo img {
        height: 50px;
        margin: 0 auto;
    }

    .site-title {
        font-size: 1.1rem;
        line-height: 1.1;
    }

    .site-description {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    /* Mobile navigation - center with purple rectangle */
    .main-navigation {
        grid-column: 2;
        grid-row: 1;
        width: auto;
    }

    .menu-toggle {
        width: auto;
        min-width: 50px;
        padding: 10px 12px;
        font-size: 1.3rem;
        background: var(--mardi-gras-purple);
        color: var(--white);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(94, 43, 122, 0.3);
        transition: all 0.3s ease;
    }

    .menu-toggle:active {
        transform: scale(0.95);
        box-shadow: 0 1px 4px rgba(94, 43, 122, 0.3);
    }

    /* Mobile header presenter - right side */
    .header-presenter {
        grid-column: 3;
        grid-row: 1;
        margin-left: 0;
        padding: 0;
        height: auto;
        gap: 2px;
        justify-self: center;
    }

    .presented-by-text {
        font-size: 0.42rem;
        letter-spacing: 0.3px;
    }

    .presenter-mark {
        max-height: 35px;
        max-width: 80px;
    }

    .presenter-name {
        font-size: 0.65rem;
        max-width: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .vendor-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-center { text-align: center; }
.text-purple { color: var(--mardi-gras-purple); }
.text-green  { color: var(--mardi-gras-green); }
.text-gold   { color: var(--mardi-gras-gold); }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

@media (max-width: 768px) {
    .main-navigation #primary-menu > li.menu-item-has-children > a {
      position: relative;
      padding-right: 40px; /* room for caret */
    }
    .main-navigation #primary-menu > li.menu-item-has-children > a::after {
      content: "";
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      width: 0; height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 7px solid currentColor; /* ▼ */
      transition: transform .2s ease;
      opacity: .8;
    }
    .main-navigation #primary-menu > li.menu-item-has-children.active > a::after {
      transform: translateY(-50%) rotate(180deg);
    }
  }
