* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Metal';
    src: url('assets/Metal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #d4af37;
    --text-light: #e2e8f0;
    --text-dark: #2d3748;
    --background-light: #f7fafc;
    --background-dark: #1a202c;
    --warm-white: #faf9f7;
    --sage-green: #8fbc8f;
    --earth-brown: #8b7355;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
}

/* Fade-in animations */
.fade-in {
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in > * {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    transform: translateY(0);
}

.fade-in.visible > * {
    opacity: 1;
}

.fade-in-stagger {
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-stagger > * {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-stagger.visible {
    transform: translateY(0);
}

.fade-in-stagger.visible > * {
    opacity: 1;
}

/* Section headers fade-in */
.section-header {
    transform: translateY(40px);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header > * {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.visible {
    transform: translateY(0);
}

.section-header.visible > * {
    opacity: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(45, 55, 72, 0.1);
    padding: 2rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1rem;
}

.navbar.scrolled .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-logo .logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}


.navbar.scrolled .nav-logo {
    flex-direction: row;
    gap: 1rem;
}

.nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled .nav-logo img {
    height: 50px;
}

.nav-logo h2 {
    font-family: 'Metal', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled .nav-logo h2 {
    font-size: 1.8rem;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #888;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled .logo-tagline {
    font-size: 0.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Desktop Language Switcher */
.language-switcher {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1001;
}

/* Responsive positioning to prevent overlap */
@media (max-width: 1400px) {
    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-left: 1rem;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-menu {
        justify-content: flex-end;
    }
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    display: none;
}

.language-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 55, 72, 0.1);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.language-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.language-link i {
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section with Rotating Background */
.hero {
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.scrolled-past-hero .hero {
    visibility: hidden;
    opacity: 0;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(45, 55, 72, 0.3), 
        rgba(74, 85, 104, 0.2));
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Content Overlay */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
    padding: 4rem;
}

.hero-text {
    text-align: left;
    color: white;
    max-width: 450px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.hero-btn:hover {
    background: #c19b2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Hero Text */
@media (max-width: 880px) {
    .hero-content {
        padding: 2rem;
    }

    .hero-text {
        padding: 1.5rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero-buttons {
        gap: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }
}

/* Page Content Structure for Multi-page Layout */
.page-content {
    min-height: calc(100vh - 150px);
}

/* Scroll-over section */
.scroll-over-section {
    position: relative;
    z-index: 10;
    background: var(--warm-white);
    padding: 4rem 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.large-section-title {
    font-size: 2.2rem;
}

.scroll-over-section .section-header h2,
.reviews-scroll-section .section-header h2,
.wisdoms-scroll-section .section-header h2 {
    font-size: 2.2rem;
}

@media (max-width: 880px) {
    .large-section-title,
    .scroll-over-section .section-header h2,
    .reviews-scroll-section .section-header h2,
    .wisdoms-scroll-section .section-header h2 {
        font-size: 1.8rem;
    }
}

.blurb-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.blurb-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.blurb-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.blurb-text {
    font-size: 1.0rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: normal !important;
    font-family: 'Inter', sans-serif;
}

.blurb-text p {
    margin-bottom: 1.5rem;
    font-style: normal !important;
}

.blurb-text p:last-child {
    margin-bottom: 0;
}

/* Responsive design for content layout */
@media (max-width: 880px) {
    .blurb-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .scroll-over-section {
        padding: 3rem 0;
        height: auto;
        min-height: 100vh;
    }
}

/* Reviews scroll-over section */
.reviews-scroll-section {
    position: relative;
    z-index: 20;
    background: var(--warm-white);
    padding: 4rem 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.reviews-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    min-height: 60vh;
}

.reviews-scroll-section .section-header {
    margin-bottom: 1.5rem;
    padding-top: 0;
}

/* Wisdoms scroll-over section */
.wisdoms-scroll-section {
    position: relative;
    z-index: 30;
    background: var(--background-light);
    padding: 4rem 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.wisdoms-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: -2.5rem auto 0;
    min-height: 60vh;
}

.wisdoms-scroll-section .section-header {
    margin-bottom: 1.5rem;
    padding-top: 0;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.7s forwards;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* 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%) rotate(45deg) translateY(0);
    }
    40% {
        transform: translateX(-50%) rotate(45deg) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) rotate(45deg) translateY(-5px);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 100;
    background: inherit;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 1.5rem;
}

.section-header p {
    font-size: 1.4rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--warm-white);
    position: relative;
    z-index: 200;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-trailer {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary-color);
    align-items: center;
    display: flex;
    flex-direction: column;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Menu Section */
.menu {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
    z-index: 201;
}

/* Only add margin-top when menu is on home page (after hero) */
.hero + .menu {
    margin-top: 100vh;
}

.menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Menu Sections */
.menu-section {
    margin-bottom: 4rem;
}

.menu-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.menu-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Menu Items Grid */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual Menu Item */
.menu-item {
    display: flex;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

/* Dish Image */
.dish-image {
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.dish-image img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Dish Details */
.dish-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.dish-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.2rem;
    white-space: nowrap;
}

.dish-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 880px) {
    .menu-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .dish-image {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }

    .dish-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dish-name {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .menu-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 0 1rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .dish-image img {
        width: 100px;
        height: 67px;
    }

    .menu-section-title {
        font-size: 1.8rem;
    }
}

/* Dish Detail Modal */
.dish-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dish-modal.show {
    opacity: 1;
}

.dish-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dish-modal.show .dish-modal-content {
    transform: scale(1);
}

.dish-modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dish-modal-close:hover,
.dish-modal-close:focus {
    color: var(--accent-color);
    background: white;
    transform: scale(1.1);
}

.dish-modal-body {
    display: flex;
    flex-direction: column;
}

.dish-modal-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.dish-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-modal-details {
    padding: 2rem;
}

.dish-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dish-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.dish-modal-header span {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.4rem;
    white-space: nowrap;
}

.dish-modal-details p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.dish-modal-ingredients h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.3rem;
    display: inline-block;
}

.dish-modal-ingredients ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.dish-modal-ingredients li {
    background: var(--background-light);
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Add click cursor to menu items */
.menu-item {
    cursor: pointer;
}

/* Image loading states for smooth transitions */
img {
    transition: opacity 0.3s ease;
}

img.loading {
    opacity: 0.7;
}

img.loaded {
    opacity: 1;
}

/* Lazy loading placeholder */
.image-placeholder {
    background: linear-gradient(45deg, #f0f0f0 25%, #e0e0e0 25%, #e0e0e0 50%, #f0f0f0 50%, #f0f0f0 75%, #e0e0e0 75%);
    background-size: 20px 20px;
    animation: loading-shimmer 1s linear infinite;
}

@keyframes loading-shimmer {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

/* Modal responsive design */
@media (max-width: 880px) {
    .dish-modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .dish-modal-details {
        padding: 1.5rem;
    }

    .dish-modal-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dish-modal-header h3 {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .dish-modal-ingredients ul {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery {
    min-height: 100vh;
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 202;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 15px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(170, 167, 157, 0.5);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Wisdoms Section */
.wisdoms {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--background-light);
    text-align: center;
    position: relative;
    z-index: 203;
}

.wisdom-content {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 2rem;
}

.quote-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    transition: opacity 0.3s ease;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.next-quote-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    transition: var(--transition);
    font-size: 1rem;
}

.next-quote-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.next-quote-btn i {
    transition: var(--transition);
}

.next-quote-btn:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.contact {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--text-light);
    position: relative;
    z-index: 204;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-color);
}

.map-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.map-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.map-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--warm-white);
    position: relative;
    z-index: 205;
}

.review-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0.5rem;
}

@media (max-width: 880px) {
    .review-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .review-platforms {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.review-platform {
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
}

.review-platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-platform i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.review-icon {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(58%) sepia(69%) saturate(2084%) hue-rotate(21deg) brightness(101%) contrast(85%);
}

.review-platform span {
    font-weight: 600;
    font-size: 1.8rem;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
}

.stars-empty {
    color: #ddd;
}

.stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-color);
    overflow: hidden;
    white-space: nowrap;
}

/* Star rating widths based on data-rating */
.stars[data-rating="5.0"] .stars-filled { width: 100%; }
.stars[data-rating="4.9"] .stars-filled { width: 98%; }
.stars[data-rating="4.8"] .stars-filled { width: 96%; }
.stars[data-rating="4.7"] .stars-filled { width: 94%; }
.stars[data-rating="4.6"] .stars-filled { width: 92%; }
.stars[data-rating="4.5"] .stars-filled { width: 90%; }
.stars[data-rating="4.4"] .stars-filled { width: 88%; }
.stars[data-rating="4.3"] .stars-filled { width: 86%; }
.stars[data-rating="4.2"] .stars-filled { width: 84%; }
.stars[data-rating="4.1"] .stars-filled { width: 82%; }
.stars[data-rating="4.0"] .stars-filled { width: 80%; }
.stars[data-rating="3.9"] .stars-filled { width: 78%; }
.stars[data-rating="3.8"] .stars-filled { width: 76%; }
.stars[data-rating="3.7"] .stars-filled { width: 74%; }
.stars[data-rating="3.6"] .stars-filled { width: 72%; }
.stars[data-rating="3.5"] .stars-filled { width: 70%; }

.review-platform .score {
    font-weight: 700;
    font-size: 1.4rem !important;
    color: var(--primary-color);
}

.customer-quote {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.customer-quote p {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    max-width: 280px;
}

.review-platform .customer-name {
    font-size: 1.20rem !important;
    color: var(--accent-color);
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 206;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 0 1 auto;
    text-align: left;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    font-style: normal !important;
    font-size: 0.9rem !important;
    line-height: 1.6;
    font-family: 'Inter', sans-serif !important;
    white-space: nowrap;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--text-light);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    color: #a0aec0;
}

/* Enhanced Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    margin: 5vh auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.gallery-modal-header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-close {
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.gallery-close:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.gallery-frame {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-frame::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    pointer-events: none;
    opacity: 0.6;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-slide-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#modal-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: opacity 0.4s ease;
}

.gallery-controls {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-nav {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-nav:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.gallery-nav:active {
    transform: translateY(0);
}

.gallery-counter {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Gallery Modal */
@media (max-width: 880px) {
    .gallery-modal-content {
        width: 95%;
        height: 85vh;
        margin: 7.5vh auto;
    }

    .gallery-frame {
        padding: 1rem;
    }

    .gallery-frame::before {
        top: 0.8rem;
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .gallery-controls {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .gallery-nav {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .gallery-nav span {
        display: none;
    }

    .gallery-counter {
        order: -1;
        width: 100%;
        text-align: center;
    }
}

/* Directions Page Styling */
.directions-page {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--warm-white);
}

.directions-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.maps-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.bcs-map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    flex-shrink: 0;
}

.bcs-map {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.interactive-map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    flex: 1;
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.directions-card,
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.directions-card h3,
.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.directions-card h3 i,
.contact-card h3 i {
    color: var(--accent-color);
}

.direction-item {
    margin-bottom: 1.5rem;
}

.direction-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.direction-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.contact-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card .contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-card .contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-card .contact-item p {
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
}

.contact-card .contact-item p:not(:last-child) {
    margin-bottom: 0.2rem;
}

.contact-card .contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card .contact-item a:hover {
    color: var(--accent-color);
}

.interactive-map-section {
    text-align: center;
}

.interactive-map-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.interactive-map-section .map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

/* About Page Styling */
.about-page {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--warm-white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.about-section {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    padding: 1rem;
}

.about-text p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.about-image {
    flex: 0 0 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Responsive Design for About Page */
@media (max-width: 880px) {
    .about-section,
    .about-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .about-image {
        flex: none;
        max-width: 100%;
    }

    .about-text {
        padding: 0;
    }

    .about-content {
        gap: 2.5rem;
    }
}

/* Responsive Design for Directions Page */
@media (max-width: 880px) {
    .maps-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .bcs-map-container,
    .interactive-map-container {
        height: 300px;
    }

    .directions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .directions-card,
    .contact-card {
        padding: 1.5rem;
    }

    .bcs-map {
        max-width: 100%;
    }

    .interactive-map-section .map-container iframe {
        height: 300px;
    }
}

/* Responsive Design */
@media (max-width: 880px) {
    .navbar {
        padding: 1.5rem 0;
    }
    
    .navbar.scrolled {
        padding: 1rem 0;
    }
    
    .nav-logo img {
        height: 60px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 40px;
    }
    
    .nav-logo h2 {
        font-size: 2rem;
    }
    
    .navbar.scrolled .nav-logo h2 {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .navbar.scrolled .logo-tagline {
        font-size: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .navbar.scrolled .nav-menu {
        top: 80px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hide desktop language switcher on mobile */
    .language-switcher {
        display: none;
    }

    /* Show mobile language switcher */
    .mobile-language-switcher {
        display: block;
        border-top: 1px solid rgba(45, 55, 72, 0.1);
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .mobile-language-switcher .nav-link {
        padding: 0.8rem 0;
        text-align: center;
        background: transparent;
    }

    .mobile-language-switcher .nav-link:hover {
        background: transparent;
        color: var(--accent-color);
    }


    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }


    .carousel-prev,
    .carousel-next {
        padding: 10px;
        font-size: 14px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}