:root {
    --primary-gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e4b8;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --accent: #8b7355;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    background-color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--primary-gold);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-brand-text h1 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.nav-brand-text p {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hookah-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 2.2rem;
    color: var(--primary-gold);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--light-gold);
    letter-spacing: 1.5px;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-offer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    border: 2px solid var(--primary-gold);
    padding: 1rem;
    margin: 1rem auto;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hero-offer h3 {
    color: var(--primary-gold);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
    margin: 0.5rem 0;
}

.offer-note {
    color: var(--light-gold);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--black);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--primary-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.section-title {
    font-size: 3rem;
    color: var(--primary-gold);
    text-align: center;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--light-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

/* Gallery Layouts */
.shisha-gallery,
.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.special-banner {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--black);
    text-align: center;
    padding: 1.5rem;
    margin: 2rem 0 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.special-banner h3 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.special-banner p {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.menu-category:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.category-title {
    color: var(--primary-gold);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 1rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.menu-item.special {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 3px solid var(--primary-gold);
}

.item-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.item-desc {
    color: var(--light-gold);
    font-size: 0.9rem;
    font-style: italic;
}

.item-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-item.special .item-name {
    display: block;
    margin-bottom: 0.3rem;
}

.menu-item.special .item-desc {
    display: block;
}

.age-restriction {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    border-radius: 10px;
}

.age-restriction p {
    color: #ff4444;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Food Menu Section */
.food-section {
    padding: 6rem 0;
    background: var(--black);
}

.food-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.food-category {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.food-category:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.food-category.special-platter {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--medium-gray) 100%);
    border: 2px solid var(--primary-gold);
}

.food-category-title {
    color: var(--primary-gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 1rem;
    font-weight: 700;
}

.food-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.food-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.food-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.food-item.platter {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
}

.food-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.food-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.food-desc {
    color: var(--light-gold);
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.food-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    padding-top: 0.2rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.food-item.platter .food-name {
    font-size: 1.3rem;
    color: var(--primary-gold);
}

.food-item.platter .food-price {
    font-size: 1.5rem;
}

/* Sides Grid Layout */
.sides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.sides-grid .food-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
}

.sides-grid .food-name {
    font-size: 0.85rem;
}

.sides-grid .food-price {
    font-size: 0.8rem;
}

/* Allergy Notice */
.allergy-notice {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid #ffa500;
    border-radius: 10px;
}

.allergy-notice p {
    color: #ffa500;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--black);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-text h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.feature p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.info-item h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--light-gray);
    font-size: 1.05rem;
    margin: 0.5rem 0;
}

.reservation {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid var(--primary-gold);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reservation h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.reservation p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid var(--primary-gold);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--light-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-website {
    color: var(--primary-gold) !important;
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: #ff4444;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.3rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hookah-icon {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }hero-layout {
        flex-direction: column;
        padding: 0 1rem;
    }

    .hero-image {
        max-width: 100%;
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .hero-featured-image {
        max-height: 400px;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-brand-text h1 {
        font-size: 1.3rem;
    }

    .

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .food-menu-grid {
        grid-template-columns: 1fr;
    }

    .food-category.special-platter {
        grid-column: span 1;
    }

    .sides-grid {
        grid-template-columns: 1fr;
    }
    .food-menu-grid {
        grid-template-columns: 1fr;
    }

    .food-category.special-platter {
        grid-column: span 1;
    }

    .sides-grid {
        grid-template-columns: 1fr;
    }

    .shisha-gallery,
    .food-gallery {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    .offer-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-offer {
        padding: 1.5rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .item-name {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-category,
.feature,
.info-item {
    animation: fadeInUp 0.6s ease-out;
}
