/*
Theme Name: Woodfire Cafe Dublin
Theme URI: https://woodfirerestaurant.ie
Description: A premium WordPress theme for Woodfire Cafe Dublin featuring authentic wood-fired pizza and Italian cuisine. Blue and gold branding with modern, clean design.
Version: 1.0.0
Author: Woodfire Cafe
Text Domain: woodfire
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --color-primary: #1B3A6B;
    --color-primary-light: #2E5FA1;
    --color-primary-dark: #112744;
    --color-accent: #D4A843;
    --color-accent-light: #E8C564;
    --color-accent-dark: #B8902E;
    --color-white: #ffffff;
    --color-ivory: #FAF8F5;
    --color-off-white: #F5F3EF;
    --color-text-dark: #1A1A2E;
    --color-text-body: #4A4A5A;
    --color-text-light: #7A7A8A;
    --color-border: #E8E6E0;
    --color-overlay: rgba(27, 58, 107, 0.85);
    --color-dark-overlay: rgba(17, 39, 68, 0.92);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --header-height: 80px;
    --container-width: 1200px;
    --border-radius: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
    background: var(--color-white);
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.section-subtitle.center { text-align: center; }

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.section-title.center { text-align: center; }
.section-title.left-align { text-align: left; }
.section-title.white { color: var(--color-white); }

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--color-text-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

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

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 42px; font-size: 16px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 0 20px;
}

.site-header.scrolled {
    background: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0 20px;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    z-index: 1001;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.scrolled .logo-img {
    height: 45px;
}

.logo-icon {
    color: var(--color-accent);
    font-size: 24px;
}

.logo-accent {
    color: var(--color-accent);
    font-weight: 400;
}

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

.main-nav ul li a {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

.main-nav ul li a:hover {
    color: var(--color-accent);
}

.nav-cta {
    background: var(--color-accent) !important;
    color: var(--color-primary-dark) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    background: var(--color-accent-light) !important;
    transform: translateY(-1px);
}

.nav-cta-outline {
    background: transparent !important;
    color: var(--color-white) !important;
    border: 2px solid var(--color-accent) !important;
}

.nav-cta-outline:hover {
    background: var(--color-accent) !important;
    color: var(--color-primary-dark) !important;
}

.nav-cta-gift {
    background: transparent !important;
    color: var(--color-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.nav-cta-gift:hover {
    background: var(--color-accent) !important;
    color: var(--color-primary-dark) !important;
    border-color: var(--color-accent) !important;
}

.nav-cta-gift i {
    margin-right: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

.header-phone i { color: var(--color-accent); }
.header-phone:hover { color: var(--color-accent); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 39, 68, 0.88) 0%,
        rgba(27, 58, 107, 0.7) 50%,
        rgba(17, 39, 68, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    position: relative;
}

.hero-scroll span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 32px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 120px 0;
    background: var(--color-white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 5px solid var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text-body);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-ivory);
    border-radius: 10px;
    border-left: 3px solid var(--color-accent);
}

.about-feature i {
    color: var(--color-accent);
    font-size: 18px;
}

.about-feature span {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-dark);
}

/* ============================================
   HIGHLIGHTS / SPECIALTIES
   ============================================ */
.highlights-section {
    padding: 120px 0;
    background: var(--color-ivory);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    justify-items: center;
}

.highlights-grid .highlight-card {
    width: 100%;
}

/* Center the last row when it has fewer items (e.g. 5 cards = 3+2) */
.highlights-grid .highlight-card:nth-child(4),
.highlights-grid .highlight-card:nth-child(5) {
    max-width: 100%;
}

.highlight-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.highlight-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-img img {
    transform: scale(1.08);
}

.highlight-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.highlight-info {
    padding: 28px;
}

.highlight-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.highlight-info p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.highlights-cta { text-align: center; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    padding: 120px 0;
    background: var(--color-primary);
}

.why-section .section-subtitle { color: var(--color-accent); }
.why-section .section-title { color: var(--color-white); }
.why-section p { color: rgba(255, 255, 255, 0.75); }

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

.why-cards {
    display: grid;
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 168, 67, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 20px;
}

