/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    /* Ocean & Sunset Color Palette */
    --primary-gradient: linear-gradient(135deg, #2E86AB 0%, #A23B72 100%);
    --secondary-gradient: linear-gradient(135deg, #F18F01 0%, #C73E1D 100%);
    --gold-gradient: linear-gradient(135deg, #FFB347 0%, #FF6B6B 100%);
    --dark-gradient: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    --premium-gold: #FFB347;
    --premium-purple: #A23B72;
    --premium-pink: #FF6B6B;
    --dark-bg: #0f1419;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-light: #ffffff;
    --text-dark: #1a1f3a;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-neomorphic: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--dark-gradient);
    position: relative;
    font-weight: 400;
    letter-spacing: -0.01em;
    width: 100%;
    max-width: 100vw;
}

/* Animated Background Shapes */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(46, 134, 171, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 179, 71, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(162, 59, 114, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
    overflow: hidden;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Cookie Notice - Glassmorphism */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}

.cookie-btn {
    background: var(--gold-gradient);
    color: var(--text-light);
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Header - Glassmorphism Sticky */
.main-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.main-header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    text-transform: uppercase;
}

.logo:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
    padding: 5px 0;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--premium-gold);
    transform: translateY(-2px);
}

.main-nav a:hover::before {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--premium-gold);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--premium-gold);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: var(--dark-gradient);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.fullscreen-menu a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    display: block;
    padding: 15px 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.fullscreen-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu a:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu a:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-menu a:nth-child(3) { transition-delay: 0.3s; }
.fullscreen-menu a:nth-child(4) { transition-delay: 0.4s; }
.fullscreen-menu a:nth-child(5) { transition-delay: 0.5s; }
.fullscreen-menu a:nth-child(6) { transition-delay: 0.6s; }
.fullscreen-menu a:nth-child(7) { transition-delay: 0.7s; }
.fullscreen-menu a:nth-child(8) { transition-delay: 0.8s; }

.fullscreen-menu a:hover {
    transform: scale(1.1);
}

/* Hero Section - Premium with Parallax */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.7) 0%, rgba(162, 59, 114, 0.7) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.btn {
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--premium-gold);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 45px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--premium-gold);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--premium-gold);
    width: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* Welcome Section - Neomorphism Cards */
.welcome-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.welcome-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s;
}

.welcome-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.welcome-content h2 {
    font-size: 4rem;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.welcome-content .lead {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.8;
}

.welcome-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Styles */
.section-title {
    font-size: 4.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    margin-bottom: 60px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Section - Glassmorphism Accordion */
.menu-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.menu-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.accordion-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 25px 35px;
    background: var(--primary-gradient);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.accordion-header:hover {
    background: var(--secondary-gradient);
}

.accordion-icon {
    font-size: 2rem;
    transition: transform 0.4s;
    font-weight: 300;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.menu-items {
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
}

.menu-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.menu-item-header h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* About Section - Asymmetric Grid with Cascade */
.about-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
    position: relative;
}

.about-image {
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s;
    opacity: 0;
    transform: translateX(-50px);
}

.about-image img.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.about-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s 0.2s;
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-content h2 {
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:nth-child(1) { transition-delay: 0.1s; }
.feature:nth-child(2) { transition-delay: 0.2s; }
.feature:nth-child(3) { transition-delay: 0.3s; }

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
}

.feature p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Gallery Section - Interactive Cards */
.gallery-section {
    padding: 120px 0;
    background: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.5s;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    border-color: var(--premium-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s, filter 0.3s;
    filter: brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.2);
    filter: brightness(1);
}

/* Hours Section - Neomorphic Cards */
.hours-section {
    padding: 120px 0;
    background: transparent;
}

.hours-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s;
}

.hours-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hours-content h2 {
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-weight: 700;
}

.hours-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 35px;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.hours-day:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--premium-gold);
}

