/* 
   DelhiLiqiors CSS Stylesheet 
   Theme: Elegant Premium Dark Mode with Golden Accents
*/

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3e5ab;
    --accent-whatsapp: #25d366;
    --text-primary: #f5f5f5;
    --text-secondary: #b3b3b3;
    --text-muted: #777777;
    --border-color: rgba(212, 175, 55, 0.2);
    --border-color-light: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(18, 18, 18, 0.8);
    --glass-blur: blur(12px);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-padding: 0 1.5rem;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.gold-text {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-icon {
    margin-right: 0.5rem;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold-sm {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-gold-sm:hover {
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

.btn-whatsapp {
    background-color: var(--accent-whatsapp);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color-light);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.main-nav {
    display: none; /* Mobile navigation toggled by JS */
}

.menu-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #080808;
    background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
    font-weight: 300;
}

.hero-subtitle strong {
    color: #ffffff;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.hero-ctas .btn {
    width: 100%;
    max-width: 280px;
}

/* Feature/Highlights Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: var(--bg-tertiary);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color-light);
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--border-color-light);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.category-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.4) contrast(1.1);
    transition: var(--transition-smooth);
}

.category-card:hover .category-img-placeholder {
    filter: brightness(0.6) contrast(1.1);
}

/* Placeholder backgrounds styling (luxury mesh gradients) */
.whisky-bg {
    background: linear-gradient(45deg, #1f1401, #3c2a0c, #0a0600);
}
.wine-bg {
    background: linear-gradient(45deg, #2a0813, #4c0f20, #0c0205);
}
.beer-bg {
    background: linear-gradient(45deg, #2a2208, #4f410e, #0c0a02);
}
.other-bg {
    background: linear-gradient(45deg, #0d1f2d, #1d3557, #050a0f);
}

.category-info {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.category-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.category-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color-light);
}

.faq-question {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Contact / Order section */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
    background-image: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color-light);
    padding-bottom: 0.75rem;
}

.contact-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Footer Section */
.main-footer {
    background-color: #050505;
    padding: 80px 0 0 0;
    border-top: 1px solid var(--border-color-light);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* Age verification overlay */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-gate-modal {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.age-gate-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.age-gate-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.age-gate-modal p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-gate-buttons .btn {
    flex: 1;
}

.error-msg {
    color: #ff4a4a;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Desktop styles / Media Queries */
@media (min-width: 768px) {
    :root {
        --container-padding: 0 2rem;
    }

    /* Header Nav */
    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-secondary);
    }

    .main-nav a:hover {
        color: var(--accent-gold);
    }

    /* Hero */
    .hero-section {
        padding: 180px 0 120px 0;
    }

    .hero-title {
        font-size: 4rem;
        max-width: 900px;
        margin: 0 auto 1.5rem auto;
    }

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

    .hero-ctas {
        flex-direction: row;
    }

    /* Feature Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Grid */
    .contact-container {
        grid-template-columns: 1.2fr 0.8fr;
    }

    /* Footer */
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Nav Open State */
.main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color-light);
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
