/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.7;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}



/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header .container, .top-bar .container {
    max-width: 1600px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
}

.top-bar {
    background: #2a2a2a;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    will-change: transform, opacity;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.top-bar-content {
    display: flex;
    justify-content: start;
    gap: 20px;
    align-items: center;
}

.email {
    color: #ffd700;
    font-weight: 500;
}

.phone {
    color: #ffffff;
    font-weight: 400;
}

.main-header {
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.7;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav {
    justify-self: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffd700;
}

.reservation-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.reservation-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: end;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
.nav {
    justify-self: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-direction: row;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 16px;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffd700;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        z-index: 1000;
        transform: translateX(0);
        transition: transform 0.3s ease;
        border-right: 2px solid #ffd700;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav:not(.active) {
        transform: translateX(-100%);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 100px 40px 40px;
        height: 100%;
    }

    .nav-list li {
        margin-bottom: 20px;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        padding: 15px 0;
    }

    .nav-link.active::after {
        bottom: 5px;
    }
}

/* Mobile Menu Overlay */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    backdrop-filter: blur(5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 12px 28px;
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    animation: glow 3s ease-in-out infinite alternate;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-subtitle:hover::before {
    left: 100%;
}

.hero-main {
    display: block;
    font-size: 85px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: -2px;
    position: relative;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.hero-accent {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
    display: block;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
    cursor: default;
}

.hero-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.cta-button:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-subtitle {
    display: flex;
    font-size: 12px;
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 
        0 3px 12px rgba(255, 215, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.section-subtitle:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 20px rgba(255, 215, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.section-subtitle:hover::before {
    left: 100%;
}

/* About Section */
.about {
    background: #2a2a2a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
}

.feature-icon {
    font-size: 20px;
}

.about-image {
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 
        0 12px 30px rgba(255, 215, 0, 0.25),
        inset 0 3px 15px rgba(255, 255, 255, 0.2),
        inset 0 -3px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.6;
}

/* Unique Features */
.unique-features {
    background: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid #ffd700;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.15),
        inset 0 2px 10px rgba(255, 215, 0, 0.1),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.25),
        inset 0 3px 15px rgba(255, 215, 0, 0.2),
        inset 0 -3px 15px rgba(0, 0, 0, 0.4);
    border-color: #ffed4e;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.feature-description {
    font-size: 17px;
    color: #cccccc;
    line-height: 1.7;
    letter-spacing: 0.1px;
}

/* Menu Preview */
.menu-preview {
    background: #2a2a2a;
}

.menu-tabs, .gallery-tabs, .blog-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.menu-tab, .gallery-tab, .blog-tab {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #333;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-weight: 500;
}

.menu-tab:hover, .gallery-tab:hover, .blog-tab:hover,
.menu-tab.active, .gallery-tab.active, .blog-tab.active {
    border-color: #ffd700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.menu-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 3px solid #ffd700;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.15),
        inset 0 2px 10px rgba(255, 215, 0, 0.1),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.25),
        inset 0 3px 15px rgba(255, 215, 0, 0.2),
        inset 0 -3px 15px rgba(0, 0, 0, 0.4);
    border-color: #ffed4e;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-image {
    height: 200px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 4rem;
    border-radius: 15px;
    margin-bottom: 15px;
}

.dish-icon {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.dish-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 3px 15px rgba(255, 255, 255, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.menu-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.menu-name {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.menu-price {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.menu-description {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
    letter-spacing: 0.1px;
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

/* Experiences Section */
.experiences {
    background: #1a1a1a;
}

.experiences-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-top: 60px;
}

.experiences-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.experience-tab {
    padding: 18px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border-radius: 8px;
    font-size: 16px;
}

.experience-tab:hover,
.experience-tab.active {
    color: #ffd700;
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.experience-content {
    display: none;
}

.experience-content.active {
    display: block;
}

.experience-image {
    height: 200px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 500;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.25),
        inset 0 3px 15px rgba(255, 255, 255, 0.2),
        inset 0 -3px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.experience-icon {
    font-size: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 3px 15px rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    animation: experienceFloat 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.experience-icon:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 4px 20px rgba(255, 255, 255, 0.5);
}

@keyframes experienceFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

.experience-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.6;
}

.experience-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
}

.experience-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.experience-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-features li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.experience-features li:last-child {
    border-bottom: none;
}

.experience-features li:hover {
    color: #ffd700;
    padding-left: 10px;
}

/* Private Events */
.private-events {
    margin-top: 80px;
}

.private-events-image {
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 25px;
    position: relative;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 500;
    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.25),
        inset 0 3px 15px rgba(255, 255, 255, 0.2),
        inset 0 -3px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffd700;
    overflow: hidden;
}

.private-events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.private-events-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.6;
}

.private-events-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #ffffff;
    z-index: 2;
}

.private-events-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.private-events-price {
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
}

.private-events-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.private-events-features {
    list-style: none;
}

.private-events-features li {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Reservation Section */
.reservation {
    background: #2a2a2a;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 80px 0 30px;
    border-top: 2px solid #ffd700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 4px rgba(255, 255, 255, 0.3),
        inset 0 -1px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.footer-logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.7;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-contact p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-newsletter-text {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-button {
    padding: 10px 20px;
    background: #ffd700;
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.newsletter-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: #888;
    font-size: 14px;
}

.age-restriction {
    color: #ffd700 !important;
    font-weight: 700;
    font-size: 16px;
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.popup-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.5;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.popup-button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.popup-button.confirm {
    background: #ffd700;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.popup-button.confirm:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.popup-button.decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333;
}

.popup-button.decline:hover {
    border-color: #ffd700;
    color: #ffd700;
}

/* Page Specific Styles */
.page-header {
    padding: 180px 0 60px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
}

/* About Page Styles */
.our-story {
    background: #1a1a1a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.story-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    height: 400px;
    background: linear-gradient(135deg, #e69a28, #ff8c00);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.our-mission {
    background: #2a2a2a;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mission-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.mission-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

.our-team {
    background: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Team Member Icons */
.team-member-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffd700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.7;
}

.team-member-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.4),
        inset 0 3px 12px rgba(255, 255, 255, 0.4),
        inset 0 -3px 12px rgba(0, 0, 0, 0.2);
    border-color: #ffed4e;
}

/* Specific team member icons */
.team-member-icon.chef::before {
    content: '👨‍🍳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    z-index: 2;
}

.team-member-icon.manager::before {
    content: '👨‍💼';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    z-index: 2;
}

.team-member-icon.sommelier::before {
    content: '🍷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    z-index: 2;
}

.team-member-icon.waiter::before {
    content: '🤵';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    z-index: 2;
}

.team-member-icon.chef {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
}

.team-member-icon.manager {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.team-member-icon.sommelier {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.team-member-icon.waiter {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.team-member {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.member-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e69a28, #ff8c00);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(230, 154, 40, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid #e69a28;
    transition: all 0.3s ease;
}

.member-image:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(230, 154, 40, 0.4),
        inset 0 3px 12px rgba(255, 255, 255, 0.3),
        inset 0 -3px 12px rgba(0, 0, 0, 0.2);
    border-color: #ff8c00;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.6;
}

/* Avatar icons for team members */
.member-image.chef::after {
    content: '👨‍🍳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 2;
}

.member-image.manager::after {
    content: '👨‍💼';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 2;
}

.member-image.sommelier::after {
    content: '🍷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 2;
}

.member-image.waiter::after {
    content: '🤵';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 2;
}

.member-image.chef {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-color: #ff6b35;
}

.member-image.manager {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-color: #4ecdc4;
}

.member-image.sommelier {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-color: #8b5cf6;
}

.member-image.waiter {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-color: #06b6d4;
}

/* Hover animations for member images */
.member-image:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease;
}

.member-image.chef:hover {
    box-shadow: 
        0 12px 35px rgba(255, 107, 53, 0.4),
        inset 0 3px 12px rgba(255, 255, 255, 0.3),
        inset 0 -3px 12px rgba(0, 0, 0, 0.2);
}

.member-image.manager:hover {
    box-shadow: 
        0 12px 35px rgba(78, 205, 196, 0.4),
        inset 0 3px 12px rgba(255, 255, 255, 0.3),
        inset 0 -3px 12px rgba(0, 0, 0, 0.2);
}

.member-image.sommelier:hover {
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.4),
        inset 0 3px 12px rgba(255, 255, 255, 0.3),
        inset 0 -3px 12px rgba(0, 0, 0, 0.2);
}

.member-image.waiter:hover {
    box-shadow: 
        0 12px 35px rgba(6, 182, 212, 0.4),
        inset 0 3px 12px rgba(255, 255, 255, 0.3),
        inset 0 -3px 12px rgba(0, 0, 0, 0.2);
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.member-position {
    font-size: 16px;
    color: #e69a28;
    margin-bottom: 15px;
}

.member-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.awards {
    background: #2a2a2a;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.award-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.award-year {
    font-size: 24px;
    font-weight: 700;
    color: #e69a28;
    margin-bottom: 15px;
}

.award-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.award-description {
    font-size: 14px;
    color: #cccccc;
}

.values {
    background: #1a1a1a;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.values-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.values-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #e69a28;
    margin-bottom: 15px;
}

.values-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.7;
}

.values-image {
    height: 400px;
    background: linear-gradient(135deg, #e69a28, #ff8c00);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Menu Page Styles */
.menu-categories {
    background: #2a2a2a;
    padding: 40px 0;
}

.menu-content {
    background: #1a1a1a;
}

.menu-section {
    margin-bottom: 60px;
}

.menu-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #e69a28;
    margin-bottom: 30px;
    text-align: center;
}

/* Gallery Page Styles */
.gallery-categories {
    background: #2a2a2a;
    padding: 40px 0;
}

.gallery-grid {
    background: #1a1a1a;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    height: 250px;
    background: linear-gradient(135deg, #e69a28, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 500;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: #ffffff;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-description {
    font-size: 14px;
    color: #cccccc;
}

/* Blog Page Styles */
.blog-categories {
    background: #2a2a2a;
    padding: 40px 0;
}

.featured-article {
    background: #1a1a1a;
    padding: 60px 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image {
    height: 300px;
    background: linear-gradient(135deg, #e69a28, #ff8c00);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 500;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.article-category {
    display: inline-block;
    background: #e69a28;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.featured-excerpt {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.read-more {
    color: #e69a28;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff8c00;
}

.blog-grid {
    background: #2a2a2a;
}

.blog-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #e69a28, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 48px;
    line-height: 1;
}

.blog-content-text {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.blog-excerpt {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter-section {
    background: #1a1a1a;
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: #e69a28;
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form-large {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form-large input {
    flex: 1;
    padding: 18px 25px;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form-large input::placeholder {
    color: #888;
}

.newsletter-button-large {
    padding: 18px 35px;
    background: #ffd700;
    border: none;
    border-radius: 12px;
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.newsletter-button-large:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Contact Page Styles */
.contact-info {
    background: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 24px;
    margin-top: 5px;
}

.contact-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.5;
}

.contact-map {
    height: 400px;
    background: linear-gradient(135deg, #e69a28, #ff8c00);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 500;
}

.map-placeholder {
    text-align: center;
}

.contact-form-section {
    background: #2a2a2a;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.contact-services {
    background: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-link {
    color: #e69a28;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ff8c00;
}

.faq-section {
    background: #2a2a2a;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #e69a28;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

/* Reservation Page Styles */
.reservation-form-section {
    background: #1a1a1a;
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reservation-info .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.reservation-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.7;
}

.reservation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.reservation-features .feature-item {
    margin-bottom: 15px;
}

.private-events-section {
    background: #2a2a2a;
}

.private-events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.private-events-text .private-events-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #e69a28;
    margin-bottom: 20px;
}

.private-events-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.7;
}

.private-events-features {
    list-style: none;
    margin-bottom: 30px;
}

.private-events-features li {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 16px;
}



.reservation-info {
    background: #1a1a1a;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.info-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* Reviews Page Styles */
.overall-rating {
    background: #2a2a2a;
    padding: 60px 0;
}

.rating-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.rating-stats {
    text-align: center;
}

.rating-number {
    font-size: 72px;
    font-weight: 700;
    color: #e69a28;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 24px;
    color: #e69a28;
    margin-bottom: 10px;
}

.rating-count {
    font-size: 16px;
    color: #cccccc;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-label {
    font-size: 14px;
    color: #ffffff;
    min-width: 80px;
}

.rating-progress {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #e69a28;
    transition: width 0.3s ease;
}

.rating-percentage {
    font-size: 14px;
    color: #cccccc;
    min-width: 30px;
    text-align: right;
}

.reviews-grid {
    background: #1a1a1a;
}

.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-item {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-item.featured {
    border-color: #e69a28;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e69a28, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.review-date {
    font-size: 14px;
    color: #888;
}

.review-rating {
    font-size: 18px;
    color: #e69a28;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.write-review {
    background: #2a2a2a;
}

.write-review-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    text-align: center;
    margin: 30px auto;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.rating-input {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input label:hover,
.rating-input input:checked + label {
    color: #e69a28;
}

/* Privacy Policy and Terms Pages */
.privacy-content,
.cookies-content,
.terms-content {
    background: #1a1a1a;
}

.privacy-text,
.cookies-text,
.terms-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-intro,
.cookies-intro,
.terms-intro {
    font-size: 16px;
    color: #e69a28;
    margin-bottom: 30px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
    border-left: 4px solid #e69a28;
}

.privacy-text h2,
.cookies-text h2,
.terms-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #e69a28;
    margin: 40px 0 20px 0;
}

.privacy-text h3,
.cookies-text h3,
.terms-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0 15px 0;
}

.privacy-text p,
.cookies-text p,
.terms-text p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
}

.privacy-text ul,
.cookies-text ul,
.terms-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-text li,
.cookies-text li,
.terms-text li {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
}

.privacy-text a,
.cookies-text a,
.terms-text a {
    color: #e69a28;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-text a:hover,
.cookies-text a:hover,
.terms-text a:hover {
    color: #ff8c00;
}

.privacy-footer,
.cookies-footer,
.terms-footer {
    margin-top: 40px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
    border-left: 4px solid #e69a28;
}

.privacy-footer p,
.cookies-footer p,
.terms-footer p {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        grid-template-columns: 1fr auto;
        gap: 15px;
    }

    .nav:not(.active) {
        display: none;
    }

    .header-actions {
        justify-self: end;
    }

    .reservation-btn {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-main {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .hero-accent {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-features {
        gap: 15px;
        margin-top: 20px;
    }

    .hero-feature {
        font-size: 14px;
        padding: 8px 16px;
    }

    .about-content,
    .story-content,
    .values-content,
    .experiences-content,
    .private-events-content,
    .reservation-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .popup-content {
        margin: 10px;
        padding: 30px 20px;
    }

    .popup-buttons {
        flex-direction: column;
    }

    .page-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .mission-grid,
    .team-grid,
    .awards-grid,
    .menu-grid,
    .gallery-content,
    .blog-content,
    .reviews-content,
    .services-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .menu-tabs,
    .gallery-tabs,
    .blog-tabs {
        flex-direction: column;
        align-items: center;
    }

    .rating-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form-large {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-main {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-accent {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-feature {
        font-size: 13px;
        padding: 6px 12px;
    }

    .page-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card,
    .mission-card,
    .team-member,
    .award-item,
    .menu-item,
    .gallery-item,
    .blog-item,
    .review-item {
        padding: 20px;
    }

    .dish-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }

    .experience-icon {
        font-size: 3.5rem;
        width: 100px;
        height: 100px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Menu item animations */
.menu-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.menu-item.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.menu-item.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Menu section animations */
.menu-section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.menu-section.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.menu-section.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #333;
    border-radius: 50%;
    border-top-color: #e69a28;
    animation: spin 1s ease-in-out infinite;
}

@keyframes glow {
    0% {
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.25),
            inset 0 2px 4px rgba(255, 255, 255, 0.15);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.35),
            inset 0 2px 4px rgba(255, 255, 255, 0.2);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.7),
            0 0 20px rgba(255, 215, 0, 0.3);
    }
    100% {
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.7),
            0 0 30px rgba(255, 215, 0, 0.5);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
    width: fit-content;
    margin: 0 auto;
}

/* Message positioning for reservation form */
.reservation .message {
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #28a745;
}

.message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.message.info {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid #17a2b8;
    color: #17a2b8;
}
