/**
 * Sunrise Restorant Main Styles
 */

:root {
    /* Font Families */
    --font-primary: 'Lora', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Color Palette */
    --color-primary-orange: #CE874B;    /* Golden orange — PANTONE 722 C */
    --color-primary-black: #000000;     /* Deep black — PANTONE Black C */
    --color-secondary-peach: #F5C89E;   /* Soft peach */
    --color-secondary-brown: #6A3D1D;   /* Deep brown */
    --color-secondary-beige: #C5AF98;   /* Warm beige */
    
    /* Semantic colors */
    --button-background: var(--color-primary-orange);
    --button-text: #FFFFFF;
    --header-background: var(--color-primary-black);
    --header-text: var(--color-primary-orange);
    --accent-background: var(--color-secondary-brown);
    --accent-text: #FFFFFF;
    
    /* Utility colors */
    --color-white: #FFFFFF;
    --color-light-gray: #F8F8F8;
    --color-medium-gray: #666666;
    --color-dark-gray: #333333;
    
    /* Derived colors */
    --color-primary-orange-hover: #B57339;
    --color-secondary-orange: #E79C5F;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-primary-black);
    background-color: var(--color-white);
}

a {
    color: var(--color-secondary-brown);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-primary-orange);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--color-primary-black);
    font-weight: 600;
    letter-spacing: -0.03em;
}

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

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

.section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: var(--font-secondary);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background-color: var(--button-background);
    color: var(--button-text);
    border: 2px solid var(--button-background);
}

.btn.primary:hover {
    background-color: var(--color-primary-orange-hover);
    border-color: var(--color-primary-orange-hover);
}

.btn.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn.btn-outline {
    background-color: transparent;
    color: var(--color-secondary-brown);
    border: 2px solid var(--color-secondary-brown);
}

.btn.btn-outline:hover {
    background-color: var(--accent-background);
    color: var(--accent-text);
}

/* Header & Navigation Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1); /* Black with transparency */
    backdrop-filter: blur(5px); /* Blur effect for scrolled header */
    color: var(--header-text);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 40px; /* Increased padding for better vertical centering */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.on-hero {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px); /* Increased blur effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.site-header.scrolled {
    padding: 15px 40px;
    background-color: rgba(0, 0, 0, 0.8); /* Black with transparency */
    backdrop-filter: blur(10px); /* Blur effect for scrolled header */
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

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

.site-logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: auto; /* Ensures logo stays on the left */
}

.site-logo img,
.custom-logo {
    max-height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.scrolled .site-logo img,
.scrolled .custom-logo {
    max-height: 40px;
}

.site-title {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--header-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title:hover {
    color: var(--color-white);
}

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

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

.main-navigation li {
    position: relative;
}

.main-navigation a {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-orange);
    transition: width 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item a {
    color: var(--header-text);
}

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

/* Navigation Extras (Language & CTA) */
.nav-extras {
    display: flex;
    align-items: center;
    margin-left: 2rem;
    gap: 1.5rem;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    z-index: 100;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.language-dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.current-language {
    margin-right: 8px;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.language-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    background-color: var(--color-primary-black);
    border-radius: 4px;
    margin-top: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.language-dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.language-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-dropdown-menu a:last-child {
    border-bottom: none;
}

.language-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-primary-orange);
}

.language-dropdown-menu a.active {
    background-color: var(--color-primary-orange);
    color: var(--color-white);
    font-weight: 500;
}

/* Book Now Button */
.nav-cta.btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--button-background);
    color: var(--button-text);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
    border: 2px solid var(--button-background);
}

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

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Body adjustments for fixed header */
body {
    padding-top: 0; /* Remove padding to allow header to overlay hero */
}

