/* ========================================
   SUSHI BAR - PREMIUM RESTAURANT WEBSITE
   Inspired by modern Japanese luxury design
   ======================================== */

/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    /* Color Palette */
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-darker: #141414;
    --color-white: #ffffff;
    --color-beige: #f5f0e8;
    --color-gold: #d4af37;
    --color-gold-light: #e8c871;
    --color-gold-dark: #b8941f;
    --color-gray: #666666;
    --color-gray-light: #999999;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Transitions */
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
    --shadow-gold-sm: 0 4px 16px rgba(212, 175, 55, 0.2);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-beige);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-white);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-beige) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: 0 auto 4rem;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    overflow: hidden;
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar {
    height: 64px;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    height: 48px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    filter: brightness(0) invert(1);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-beige);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-link:hover {
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

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

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-shrink: 0;
}

/* Hide mobile language selector on desktop */
.nav-lang-mobile {
    display: none;
}

.lang-selector-mobile {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.lang-btn {
    background: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    font-family: var(--font-body);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.lang-btn:hover::before,
.lang-btn.active::before {
    left: 0;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--color-black);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-gold-sm);
    transform: translateY(-2px);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-beige);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero.JPG') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--color-darker), transparent);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8));
    animation: fadeIn 0.8s ease-out;
}

.hero-logo {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    height: 150px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-beige);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero:hover {
    color: var(--color-black);
    border-color: var(--color-gold-light);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-reservation {
    margin-top: 1.5rem;
    margin-left: 0;
    background: var(--color-gold);
    color: var(--color-black);
    display: inline-block;
}

.btn-reservation::before {
    background: var(--color-gold-light);
}

.btn-reservation:hover {
    background: var(--color-gold-light);
    color: var(--color-black);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeIn 1s ease-out 1.2s both;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--color-gold);
    animation: scroll 2s infinite 1.5s;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-black) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

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

.about-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.about-image:hover::after {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.about-image:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1);
}

.about-content {
    padding: 2rem;
}

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-beige);
    text-align: justify;
    opacity: 0.95;
    transition: opacity 0.4s ease;
}

.about-content:hover .about-text {
    opacity: 1;
}

/* ========================================
   DISHES SECTION (CAROUSEL)
   ======================================== */

.dishes {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-darker) 50%, var(--color-black) 100%);
    position: relative;
}

.dishes .section-title,
.pricing .section-title,
.hours .section-title,
.location .section-title {
    position: relative;
}

.dishes .section-title::after,
.pricing .section-title::after,
.hours .section-title::after,
.location .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dishes .section-title.aos-animate::after,
.pricing .section-title.aos-animate::after,
.hours .section-title.aos-animate::after,
.location .section-title.aos-animate::after {
    width: 60px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 6rem;
}

.carousel-container:last-of-type {
    margin-bottom: 0;
}

.carousel {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.carousel:hover {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.carousel:hover .carousel-slide::after {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.95);
}

.carousel:hover .carousel-slide img {
    filter: brightness(1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.95);
    color: var(--color-black);
    border: none;
    width: 55px;
    height: 55px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-black) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-darker) 100%);
    padding: 3rem 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-slow);
    text-align: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-black) 100%);
}

.pricing-category {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-label {
    font-size: 1rem;
    color: var(--color-beige);
    text-align: left;
    flex: 1;
}

.pricing-price {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 600;
    font-family: var(--font-heading);
}

/* ========================================
   HOURS SECTION
   ======================================== */

.hours {
    padding: 8rem 0;
    background: var(--color-black);
}

.hours-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-black) 100%);
    padding: 4rem 3rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-slow);
}

.hours-content:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.hours-day {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hours-times {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hours-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hours-label {
    font-size: 1.3rem;
    color: var(--color-beige);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hours-value {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 600;
}

.hours-note {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    font-style: italic;
    margin-top: 2rem;
}

/* ========================================
   LOCATION SECTION
   ======================================== */

.location {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-darker) 100%);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-item h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--color-beige);
    line-height: 1.8;
}

