/* ============================================
   IGNITEFIRE CO - Premium Private Chef Website
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark: #111111;
    --color-darker: #0d0d0d;
    --color-card: #151515;
    --color-border: #222222;
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-gold-dark: #b8860b;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-light: #cccccc;
    --color-gray-dark: #444444;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Gold Gradient */
    --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

/* Selection */
::selection {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-flame {
    width: 80px;
    height: 80px;
    animation: flamePulse 1.5s ease-in-out infinite;
}

.loader-flame svg {
    width: 100%;
    height: 100%;
}

@keyframes flamePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background-color var(--transition-medium), padding var(--transition-medium);
}

.nav.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
}

.nav-logo-svg {
    width: 32px;
    height: 32px;
}

.nav-logo span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-light);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold) !important;
    transition: all var(--transition-medium);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-black) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-flame {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    animation: flameFloat 3s ease-in-out infinite;
}

.hero-flame svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

@keyframes flameFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gray-light);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--gradient-gold);
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-medium);
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-cta svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-medium);
}

.hero-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray);
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

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

.about-image-container {
    position: relative;
}

.about-image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-gold);
    opacity: 0.3;
    z-index: 0;
}

.about-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: filter var(--transition-medium);
    z-index: 1;
}

.about-image-container:hover .about-image {
    filter: grayscale(0%);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--gradient-gold);
    opacity: 0.1;
    z-index: 0;
}

.about-content {
    padding-left: 20px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 20px;
}

.about-divider {
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-light);
    margin-bottom: 25px;
}

.about-signature {
    margin-top: 40px;
    color: var(--color-gold);
}

.about-signature span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
}

.signature-line {
    display: block;
    width: 100px;
    height: 20px;
    margin-top: 5px;
    color: var(--color-gold);
}

/* ============================================
   PLATES SECTION
   ============================================ */
.plates {
    padding: var(--section-padding) 0;
    background-color: var(--color-darker);
    position: relative;
}

.plates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plate-card {
    position: relative;
    overflow: hidden;
    background-color: var(--color-card);
    transition: transform var(--transition-medium);
}

.plate-card:hover {
    transform: translateY(-10px);
}

.plate-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.plate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.plate-card:hover .plate-image {
    transform: scale(1.1);
}

.plate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.plate-card:hover .plate-overlay {
    opacity: 1;
}

.plate-view {
    padding: 12px 24px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.plate-card:hover .plate-view {
    transform: translateY(0);
}

.plate-info {
    padding: 25px;
    border-top: 1px solid var(--color-border);
}

.plate-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 8px;
}

.plate-description {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-gray);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    padding: 50px 35px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition-medium), transform var(--transition-medium);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
}

.service-description {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.service-line {
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto;
    transition: width var(--transition-medium);
}

.service-card:hover .service-line {
    width: 80px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--color-darker);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 0 40px;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
    color: var(--color-gold);
    opacity: 0.5;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-white);
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.testimonial-event {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background-color: var(--color-gold);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking {
    padding: var(--section-padding) 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.booking-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.booking-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.booking-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.booking-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-gray-light);
    margin-bottom: 50px;
}

.booking-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gray-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.booking-option svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.booking-option:hover {
    color: var(--color-gold);
}

.booking-cta {
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: var(--gradient-gold);
    color: var(--color-black);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.calendly-placeholder {
    padding: 40px;
    background-color: rgba(21, 21, 21, 0.8);
    border: 1px dashed var(--color-border);
    text-align: center;
}

.calendly-placeholder p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.calendly-note {
    margin-top: 10px;
    font-size: 0.85rem !important;
    color: var(--color-gray-dark) !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background-color: var(--color-black);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-gray);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-gray-light);
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
}

.footer-credit {
    font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-divider {
        margin: 0 auto 30px;
    }

    .plates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: right var(--transition-medium);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-link {
        font-size: 1rem;
    }

    .hero-flame {
        width: 60px;
        height: 60px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .plates-grid {
        grid-template-columns: 1fr;
    }

    .booking-options {
        flex-direction: column;
        gap: 20px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