body.menu-open {
    overflow: hidden;
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .site-header {
        padding: 15px 20px;
    }
    
    .site-header.scrolled {
        padding: 10px 20px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background-color: var(--color-primary-black);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        z-index: 1001;
        padding: 80px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .menu-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .main-navigation li {
        width: 100%;
        margin: 0;
    }
    
    .main-navigation a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        color: var(--color-white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .main-navigation a:hover,
    .main-navigation a:focus,
    .main-navigation .current-menu-item a {
        color: var(--color-primary-orange);
        transform: translateX(10px);
    }
    
    .nav-extras {
        margin-left: 0;
        margin-top: 30px;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .language-dropdown {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .language-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 15px;
    }
    
    .language-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-cta.btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .site-logo img,
    .custom-logo {
        max-height: 40px;
    }
    
    .scrolled .site-logo img,
    .scrolled .custom-logo {
        max-height: 36px;
    }
}

/* Section 1: Hero Slider Section */
.hero-slider-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 15s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide.active::before {
    animation: zoomEffect 15s forwards;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-primary-orange, #CE874B);
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-slider-dot.active {
    background: var(--color-primary-orange, #CE874B);
    transform: scale(1.2);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.hero-slider-arrow:hover {
    background: rgba(206, 135, 75, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-slider-arrow {
        display: none !important;
    }
}

/* Section 2: Intro CTA Section */
.intro-cta {
    text-align: center;
    padding: 5rem 0;
}

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

.section-label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary-brown);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary-black);
}

.intro-description {
    margin-bottom: 2rem;
    color: var(--color-medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Sections with Two-Column Split Layout */
.two-column-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.two-column-split.reversed {
    flex-direction: row-reverse;
}

.split-image, 
.split-content {
    flex: 1;
    min-width: 0;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.split-content .section-title {
    text-align: left;
}

.section-content {
    color: var(--color-medium-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Section 3: About / Story Section */
.about-story {
    background-color: var(--color-white);
}

/* Section 4: Menu Overview Section */
.menu-overview {
    background-color: var(--color-light-gray);
}

/* Section 5: Selected Menu Overlay Section */
.menu-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: var(--color-white);
}

.menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.menu-overlay .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.menu-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    color: var(--color-primary-black);
}

.menu-item-list {
    list-style: none;
    margin-top: 2rem;
}

.menu-list-item {
    padding: 1.2rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.menu-list-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-title {
    font-size: 1.3rem;
    margin: 0;
}

.menu-item-price {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-primary-orange);
    font-size: 1.2rem;
}

.menu-item-description {
    font-size: 0.95rem;
    color: var(--color-medium-gray);
    line-height: 1.6;
}

/* Section 6: Events & Functions Section */
.events-functions {
    background-color: var(--color-white);
}

/* Section 7: Interior Showcase Section */
.interior-showcase {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.interior-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section 8: Footer Content Section */
.footer-content-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 6rem 0 4rem;
    color: var(--color-white);
}

.footer-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.footer-content-section .container {
    position: relative;
    z-index: 2;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h3 {
    color: var(--color-primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 60px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.location-list, 
.hours-list,
.contact-list {
    list-style: none;
}

.location-list li, 
.hours-list li,
.contact-list li {
    margin-bottom: 1rem;
}

.location-list strong {
    display: block;
    margin-bottom: 0.3rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
}

.contact-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.footer-column.contact .btn {
    margin-top: 1.5rem;
}

/* Footer (actual footer) */
.site-footer {
    background-color: var(--color-primary-black);
    color: var(--color-white);
    padding: 5rem 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-primary-orange);
}

/* Brand Column */
.brand-column {
    grid-column: span 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--color-primary-orange);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 18px;
}

/* Footer Navigation */
.footer-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-navigation a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary-orange);
    transition: transform 0.3s ease;
}

.footer-navigation a:hover {
    color: var(--color-primary-orange);
    transform: translateX(5px);
}

.footer-navigation a:hover::before {
    transform: translateY(-50%) rotate(90deg);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-item i {
    margin-top: 3px;
    color: var(--color-primary-orange);
    font-size: 1.2rem;
}

.contact-item span, .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-primary-orange);
}

/* Newsletter Section */
.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary-orange);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    width: 100%;
    background-color: var(--color-primary-orange);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--color-secondary-orange);
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher-wrapper {
    margin-top: 1.5rem;
}

.language-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
}

.sunrise-language-switcher {
    display: flex;
    gap: 1rem;
}

.sunrise-language-switcher a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
}

.sunrise-language-switcher a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.sunrise-language-switcher a.active {
    background-color: var(--color-primary-orange);
    color: var(--color-white);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits a {
    color: var(--color-primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--color-white);
}

.heart {
    color: #ff5a5f;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content .section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--color-primary-orange);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-content .section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-primary-black);
    font-weight: 700;
}

.welcome-content .section-content {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-secondary-brown);
    margin-bottom: 2rem;
}

.welcome-content .button-container {
    margin-top: 2rem;
}

.welcome-image-left .two-column-split {
    flex-direction: row;
}

.welcome-image-right .two-column-split {
    flex-direction: row-reverse;
}

.welcome-image {
    flex: 1;
    min-width: 0;
    padding: 20px;
}

.welcome-image.circle img {
    border-radius: 50%;
}

.welcome-image.rounded img {
    border-radius: 10px;
}

.welcome-image.square img {
    border-radius: 0;
}

.welcome-text {
    flex: 1;
    min-width: 0;
    padding: 20px;
}

/* About Preview Section */
.about-preview-section {
    background-color: #fff;
    overflow: hidden;
}

.story-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.story-image {
    flex: 1;
    width: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-image:hover::before {
    opacity: 1;
}

.story-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    transform-origin: center;
}

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

.story-content {
    flex: 1;
    width: 50%;
    padding: 4rem 5rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(249,246,240,1) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

.story-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-top: 3px solid #CE874B;
    border-left: 3px solid #CE874B;
    opacity: 0.6;
}

.story-content::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid #CE874B;
    border-right: 3px solid #CE874B;
    opacity: 0.6;
}

.section-label {
    display: block;
    font-family: var(--font-secondary);
    color: #CE874B;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #CE874B;
}

.about-preview-section .section-title {
    margin-bottom: 2rem;
    font-size: 2.8rem;
    color: #000;
    font-weight: 700;
    animation: slideUp 0.8s ease-out 0.4s both;
    position: relative;
}

