/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Premium Dark Palette */
    --color-primary: #FF66A1;
    /* Vivid Pink (Accents) */
    --color-secondary: #FFD700;
    /* Gold (Premium Text/Icons) */
    --color-accent: #2ECC71;
    /* Jungle Green */

    --color-bg: #000000;
    /* Deep Black */
    --color-surface: #121212;
    /* Dark Grey for cards */
    --color-surface-translucent: rgba(18, 18, 18, 0.9);

    --color-text-main: #FFFFFF;
    --color-text-muted: #B0BEC5;
    --color-text-dark: #000000;

    --font-heading: 'Pacifico', cursive;
    --font-body: 'Outfit', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    /* Floral Mandala Background (Darkened) */
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('hero_mandala_v2.jpg');
    background-size: 500px;
    /* Repeating pattern size */
    background-attachment: fixed;
    background-repeat: repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-secondary-dark);
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
header {
    background-color: var(--color-surface);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 85vh;
    /* Use the new v2 Mandala image with darker overlay (30%) - Adjusted to be lighter */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('hero_mandala_v2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* Better mobile support */
    display: flex;
    flex-direction: column;
    /* Stack elements vertically (Top: Rating, Bottom: Content) */
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: white;
    padding-top: 8rem;
    /* Reset to safe value (approx 120px) to clear fixed header */
    padding-bottom: var(--spacing-lg);
    /* Add bottom padding for "air" */
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--color-primary);
}

/* Rating Container (Moved to Bottom) */
.rating-container-bottom {
    margin-top: 1.5rem;
    /* Space between buttons and rating */
    margin-bottom: 1rem;
}

/* Hero Top (Text) */
.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0;
    /* Reset negative margin so content is visible */
}

/* Hero Bottom (Buttons + Rating) */
.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

}

/* Text Container (Watermark Removed) */
.hero-text-bg {
    background-color: transparent;
    /* Removed watermark */
    padding: 0;
    /* Removed padding */
    margin-bottom: var(--spacing-md);
    margin-top: 1rem;
    /* Reset to safe spacing from rating */
    max-width: 90%;
    width: fit-content;
    backdrop-filter: none;
    /* Removed blur */
}

/* Audio Button Removed */


/* Contact Section Styles */
.contact-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--color-accent);
    margin-top: 20px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-logo {
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--color-primary);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
}

.rating-badge {
    display: inline-flex;
    /* Container wraps tight */
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
    margin-top: 4rem;
    /* Increased to move down another ~1cm (approx 1.5rem more) */
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    /* Increased size */
    background-color: rgba(0, 0, 0, 0.5);
    /* Optional: small pill bg for better pop */
    padding: 8px 20px;
    border-radius: 50px;
}

.rating-badge ion-icon,
.rating-badge .rating-value {
    color: var(--color-secondary);
    font-size: 1.4rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    /* Reduced from 3rem */
    margin-bottom: var(--spacing-sm);
    /* Color handled by spans now */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    /* Reduced from 1.4rem */
    /* Color handled by class */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.text-pink {
    color: var(--color-primary);
    font-size: 3.5rem;
    /* Increased size for emphasis */
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.15);
    /* Subtle watermark */
    padding: 5px 15px;
    border-radius: 10px;
    display: inline-block;
    /* Ensure bg wraps text properly */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.text-white {
    color: #FFFFFF !important;
    font-size: 2rem;
    /* Keep secondary text slightly smaller */
}

.subtitle-bottom {
    margin-top: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
    /* Keep original subtitle size */
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: white;
}

/* Menu Section */
.menu-section {
    padding: var(--spacing-lg) 0;
}

.menu-grid {
    display: grid;
    /* Text-only cards can be wider */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.menu-item {
    background: var(--color-surface);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    border-left: 5px solid var(--color-primary);
    /* Accent border instead of image */
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-image {
    display: none;
    /* Hide images */
}

.item-details {
    padding: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--spacing-xs);
}

.item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary-dark);
}

.item-price {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.item-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Info Section */
.info-section {
    background-color: var(--color-secondary);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.info-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    color: #e0e0e0;
}

/* Footer */
footer {
    background-color: var(--color-secondary-dark);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: var(--spacing-md);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-tabs {
        gap: 5px;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Tighten nav links on mobile */
    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 35px !important;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* --- DARK MODE GLOBAL STYLES --- */

/* Header (Black) */
header {
    background-color: #000000;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--color-secondary);
}

.nav-links a {
    color: var(--color-secondary);
}

/* Menu Items (Dark Mode) */
.menu-item {
    background: var(--color-surface);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 5px solid var(--color-primary);
}

.item-title {
    color: var(--color-secondary);
    font-family: var(--font-body);
    /* Changed from heading to body for readability */
    font-weight: 700;
}

.item-price {
    color: var(--color-primary);
}

.item-desc {
    color: var(--color-text-muted);
}

/* Info Section (Black Background) */
.info-section {
    background-color: #000000;
    color: white;
    border-top: 2px solid var(--color-secondary);
}

/* Contact Section (Dark) */
.contact-card {
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
}

.contact-card p {
    color: white;
}

/* Footer (Black) */
footer {
    background-color: #000000;
    color: var(--color-secondary);
    border-top: 1px solid #333;
}

/* Dropdown Menu Styles */
.dropdown-trigger {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-surface);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    z-index: 1000;
    border: 1px solid var(--color-secondary);
    flex-direction: column;
    overflow: hidden;
}

.dropdown-menu.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu a {
    padding: 12px 20px;
    color: var(--color-text-main);
    text-decoration: none;
    display: block;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 102, 161, 0.3);
    max-height: 80vh;
    overflow-y: auto;
    color: white;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
    transition: transform 0.3s;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--color-primary);
}

/* Responsive Adjustments for Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        /* Center on screen for mobile or better list */
        top: auto;
        bottom: 20px;
        /* Or relative in nav */
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
        /* Alternative: keep normal flow if in hamburger menu, but here we have horizontal nav */
    }
}