.why-card h4 {
    color: var(--color-white);
    font-size: 17px;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    margin: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gallery-item {
    overflow: hidden;
    height: 250px;
}

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

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

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 120px 0;
    background: var(--color-ivory);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    padding: 20px 40px;
    background: var(--color-white);
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.google-logo {
    width: 32px;
    height: 32px;
}

.rating-info .stars {
    color: #FBBC05;
    font-size: 18px;
    margin-bottom: 2px;
}

.rating-text {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

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

.review-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 3px solid var(--color-accent);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: #FBBC05;
    font-size: 15px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.review-author strong {
    display: block;
    font-size: 15px;
    color: var(--color-text-dark);
}

.review-author span {
    font-size: 13px;
    color: var(--color-text-light);
}

.reviews-cta { text-align: center; }
.reviews-cta .btn-outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.reviews-cta .btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: url('') center/cover no-repeat;
    background-color: var(--color-primary-dark);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 39, 68, 0.95), rgba(27, 58, 107, 0.9));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.cta-feature {
    text-align: center;
}

.cta-feature-icon {
    width: 70px;
    height: 70px;
    border: 2px dashed var(--color-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--color-accent);
    font-size: 26px;
}

.cta-feature span {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-primary-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact li i {
    color: var(--color-accent);
    margin-top: 4px;
    font-size: 14px;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary);
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-page-section {
    padding: 140px 0 80px;
    background: var(--color-ivory);
}

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

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 28px;
    border: 2px solid var(--color-border);
    border-radius: 30px;
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-body);
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.menu-category-subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.menu-item {
    display: flex;
    gap: 16px;
    padding: 18px 22px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.menu-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left-color: var(--color-accent);
}

.menu-item-info { flex: 1; }

.menu-item-info h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: var(--color-ivory);
    border-radius: var(--border-radius);
    font-size: 14px;
    color: var(--color-text-light);
}