.location-map {
    border: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-slow);
}

.location-map:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.location-map iframe {
    width: 100%;
    height: 450px;
    filter: grayscale(20%) brightness(90%);
    transition: filter 0.6s ease;
}

.location-map:hover iframe {
    filter: grayscale(0%) brightness(100%);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-col h4 {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
    color: var(--color-beige);
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col a {
    position: relative;
    display: inline-block;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-col a:hover::after {
    width: 100%;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

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

.footer-lang .lang-btn {
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.footer-bottom a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scroll {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

/* AOS-like effects */
[data-aos] {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Fade Up Animation */
[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

/* Fade Right Animation */
[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

/* Fade Left Animation */
[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

/* Fade In Animation */
[data-aos="fade-in"].aos-animate {
    transform: scale(1);
}

[data-aos="fade-in"] {
    transform: scale(0.95);
}

/* Zoom In Animation */
[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

/* Slide Up Animation */
[data-aos="slide-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="slide-up"] {
    transform: translateY(80px);
}

/* Animation Delays */
[data-aos][data-aos-delay="100"].aos-animate {
    transition-delay: 0.1s;
}

[data-aos][data-aos-delay="200"].aos-animate {
    transition-delay: 0.2s;
}

[data-aos][data-aos-delay="300"].aos-animate {
    transition-delay: 0.3s;
}

[data-aos][data-aos-delay="400"].aos-animate {
    transition-delay: 0.4s;
}

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

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .about,
    .dishes,
    .pricing,
    .hours,
    .location {
        padding: 6rem 0;
    }

    .about-grid,
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding: 1rem 0;
    }

    .about-image img {
        height: 400px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .divider {
        margin: 0 auto 3rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
    }

    .nav-logo img {
        height: 35px;
        max-width: 100px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }

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

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    /* Hide desktop language selector on mobile */
    .lang-selector-desktop {
        display: none;
    }

    /* Show mobile language selector */
    .nav-lang-mobile {
        display: block;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .lang-selector-mobile {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .nav-menu {
        padding: 2rem 1rem;
        box-sizing: border-box;
    }

    .nav-menu .lang-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    /* Hero */
    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    .about,
    .dishes,
    .pricing,
    .hours,
    .location {
        padding: 5rem 0;
    }

    .about-content {
        padding: 1rem 0;
    }

    .about-text {
        font-size: 1rem;
    }

    .divider {
        margin: 0 auto 2.5rem;
    }

    /* Carousel */
    .carousel-slide img {
        height: 400px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    /* Hours */
    .hours-content {
        padding: 3rem 2rem;
    }

    .hours-day {
        font-size: 1.8rem;
    }

    .hours-time {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Location */
    .location-info {
        gap: 2rem;
    }

    .info-item h3 {
        font-size: 1.3rem;
    }

    .info-item p {
        font-size: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0;
    }

    .nav-container {
        padding: 0 8px;
        gap: 8px;
        width: 100%;
    }

    .nav-logo img {
        height: 28px;
        max-width: 90px;
    }

    .menu-toggle {
        padding: 4px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    .about,
    .dishes,
    .pricing,
    .hours,
    .location {
        padding: 4rem 0;
    }

    .about-content {
        padding: 0;
    }

    .about-text {
        text-align: left;
    }

    .divider {
        margin: 0 auto 2rem;
    }

    .carousel-slide img {
        height: 300px;
    }

    .pricing-card {
        padding: 2rem 1rem;
    }

    .pricing-category {
        font-size: 1.5rem;
    }

    .pricing-label {
        font-size: 0.9rem;
    }

    .pricing-price {
        font-size: 1.1rem;
    }

    .hours-content {
        padding: 2rem 1.5rem;
    }

    .location-info {
        gap: 1.5rem;
    }

    .info-item h3 {
        font-size: 1.2rem;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    .location-map iframe {
        height: 300px;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}
