/* ===================================
   SALTY GIRL NY - ENHANCED STYLES
   Modern, Responsive, Conversion-Focused
   =================================== */

/* CSS Variables for Brand Consistency */
:root {
    --primary-color: #2D5F3F;
    --secondary-color: #F4A261;
    --accent-color: #E76F51;
    --dark-color: #1A1A1A;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.highlight {
    color: var(--secondary-color);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    min-height: 50px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: var(--transition);
    display: block;
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: none;
}

/* Show text logo if image fails to load */
.logo a:not(:has(img[src])) .logo-text,
.logo a:has(img[style*="display: none"]) .logo-text {
    display: block;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

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

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a31 100%);
    background-image: url('https://sspark.genspark.ai/cfimages?u1=RPlrbsknqJhBsHtJ%2FCJfTx0D9nXc8Vf76Vdk6dKufzvZLxaGowJskE5xjqz%2FIug%2F%2F7fxOufRCpOBMaQiWBSE9sJbYBLNI6dNkeh9jpDivShDhg%3D%3D&u2=cfpjxvjTI9CD6BBH&width=2560');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.92) 0%, rgba(30, 74, 49, 0.85) 100%);
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--secondary-color);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Hero Newsletter */
.hero-newsletter {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.newsletter-offer {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-offer i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn-submit {
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form .btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 111, 81, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

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

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

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* ===================================
   MENU SECTION
   =================================== */
.menu-section {
    background: var(--light-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.menu-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.menu-content {
    padding: 25px;
}

.menu-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.menu-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 8px;
}

.menu-cta {
    text-align: center;
    margin-top: 40px;
}

.menu-note {
    margin-top: 15px;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-content {
    padding: 20px;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

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

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews-section {
    background: var(--light-color);
}

.rating-summary {
    margin-top: 20px;
}

.stars {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.rating-summary p {
    color: var(--text-secondary);
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.review-stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

.review-author {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.review-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.review-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-links .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.review-links .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-cta {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
}

.instagram-cta i {
    color: #E1306C;
    margin-right: 10px;
}

.instagram-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.instagram-link:hover {
    color: var(--secondary-color);
}

/* ===================================
   LOCATION SECTION
   =================================== */
.location-section {
    background: var(--light-color);
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.location-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    border-radius: 15px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===================================
   CONTACT/NEWSLETTER SECTION
   =================================== */
.contact-section {
    background: var(--primary-color);
    color: var(--white);
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-box {
    background: var(--white);
    color: var(--dark-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.newsletter-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.newsletter-box p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.newsletter-form-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form-main input {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form-main input:focus {
    border-color: var(--primary-color);
}

.newsletter-form-main button {
    padding: 15px;
    border: none;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-style: italic;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-links h4,
.footer-hours h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-bottom a {
    color: var(--secondary-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    animation: pulse 2s infinite;
}

.chat-button:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(244, 162, 97, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .menu-grid,
    .reviews-grid,
    .gallery-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Floating buttons */
    .chat-button,
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-newsletter {
        padding: 20px;
    }
}

/* ===================================
   PAGE HEADER STYLES (for multi-page)
   =================================== */
.page-header {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a31 100%);
    background-image: url('https://sspark.genspark.ai/cfimages?u1=wFVkyy5os8RyVvGnrSdw5HzLea%2B5AH60zfPjdozJtWgRKZ2HyiQ5kkmTNkYRAPBC4%2FQBnynZcgBj96q9up3nxIK9k%2Bsm0w4uoMuuY0zsumqonLceAbaMe7guXYs%2FlIRTM4k%3D&u2=KYUPwpfIcJW93dyy&width=2560');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    margin-bottom: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.92) 0%, rgba(30, 74, 49, 0.88) 100%);
}

.page-header .container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   FEATURES SECTION (Home Page)
   =================================== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-image {
    width: 100%;
    height: 200px;
    margin: -40px -30px 25px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Menu Preview Section */
.menu-preview-section {
    padding: 80px 0;
    background: var(--light-color);
}

.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-label p {
    font-size: 1.1rem;
    margin-top: 5px;
}

.stat-label .stars {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   MENU PAGE SPECIFIC STYLES
   =================================== */

/* Add-Ons Notice */
.add-ons-notice {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.notice-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.customize-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.add-ons-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.add-on-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--text-primary);
    padding: 25px 30px;
    border-radius: 15px;
    min-width: 150px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.add-on-item.clickable {
    cursor: pointer;
}

.add-on-item.clickable:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.add-on-item.selected {
    background: var(--primary-color);
    color: var(--white);
}

.add-on-item.selected .price {
    color: var(--secondary-color);
}

.add-on-item.selected .add-on-btn {
    background: var(--accent-color);
}

.add-on-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.add-on-item.selected .add-on-icon {
    color: var(--white);
}

.add-on-item strong {
    font-size: 1.1rem;
}

.add-on-item .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.add-on-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.add-on-btn:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.add-on-item.selected .add-on-btn i::before {
    content: "\f00c"; /* Check icon */
}

.selected-addons {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.selected-addons h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.selected-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.selected-item {
    background: var(--white);
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-total {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
}

/* Menu Category Sections */
.menu-category-section {
    padding: 80px 0;
}

.menu-category-section.alt-bg {
    background: var(--light-color);
}

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

.category-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.category-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(to bottom, rgba(244, 162, 97, 0.05) 0%, var(--white) 100%);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.menu-item-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.menu-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge.gf {
    background: #10b981;
    color: var(--white);
}

.badge.vg {
    background: #8b5cf6;
    color: var(--white);
}

.badge.popular {
    background: var(--accent-color);
    color: var(--white);
}

.badge.ask-gf {
    background: #f59e0b;
    color: var(--white);
}

.menu-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.menu-dressing {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 8px;
}

.menu-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Menu Download Section */
.menu-download-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a31 100%);
    padding: 80px 0;
}

.download-cta {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.download-icon {
    font-size: 5rem;
    color: var(--accent-color);
    min-width: 100px;
    text-align: center;
}

.download-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.download-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Dietary Section */
.dietary-section {
    padding: 60px 0;
    background: var(--light-color);
}

.dietary-legend {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

/* Menu Overview Section */
.menu-overview-section {
    padding: 80px 0;
}

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

.overview-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 20px;
    transition: var(--transition);
}

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

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.overview-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Order CTA Section */
.order-cta-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.order-cta-section .cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.order-cta-section .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.order-note {
    margin-top: 25px;
    font-size: 1rem;
    opacity: 0.95;
}

.menu-details {
    list-style: none;
    margin: 15px 0;
}

.menu-details li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.menu-details i {
    color: var(--primary-color);
    margin-right: 10px;
}

.dietary-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: var(--shadow);
}

.dietary-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

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

.dietary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
}

.dietary-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.dietary-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 20px;
}

/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */
.mission-section {
    background: var(--light-color);
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.mission-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.values-section {
    padding: 80px 0;
}

.team-section {
    background: var(--light-color);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--light-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

.team-image img[src=""],
.team-image img:not([src]) {
    display: none;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: var(--transition);
}

.team-image:empty::before,
.team-image:has(img[src=""])::before {
    opacity: 0.1;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
}

/* ===================================
   REVIEWS PAGE SPECIFIC STYLES
   =================================== */
.leave-review-section {
    background: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.leave-review-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.leave-review-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.review-platform-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.platform-btn.google {
    background: #4285F4;
}

.platform-btn.yelp {
    background: #D32323;
}

.platform-btn.facebook {
    background: #1877F2;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   GALLERY PAGE SPECIFIC STYLES
   =================================== */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 95, 63, 0.9);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.instagram-hashtag {
    margin-top: 15px;
    font-size: 1.1rem;
}

/* ===================================
   LOCATION PAGE SPECIFIC STYLES
   =================================== */
.hours-list {
    margin: 20px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 25px;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.what-to-expect-section {
    background: var(--light-color);
    padding: 80px 0;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expect-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.expect-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.expect-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item h3 i {
    margin-right: 10px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   CONTACT PAGE SPECIFIC STYLES
   =================================== */
.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
}

.contact-method i {
    font-size: 2rem;
    color: var(--secondary-color);
    min-width: 40px;
}

.contact-method h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-method .availability {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.link-btn {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.newsletter-benefits {
    margin-top: 30px;
    text-align: left;
}

.newsletter-benefits h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.newsletter-benefits ul {
    list-style: none;
}

.newsletter-benefits li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.newsletter-benefits i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form-section {
    background: var(--light-color);
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

.quick-contact-section {
    padding: 80px 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quick-contact-card {
    text-align: center;
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

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

.quick-contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quick-contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.quick-contact-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Print Styles */
@media print {
    .navbar,
    .chat-button,
    .back-to-top,
    .scroll-indicator {
        display: none;
    }
}