.menu-note i {
    color: var(--color-accent);
    margin-right: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .section-title { font-size: 36px; }
    .about-grid { gap: 50px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }

    .hamburger { display: flex; }

    .header-phone span { display: none; }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .main-nav ul li a {
        font-size: 20px;
        padding: 12px 20px;
    }

    .hero { min-height: 600px; }
    .hero h1 { font-size: 36px; }
    .hero-desc { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

    .about-section { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-accent { display: none; }
    .about-features { grid-template-columns: 1fr; }

    .highlights-section { padding: 80px 0; }
    .highlights-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 50px; }

    .reviews-section { padding: 80px 0; }
    .reviews-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item { height: 150px; }

    .cta-features { flex-direction: column; gap: 25px; }
    .cta-section { padding: 80px 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-bottom-links { justify-content: center; }

    .menu-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 30px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .section-title { font-size: 26px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(5) { display: none; }
}

/* ============================================
   MENU PAGE HERO
   ============================================ */
.menu-page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    overflow: hidden;
}

.menu-page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.menu-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.menu-page-hero-content h1 {
    font-size: 52px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.menu-page-hero-content .hero-desc {
    color: rgba(255, 255, 255, 0.8);
}

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-page-section { padding: 80px 0; }

/* ============================================
   MENU PDF DOWNLOAD SECTION
   ============================================ */
.menu-pdf-section {
    padding: 50px 0 10px;
    background: var(--color-ivory);
}

.menu-pdf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-pdf-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 24px 28px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.menu-pdf-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(27, 58, 107, 0.12);
    transform: translateY(-3px);
}

.menu-pdf-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.menu-pdf-card:hover .menu-pdf-icon {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.menu-pdf-info {
    flex: 1;
}

.menu-pdf-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.menu-pdf-info p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.menu-pdf-action {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.menu-pdf-action i {
    margin-right: 4px;
    color: #dc3545;
}

.menu-pdf-card:hover .menu-pdf-action {
    color: var(--color-accent-dark);
}

@media (max-width: 768px) {
    .menu-pdf-grid {
        grid-template-columns: 1fr;
    }
    .menu-pdf-card {
        padding: 20px;
    }
}

/* ============================================
   ELEMENTOR SECTION GRADIENTS
   ============================================ */

/* About / Our Story — warm cream gradient */
.elementor-element-about_section {
    background: linear-gradient(180deg, #FDF8F0 0%, #FFFFFF 100%) !important;
    padding: 80px 0 !important;
}

/* Specialties — subtle cool blue-grey tint */
.elementor-element-specialties_section {
    background: linear-gradient(180deg, #F5F7FB 0%, #EEF1F8 100%) !important;
    padding: 80px 0 !important;
}

/* Why Woodfire — deep navy blue gradient */
.elementor-element-why_section {
    background: linear-gradient(160deg, #1B3A6B 0%, #0F2347 100%) !important;
    padding: 80px 0 !important;
}

/* Gallery strip — edge to edge, no padding */
.elementor-element-gallery_section {
    padding: 0 !important;
    margin: 0 !important;
}
.elementor-element-gallery_section > .elementor-container {
    max-width: 100% !important;
}

/* Reviews — warm off-white gradient */
.elementor-element-reviews_section {
    background: linear-gradient(180deg, #FDF8F0 0%, #F8F4EC 100%) !important;
    padding: 80px 0 !important;
}

/* CTA / Order section — dark blue gradient */
.elementor-element-cta_section {
    background: linear-gradient(135deg, #1B3A6B 0%, #142D54 100%) !important;
    padding: 80px 0 !important;
}

/* ============================================
   ELEMENTOR WIDGET ALIGNMENT FIXES
   ============================================ */

/* Specialties section — center headings and style them */
.elementor-element-specialties_section .elementor-widget-heading .elementor-heading-title {
    text-align: center;
}
.elementor-element-specialties_section .elementor-widget-heading:first-child .elementor-heading-title {
    color: #D4A843;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.elementor-element-specialties_section .elementor-widget-heading:nth-child(2) .elementor-heading-title {
    color: #1A1A2E;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* About section — center headings */
.elementor-element-about_section .elementor-widget-heading .elementor-heading-title {
    text-align: center;
}

/* Dark sections — force white text on headings and paragraphs */
.elementor-element-why_section h1,
.elementor-element-why_section h2,
.elementor-element-why_section h3,
.elementor-element-why_section h4,
.elementor-element-why_section p,
.elementor-element-cta_section h1,
.elementor-element-cta_section h2,
.elementor-element-cta_section h3,
.elementor-element-cta_section h4,
.elementor-element-cta_section p {
    color: #FFFFFF !important;
}
.elementor-element-why_section p[style*="color:rgba"],
.elementor-element-cta_section p[style*="color:rgba"] {
    color: rgba(255,255,255,0.75) !important;
}
.elementor-element-why_section p[style*="color:#D4A843"],
.elementor-element-cta_section p[style*="color:#D4A843"] {
    color: #D4A843 !important;
}
.elementor-element-why_section h4,
.elementor-element-cta_section h4 {
    color: #FFFFFF !important;
}
.elementor-element-why_section .elementor-widget-html p[style*="rgba(255,255,255,0.6"],
.elementor-element-cta_section .elementor-widget-html p[style*="rgba(255,255,255,0.6"] {
    color: rgba(255,255,255,0.65) !important;
}

/* ============================================
   MENU PAGE HERO BANNER
   ============================================ */
.elementor-element-menuhero_section {
    background: linear-gradient(160deg, #1B3A6B 0%, #0F2347 100%) !important;
    min-height: 350px !important;
    padding: 120px 0 60px 0 !important;
    display: flex !important;
    align-items: center !important;
}
.elementor-element-menuhero_section .elementor-heading-title {
    text-align: center !important;
}
.elementor-element-menuhero_section .elementor-widget-heading:first-child .elementor-heading-title {
    color: #D4A843 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
}
.elementor-element-menuhero_section .elementor-widget-heading:nth-child(2) .elementor-heading-title {
    color: #FFFFFF !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 56px !important;
    font-weight: 700 !important;
}
.elementor-element-menuhero_section p {
    color: rgba(255,255,255,0.7) !important;
    text-align: center !important;
}
