/* CSS Variables & Reset */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-primary: #f0f0f0;
    --text-secondary: #aaaaaa;
    --accent-gold: #d4af37;
    --accent-emerald: #50c878;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--accent-gold);
}

.emerald-text {
    color: var(--accent-emerald);
}

.mt-2 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    margin: 10px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

/* Language Switcher */
.lang-switch {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1000;
}

#lang-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 5px 10px;
    font-family: var(--font-body);
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

#lang-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../img/hero-bg.png') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 2rem;
}

.separator {
    width: 100px;
    height: 2px;
    background-color: var(--accent-emerald);
    margin: 0 auto 2rem;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.established {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Category Image */
/* Category Image */
.category-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    /* Centers the inline-block image */
}

.category-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    /* Increased height to show more content */
    object-fit: contain;
    /* Ensures the whole image is visible */
    display: inline-block;
    /* Allows centering via text-align */
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Cocktails */
.section-dark {
    background-color: var(--bg-dark);
}

.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-card);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 8px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-emerald);
    margin-bottom: 20px;
}

.cocktail-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.5rem;
}

.card .ingredients {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Shisha Section */
.section-image-bg {
    background: url('../img/shisha-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: #fff;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.content-relative {
    position: relative;
    z-index: 2;
}

.shisha-content {
    max-width: 800px;
    margin: 0 auto;
}

.shisha-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    line-height: 1.4;
}

/* Natural Section */
.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.feature-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-emerald);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--accent-gold);
    margin-top: 5px;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    margin-right: 15px;
    color: #fff;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

.footer-map iframe {
    border-radius: 8px;
    filter: grayscale(100%) invert(92%) contrast(83%);
    /* Dark map style attempt */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #111;
    color: #555;
    font-size: 0.8rem;
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 5px 15px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

/* --- Menu Section Dynamic Styles --- */
.section-menu {
    background-color: #0f0f0f;
    padding-bottom: 20px;
}

.menu-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 2rem;
    color: var(--accent-gold);
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px 20px;
}

/* For list-style categories like Beers/Wines where items are simple */
.menu-grid.simple-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.menu-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--accent-gold);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
    border-bottom: 1px dashed #333;
    padding-bottom: 5px;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.item-price {
    color: var(--accent-emerald);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 10px;
}

.item-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
}

/* Category Price Subtitle */
.category-price-subtitle {
    font-size: 1.2rem;
    color: var(--accent-emerald);
    margin-top: -15px;
    margin-bottom: 20px;
    display: block;
    font-weight: bold;
}

/* Subcategories */
.subcategory-title {
    grid-column: 1 / -1;
    color: #fff;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

/* --- Accordion / Reduced Menu Styles --- */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-header:hover {
    border-bottom-color: var(--accent-gold);
}

.category-header:hover .category-title {
    color: #fff;
}

.category-title {
    /* Overriding previous style to remove bottom border as header handles it */
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    flex: 1;
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.menu-category.active .toggle-icon {
    transform: rotate(180deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.menu-category.active .category-content {
    max-height: 2000px;
    /* Arbitrary large height to allow content */
    opacity: 1;
    margin-bottom: 40px;
    /* Space after expanded content */
}

/* Shisha Updates */
.quote-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.shisha-desc {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.shisha-features {
    font-size: 1rem;
    color: var(--accent-emerald);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Welcome Section --- */
.section-welcome {
    background-color: #111;
    /* Minimalist dark */
    padding: 100px 0;
}

.welcome-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.welcome-image {
    flex: 1;
    min-width: 300px;
}

.welcome-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #222;
}

.welcome-text {
    flex: 1;
    min-width: 300px;
}

.welcome-title {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    line-height: 1.2;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.welcome-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-emerald);
    margin-bottom: 25px;
}

.welcome-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-welcome {
        padding: 60px 0;
    }

    .welcome-grid {
        flex-direction: column;
        gap: 30px;
    }

    .welcome-title {
        font-size: 1.8rem;
    }
}