.about-preview-section .section-text {
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: #333;
    font-size: 1.1rem;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.about-preview-section .btn {
    align-self: flex-start;
    margin-top: 1rem;
    animation: slideUp 0.8s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-preview-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.about-preview-section .btn:hover::before {
    left: 100%;
}

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

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

@media (max-width: 992px) {
    .story-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .story-image, .story-content {
        width: 100%;
    }
    
    .story-image img {
        height: 60vh;
    }
    
    .story-content {
        padding: 3rem 2rem;
    }
    
    .about-preview-section .section-title {
        font-size: 2.2rem;
    }
    
    .story-content::before,
    .story-content::after {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .story-image img {
        height: 50vh;
    }
    
    .story-content {
        padding: 2.5rem 1.5rem;
    }
    
    .about-preview-section .section-title {
        font-size: 1.8rem;
    }

    .story-content::before {
        top: 10px;
        left: 10px;
        width: 24px;
        height: 24px;
    }
    .story-content::after {
        bottom: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
    }
    
    .about-preview-section .section-text {
        font-size: 1rem;
    }
}

/* Homepage - Menu Highlights Section */
.menu-highlights-section {
    background-color: #fff;
    overflow: hidden;
}

.menu-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.menu-content {
    flex: 1;
    width: 50%;
    padding: 4rem 5rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(249,246,240,1) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
    order: 1; /* Ensure this comes first (on the left) */
}

.menu-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-top: 3px solid #CE874B;
    border-left: 3px solid #CE874B;
    opacity: 0.6;
}

.menu-content::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid #CE874B;
    border-right: 3px solid #CE874B;
    opacity: 0.6;
}

.menu-image {
    flex: 1;
    width: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    order: 2; /* Ensure this comes second (on the right) */
}

.menu-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-image:hover::before {
    opacity: 1;
}

.menu-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    transform-origin: center;
}

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

.menu-highlights-section .section-title {
    margin-bottom: 2rem;
    font-size: 2.8rem;
    color: #000;
    font-weight: 700;
    animation: slideUp 0.8s ease-out 0.4s both;
    position: relative;
}

.menu-highlights-section .section-text {
    margin-bottom: 2rem;
    line-height: 1.9;
    color: #333;
    font-size: 1.1rem;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.menu-preview {
    margin-bottom: 2.5rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.8s ease-out 0.7s both;
    border-left: 3px solid #CE874B;
}

.menu-preview-item {
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(206, 135, 75, 0.3);
    transition: all 0.3s ease;
}

.menu-preview-item:last-child {
    border-bottom: none;
}

.menu-preview-item:hover {
    transform: translateX(10px);
    background-color: rgba(255, 252, 247, 0.7);
    padding-left: 10px;
    border-radius: 5px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.menu-item-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.menu-item-price {
    color: #CE874B;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.menu-item-category {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 2px;
}

.menu-highlights-section .btn {
    align-self: flex-start;
    margin-top: 1rem;
    animation: slideUp 0.8s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.menu-highlights-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.menu-highlights-section .btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .menu-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .menu-image, .menu-content {
        width: 100%;
    }

    .menu-content {
        order: 2; /* On mobile, content goes below */
        padding: 3rem 2rem;
    }

    .menu-image {
        order: 1; /* On mobile, image goes on top */
    }
    
    .menu-image img {
        height: 60vh;
    }
    
    .menu-highlights-section .section-title {
        font-size: 2.2rem;
    }
    
    .menu-content::before,
    .menu-content::after {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .menu-image img {
        height: 50vh;
    }
    
    .menu-content {
        padding: 2.5rem 1.5rem;
    }
    .menu-content::before {
        top: 10px;
        left: 10px;
        width: 24px;
        height: 24px;
    }
    .menu-content::after {
        bottom: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
    }
    
    .menu-highlights-section .section-title {
        font-size: 1.8rem;
    }
    
    .menu-highlights-section .section-text {
        font-size: 1rem;
    }
}

/* Private Dining & Reservation Section */
.private-reservation-section {
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.reservation-background {
    width: 100%;
    background-size: cover;
    background-position: top center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 160px 0;
    min-height: 80vh;
}

.reservation-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.reservation-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
    animation: fadeIn 1.5s ease-out;
}

.reservation-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease-out both;
}

.reservation-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #CE874B;
    font-weight: 500;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.reservation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.private-reservation-section .btn {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 3px;
    background-color: #CE874B;
    color: #fff;
    font-weight: 600;
    border: 2px solid #CE874B;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.private-reservation-section .btn:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .reservation-background {
        padding: 120px 0;
    }
    
    .reservation-title {
        font-size: 2.8rem;
    }
    
    .reservation-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .reservation-background {
        padding: 80px 0;
    }
    
    .reservation-title {
        font-size: 2.2rem;
    }
    
    .reservation-subtitle {
        font-size: 1.1rem;
    }
    
    .reservation-text {
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .two-column-split {
        flex-direction: column;
        gap: 2rem;
    }
    
    .two-column-split.reversed {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .menu-card {
        padding: 2rem;
    }
    
    .interior-showcase {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}