.day {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

.time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.hours-note {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 1.05rem;
}

/* Location Section */
.location-section {
    padding: 120px 0;
    background: transparent;
}

.location-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
}

.location-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s;
}

.location-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.location-info h3 {
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.location-details {
    margin-bottom: 30px;
}

.location-details p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.location-details a {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s;
}

.location-details a:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.location-note {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 1.05rem;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s 0.2s;
}

.map-placeholder.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Reviews Section - Floating Cards */
.reviews-section {
    padding: 120px 0;
    background: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(50px);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:nth-child(1) { transition-delay: 0.1s; }
.review-card:nth-child(2) { transition-delay: 0.2s; }
.review-card:nth-child(3) { transition-delay: 0.3s; }

.review-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.4);
    border-color: var(--premium-gold);
    background: rgba(255, 255, 255, 0.1);
}

.review-stars {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s;
}

.contact-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-info h3 {
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-size: 1.1rem;
}

.contact-item a {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s 0.2s;
}

.contact-form-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-light);
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--premium-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.main-footer {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.footer-section p {
    line-height: 2;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 150px 0 100px;
    background: transparent;
    min-height: 100vh;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.policy-content h1 {
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.policy-content h2 {
    font-size: 2.2rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-content h3 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.policy-content ul {
    margin-left: 40px;
    margin-bottom: 25px;
}

.policy-content li {
    margin-bottom: 15px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.policy-content a {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s;
}

.policy-content a:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 35px;
    font-size: 1rem;
}

/* Thanks Page */
.thanks-page {
    padding: 150px 0 100px;
    background: transparent;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 70px 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 2;
}

.thanks-content a {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
        z-index: 10001;
        position: relative;
    }

    .header-content {
        padding: 15px 0;
    }

    .logo {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .welcome-content h2,
    .section-title {
        font-size: 2.5rem;
    }

    .fullscreen-menu a {
        font-size: 2rem;
    }

    .welcome-section,
    .menu-section,
    .about-section,
    .gallery-section,
    .hours-section,
    .location-section,
    .reviews-section,
    .contact-section {
        padding: 80px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Fix horizontal scroll issues */
    .menu-item:hover {
        margin: 0;
    }

    .about-image img,
    .about-content,
    .location-info,
    .contact-info,
    .contact-form-wrapper {
        transform: translateX(0) !important;
    }

    .slide-image {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 35px;
        min-width: 50px;
        min-height: 50px;
    }

    .welcome-content,
    .policy-content,
    .thanks-content {
        padding: 40px 20px;
    }

    .fullscreen-menu a {
        font-size: 1.5rem;
        padding: 10px 0;
    }

    .burger-menu {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }

    .burger-menu span {
        width: 25px;
    }

    .logo {
        font-size: 18px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 16px;
        min-height: 44px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-content,
    .contact-info,
    .contact-form-wrapper,
    .location-info {
        padding: 30px 20px;
    }

    .menu-items {
        padding: 25px 20px;
    }

    .accordion-header {
        padding: 20px 25px;
        font-size: 1.3rem;
    }

    .hours-content {
        padding: 40px 25px;
    }

    .hours-day {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .review-card {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }

    /* Fix horizontal scroll issues on mobile */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .welcome-content,
    .policy-content,
    .thanks-content,
    .about-content,
    .contact-info,
    .contact-form-wrapper,
    .location-info,
    .hours-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-image img,
    .about-content,
    .location-info,
    .contact-info,
    .contact-form-wrapper {
        transform: translateX(0) !important;
    }

    .menu-item:hover {
        margin: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .slide-image {
        width: 100%;
        max-width: 100%;
        background-size: cover;
        background-position: center;
    }

    .hero-section,
    .welcome-section,
    .menu-section,
    .about-section,
    .gallery-section,
    .hours-section,
    .location-section,
    .reviews-section,
    .contact-section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        width: 100%;
        max-width: 100%;
    }
}
