/* Shared site styles for kellenskitchenwv.com static mirror */

/* Source: index.html */
:root {
            --red-dark: #8B008B;
            --red-medium: #9932CC;
            --red-bright: #BA55D3;
            --yellow-dark: #B8860B;
            --yellow-medium: #DAA520;
            --yellow-bright: #FFD700;
            --cream: #FFF8E7;
            --warm-white: #FFFEF9;
            --charcoal: #2C2C2C;
            --gray-medium: #666666;
            --gray-light: #E8E8E8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Pro', serif;
            color: var(--charcoal);
            background: var(--warm-white);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--red-dark);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 1000;
            animation: slideDown 0.6s ease;
        }
        
        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        
        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            letter-spacing: 2px;
            color: var(--yellow-bright);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--cream);
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--yellow-bright);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--yellow-bright);
        }
        
        .phone-button {
            background: var(--yellow-dark);
            color: var(--charcoal);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
        }
        
        .phone-button:hover {
            background: var(--yellow-bright);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
        }
        
        /* Hero Section */
        .hero {
            margin-top: 0;
            min-height: 90vh;
            background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-medium) 50%, var(--red-bright) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-text {
            animation: fadeInLeft 1s ease;
        }
        
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-text h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            color: var(--yellow-bright);
            line-height: 0.9;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            letter-spacing: 3px;
        }
        
        .hero-text .tagline {
            font-size: 2rem;
            color: var(--cream);
            margin-bottom: 1.5rem;
            font-style: italic;
            font-weight: 400;
        }
        
        .hero-text .subtitle {
            font-size: 1.3rem;
            color: var(--cream);
            margin-bottom: 2rem;
            line-height: 1.8;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn-primary, .btn-secondary {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            display: inline-block;
        }
        
        .btn-primary {
            background: var(--yellow-bright);
            color: var(--red-dark);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
        }
        
        .btn-primary:hover {
            background: var(--yellow-medium);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--yellow-bright);
            border: 2px solid var(--yellow-bright);
        }
        
        .btn-secondary:hover {
            background: var(--yellow-bright);
            color: var(--red-dark);
        }
        
        .hero-image-placeholder {
            border-radius: 20px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            animation: fadeInRight 1s ease 0.3s both;
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Heritage Banner */
        .heritage-banner {
            background: var(--yellow-bright);
            color: var(--charcoal);
            text-align: center;
            padding: 1.5rem 2rem;
            font-family: 'Raleway', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .heritage-banner strong {
            color: var(--red-dark);
            font-weight: 700;
        }
        
        /* About Section */
        .about {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeIn 1s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .section-header h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: var(--red-dark);
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }
        
        .section-header .underline {
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--yellow-bright), var(--yellow-dark));
            margin: 0 auto 1.5rem;
            border-radius: 2px;
        }
        
        .section-header p {
            font-size: 1.3rem;
            color: var(--gray-medium);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
            align-items: center;
        }
        
        .about-content h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--red-medium);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        
        .about-content p {
            font-size: 1.15rem;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
        }
        
        .about-image-placeholder {
            border-radius: 15px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        /* Services Grid */
        .services {
            background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
            padding: 6rem 2rem;
        }
        
        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(139, 26, 26, 0.15);
            border-color: var(--yellow-dark);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--red-medium), var(--red-bright));
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--yellow-bright);
            box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3);
        }
        
        .service-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--red-dark);
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }
        
        .service-card p {
            color: var(--gray-medium);
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Menu Showcase */
        .menu-showcase {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 2rem;
        }
        
        .menu-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .menu-tab {
            background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
            border: 3px solid var(--red-medium);
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--charcoal);
            box-shadow: 0 4px 15px rgba(139, 0, 139, 0.2);
        }
        
        .menu-tab:hover {
            border-color: var(--red-dark);
            color: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 0, 139, 0.3);
        }
        
        .menu-tab.active {
            background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-medium) 100%);
            color: #FFFFFF;
            border-color: var(--red-dark);
            box-shadow: 0 6px 20px rgba(139, 0, 139, 0.4);
        }
        
        .menu-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        
        .menu-list h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--red-medium);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--yellow-dark);
            letter-spacing: 1px;
        }
        
        .menu-item {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .menu-item::before {
            content: '\25C6';
            position: absolute;
            left: 0;
            color: var(--yellow-dark);
            font-size: 1.2rem;
        }
        
        .menu-item strong {
            color: var(--charcoal);
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .menu-item em {
            color: var(--gray-medium);
            font-style: italic;
            display: block;
            margin-top: 0.3rem;
            font-size: 1rem;
        }
        
        .menu-photo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .menu-photo-placeholder {
            border-radius: 12px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .menu-photo-placeholder.large {
            grid-column: 1 / -1;
            height: 280px;
        }
        
        
        /* Gallery */
        .gallery {
            max-width: 1600px;
            margin: 6rem auto;
            padding: 0 2rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .gallery-item {
            border-radius: 12px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .gallery-item:nth-child(1),
        .gallery-item:nth-child(6) {
            grid-column: span 2;
            grid-row: span 2;
            height: auto;
        }
        
        /* Testimonials */
        .testimonials {
            background: var(--cream);
            padding: 6rem 2rem;
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: var(--yellow-dark);
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            color: var(--red-dark);
            font-size: 1rem;
        }
        
        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-bright) 100%);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-cta::before,
        .contact-cta::after {
            content: '';
            position: absolute;
            border-radius: 50%;
        }
        
        .contact-cta::before {
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        }
        
        .contact-cta::after {
            bottom: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
        }
        
        .contact-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-content h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--yellow-bright);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }
        
        .contact-content p {
            font-size: 1.5rem;
            color: var(--cream);
            margin-bottom: 2.5rem;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }
        
        .contact-item {
            color: var(--cream);
            font-size: 1.3rem;
        }
        
        .contact-item strong {
            display: block;
            color: var(--yellow-bright);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
        }
        
        /* Footer */
        footer {
            background: var(--charcoal);
            color: var(--gray-light);
            padding: 3rem 2rem 1.5rem;
        }

        footer p {
            color: var(--gray-light);
        }

        footer a {
            color: var(--yellow-bright);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--yellow-dark);
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-about h3 {
            font-family: 'Bebas Neue', sans-serif;
            color: var(--yellow-bright);
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        
        .footer-about p {
            line-height: 1.7;
            color: var(--gray-light);
        }
        
        .footer-links h4 {
            font-family: 'Raleway', sans-serif;
            color: var(--yellow-bright);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links a {
            color: var(--gray-light);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--yellow-bright);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            text-align: center;
            color: var(--gray-medium);
            font-size: 0.9rem;
        }

        .footer-credit {
            margin-bottom: 0.65rem;
            color: var(--gray-light);
        }

        .footer-credit a {
            color: var(--yellow-bright);
            text-decoration: none;
        }

        .footer-credit a:hover {
            text-decoration: underline;
        }
        
        
        /* Form Styles */
        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--yellow-dark) !important;
            box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
        }
        
        input:hover,
        select:hover,
        textarea:hover {
            border-color: var(--yellow-medium);
        }
        
        form button[type="submit"]:hover {
            background: var(--red-bright);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(139, 26, 26, 0.4);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content, .about-grid, .menu-content, .mac-attack-content {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--yellow-bright);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-nav {
            display: none;
            background: var(--red-dark);
            padding: 0.5rem 2rem 1rem;
            position: fixed;
            top: 68px;
            width: 100%;
            z-index: 999;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .mobile-nav.open {
            display: block;
        }

        .mobile-nav a {
            display: block;
            color: var(--cream);
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.85rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: color 0.3s;
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }

        .mobile-nav a:hover {
            color: var(--yellow-bright);
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.92);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .lightbox.open {
            display: flex;
        }

        .lightbox img {
            max-width: 90vw;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            cursor: default;
        }

        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            color: white;
            font-size: 2.5rem;
            line-height: 1;
            cursor: pointer;
            background: none;
            border: none;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .lightbox-close:hover {
            opacity: 1;
        }

.gallery-item {
  cursor: pointer;
}

.media-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-cover--rounded {
  border-radius: 15px;
}

.media-cover--soft {
  border-radius: 12px;
}

.about-grid-spaced {
  margin-top: 3rem;
}

.service-card-link {
  color: inherit;
  text-decoration: none;
}

.contact-link-reset {
  color: inherit;
  text-decoration: none;
}

.footer-link-light {
  color: var(--yellow-bright);
  text-decoration: none;
}

.menu-section-nav {
  background: var(--cream);
  margin: 2rem 0;
  padding: 3rem 2rem;
}

.menu-section-nav__intro {
  margin-bottom: 2rem;
  text-align: center;
}

.menu-section-nav__title {
  color: var(--red-dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.menu-section-nav__subtitle {
  color: var(--gray-medium);
  font-size: 1.1rem;
}

.menu-section-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

.menu-section-nav__button {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border: 3px solid var(--red-medium);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(139, 0, 139, 0.2);
  color: var(--charcoal);
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1.2rem 2.5rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.menu-section-nav__button:hover,
.menu-section-nav__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(139, 0, 139, 0.24);
}

.cta-copy {
  color: var(--charcoal);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-actions {
  margin: 3rem 0;
  text-align: center;
}

.footer-meta {
  color: var(--gray-medium);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.menu-lead-link {
  color: var(--red-medium);
  font-weight: 700;
  text-decoration: none;
}

.menu-lead-note {
  color: var(--gray-medium);
  font-style: italic;
  margin-top: 2rem;
}

.content-lead-heading {
  margin-top: 2rem;
}

.content-copy-lg {
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-copy-lg + .content-copy-lg {
  margin-top: 1rem;
}

.content-list-lg {
  font-size: 1.05rem;
  line-height: 2;
  margin-left: 2rem;
}

.content-copy-callout {
  margin-top: 1rem;
}

.contact-buttons-spaced {
  margin: 2rem 0;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
}

.btn-gap-right {
  margin-right: 1rem;
}

.contact-form-section {
  background: var(--warm-white);
  padding: 6rem 2rem;
  scroll-margin-top: calc(var(--mobile-nav-offset, 92px) + 1rem);
}

#contact-form-section {
  scroll-margin-top: calc(var(--mobile-nav-offset, 92px) + 1rem);
}

.contact-form-shell {
  margin: 0 auto;
  max-width: 800px;
}

.contact-form {
  margin-top: 3rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

.form-label {
  color: var(--charcoal);
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  background: #fff;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  padding: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.form-control:focus {
  border-color: var(--red-medium);
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.12);
  outline: none;
}

.form-textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-submit-wrap {
  margin-top: 1rem;
}

.form-submit {
  background: var(--red-dark);
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(139, 26, 26, 0.3);
  color: var(--yellow-bright);
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1.2rem 3rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(139, 26, 26, 0.35);
  outline: none;
}

.form-note {
  color: var(--gray-medium);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 1rem;
  text-align: center;
}

.visually-hidden-field {
  display: none;
}

.footer-contact-block {
  margin-top: 1rem;
}

@media (min-width: 821px) {
  .interior-page .content,
  .interior-page .menu-container,
  .interior-page .feature-photo {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding-left: 2.35rem;
    padding-right: 2rem;
  }

  .menu-page .feature-photo {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

            .nav-links {
                display: none;
            }
            
            .hero-text h1 {
                font-size: 3rem;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .menu-tabs {
                flex-direction: column;
            }
            
            .menu-photo-grid {
                grid-template-columns: 1fr;
            }
            
            .mac-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr !important;
            }
        }

/* Final nav-logo overrides */
.nav-content {
  gap: 1rem;
}

.logo.logo--image {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.logo.logo--image img {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(46vw, 320px);
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

@media (max-width: 768px) {
  .logo.logo--image img {
    height: 48px;
    max-width: 58vw;
  }
}

.hero-brand {
  width: min(100%, 540px);
  margin-bottom: 1.5rem;
}

.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}

/* Homepage cleanup and visual cohesion overrides */
nav {
  background: rgba(86, 11, 103, 0.92);
  backdrop-filter: blur(10px);
}

.nav-content {
  gap: 1.25rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.nav-links {
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0c74b 0%, #d6a321 100%);
  color: #4f0f58;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  color: #4f0f58;
  background: linear-gradient(135deg, #f7dc7b 0%, #e1b33a 100%);
  transform: translateY(-1px);
}

.phone-button {
  background: rgba(255, 248, 231, 0.14);
  color: #fff8e7;
  border: 1px solid rgba(255, 248, 231, 0.34);
  box-shadow: none;
}

.phone-button:hover {
  background: rgba(255, 248, 231, 0.22);
  color: #ffffff;
  box-shadow: none;
}

.logo.logo--image img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.24));
}

.rebrand-banner {
  margin-top: 112px;
  padding: 0.95rem 2rem;
  background: linear-gradient(90deg, #4f0f58 0%, #7d2694 100%);
  border-top: 1px solid rgba(255, 248, 231, 0.14);
  border-bottom: 1px solid rgba(255, 248, 231, 0.14);
  text-align: center;
}

.rebrand-banner p {
  margin: 0;
  color: #fff8e7;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.rebrand-banner strong {
  color: #f0c74b;
}

.hero {
  min-height: calc(100vh - 132px);
}

.hero-content {
  gap: 3rem;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.hero-text {
  max-width: 620px;
}

.hero-brand {
  width: min(100%, 500px);
  margin-bottom: 1.25rem;
}

.hero-text .subtitle {
  margin-bottom: 1.5rem;
}

.hero-image-placeholder {
  min-height: 500px;
  background: rgba(255, 255, 255, 0.08);
}

.services {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  position: relative;
  height: 100%;
  padding: 2.25rem 1.75rem 1.85rem;
  border: 1px solid rgba(125, 38, 148, 0.12);
  box-shadow: 0 14px 30px rgba(62, 23, 73, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #f0c74b 0%, #d6a321 100%);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(62, 23, 73, 0.14);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff2bc 0%, #efc042 100%);
  color: #5a1466;
  box-shadow: 0 10px 20px rgba(214, 163, 33, 0.2);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

@media (max-width: 1080px) {
  .nav-links a {
    padding: 0.55rem 0.8rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 768px) {
  .rebrand-banner {
    margin-top: 104px;
    padding: 0.9rem 1.1rem;
  }

  .rebrand-banner p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-content {
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-brand {
    width: min(100%, 360px);
  }

  .service-card {
    padding: 1.9rem 1.4rem 1.5rem;
  }
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(240, 199, 75, 0.16) 0%, transparent 34%),
    linear-gradient(135deg, #4f0f58 0%, #7d2694 55%, #5e1b6c 100%);
}

.thank-you-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.thank-you-card {
  width: min(100%, 760px);
  padding: 3rem 3rem 2.6rem;
  border-radius: 30px;
  background: rgba(255, 248, 231, 0.96);
  color: #2c2c2c;
  text-align: center;
  box-shadow: 0 24px 60px rgba(26, 7, 32, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.thank-you-logo {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto 1rem;
}

.thank-you-kicker {
  margin: 0 0 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7d2694;
  font-weight: 700;
}

.thank-you-card h1 {
  margin: 0 0 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: #560b67;
}

.thank-you-card p {
  margin: 0 auto 0.9rem;
  max-width: 38rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.thank-you-page .btn-primary,
.thank-you-page .btn-secondary {
  margin: 0;
}

@media (max-width: 768px) {
  .thank-you-card {
    padding: 2.4rem 1.4rem 2rem;
    border-radius: 24px;
  }

  .thank-you-card p {
    font-size: 1.02rem;
  }
}

/* Final mobile header and overflow fixes */
html,
body {
  max-width: 100%;
}

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

@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  .about,
  .services,
  .menu-showcase,
  .gallery,
  .testimonials,
  .contact-cta,
  footer {
    overflow-x: clip;
  }

  nav {
    overflow: visible;
  }

  .nav-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
  }

  .logo.logo--image img {
    height: 42px;
    max-width: min(54vw, 220px);
  }

  .nav-links,
  .phone-button {
    display: none !important;
  }

  .hamburger {
    display: inline-flex !important;
    justify-self: end;
    align-self: center;
    gap: 4px;
    padding: 0.35rem;
    z-index: 1002;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
  }

  .mobile-nav {
    top: var(--mobile-nav-offset, 72px);
    left: 0;
    right: 0;
    width: auto;
    padding: 0.4rem 1rem 1rem;
    background: rgba(79, 15, 88, 0.98);
    border-top: 1px solid rgba(255, 248, 231, 0.16);
    box-shadow: 0 14px 24px rgba(26, 7, 32, 0.22);
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav a {
    margin: 0.5rem 0 0;
    padding: 0.95rem 1rem;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 248, 231, 0.08);
    color: #fff8e7;
    font-size: 0.94rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
  }

  .mobile-nav a:hover {
    background: rgba(240, 199, 75, 0.2);
    color: #fff8e7;
  }

  .rebrand-banner {
    margin-top: 80px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about,
  .menu-showcase,
  .gallery {
    margin: 4rem auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .services,
  .testimonials,
  .contact-cta,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  footer {
    background: var(--charcoal);
    color: var(--gray-light);
  }

  footer p {
    color: var(--gray-light);
  }

  footer a {
    color: var(--yellow-bright);
  }

  .footer-meta {
    color: var(--gray-medium);
  }

  .hero,
  .hero-small {
    margin-top: 80px;
  }

  .hero-content,
  .feature-photo,
  .content,
  .menu-container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content {
    gap: 1.75rem;
  }

  .hero-brand {
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .hero-image-placeholder,
  .feature-photo img,
  .about-image-placeholder img {
    width: 100%;
  }

  .about-grid,
  .menu-content,
  .gallery-grid,
  .contact-content {
    gap: 1.5rem;
  }

  .section-header,
  .about-content,
  .cta-section,
  .highlight-box,
  .menu-item,
  .service-card,
  .testimonial-card,
  .contact-form {
    max-width: 100%;
  }

  .hero-small {
    padding: 3rem 1rem;
  }

  .hero-small h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    line-height: 0.95;
  }

  .hero-small p,
  .hero-text .subtitle,
  .section-header p,
  .content p,
  .content ul {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2,
  .contact-content h2 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 0.95;
  }

  .contact-content p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .contact-info {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .contact-item {
    font-size: 1rem;
  }

  .contact-item strong {
    font-size: 1.35rem;
  }

  .highlight-box,
  .cta-section,
  .testimonial-card,
  .service-card {
    padding: 1.4rem;
  }

  .gallery-item {
    height: 220px;
  }

  .menu-tab,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .menu-tab {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-content {
    padding: 0.65rem 0.85rem;
  }

  .logo.logo--image img {
    height: 38px;
    max-width: min(52vw, 180px);
  }

  .mobile-nav {
    padding: 0.35rem 0.85rem 0.85rem;
  }

  .mobile-nav a {
    font-size: 0.9rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
  }

  .menu-section-nav {
    padding: 2rem 1rem;
  }

  .menu-section-nav__button {
    width: 100%;
  }

  .contact-form-section {
    padding: 4rem 1rem;
  }

  .btn-large {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .rebrand-banner,
  .about,
  .menu-showcase,
  .gallery,
  .services,
  .testimonials,
  .contact-cta,
  footer,
  .hero-content,
  .hero-small,
  .feature-photo,
  .content,
  .menu-container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hero,
  .hero-small,
  .rebrand-banner {
    margin-top: 72px;
  }

  .hero-small {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-small h1,
  .section-header h2,
  .contact-content h2 {
    font-size: clamp(2rem, 12vw, 2.7rem);
    letter-spacing: 0.04em;
  }

  .hero-small p,
  .hero-text .subtitle,
  .section-header p,
  .content p,
  .content ul,
  .testimonial-text,
  .contact-content p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .content ul {
    margin-left: 0;
    padding-left: 1.2rem;
  }

  .about-grid {
    margin-top: 2rem;
  }

  .about-image-placeholder,
  .hero-image-placeholder,
  .gallery-item {
    height: auto;
    min-height: 180px;
  }

  .highlight-box,
  .cta-section,
  .testimonial-card,
  .service-card,
  .menu-item {
    padding: 1.15rem;
  }

  .contact-info {
    gap: 0.9rem;
  }

  .contact-item strong {
    font-size: 1.2rem;
  }

  .menu-tab,
  .btn-primary,
  .btn-secondary {
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  footer,
  .footer-bottom,
  footer p,
  footer a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  footer {
    background: var(--charcoal);
    color: var(--gray-light);
  }

  footer p {
    color: var(--gray-light);
  }

  footer a {
    color: var(--yellow-bright);
  }

  .footer-meta {
    color: var(--gray-medium);
  }

  .content-list-lg {
    margin-left: 0;
    padding-left: 1.2rem;
  }
}
