:root {
    --bg-brown: #140904; /* Darker, more premium deep chocolate */
    --primary-saffron: #E8761C;
    --text-cream: #FDF5E8;
    --accent-gold: #C8892A;
    --transition-speed: 150ms;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-brown);
    color: var(--text-cream);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
}

/* Grain Animation */
.grain-overlay {
    position: fixed;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    z-index: 9999;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 120px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo Section */
.header {
    margin-bottom: 60px;
}

.logo {
    font-family: 'Baloo 2', cursive;
    font-size: 5.5rem;
    font-weight: 700; /* Slightly lighter than 800 can sometimes reduce artifacts in cursive fonts */
    line-height: 1;
    color: var(--text-cream);
    margin-bottom: 8px;
    letter-spacing: 0; /* Removing negative spacing to avoid overlap lines */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Smoother shadow */
    -webkit-text-stroke: 0;
}

.tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em; /* Extra spacing for luxury feel */
    color: var(--accent-gold);
    margin-top: -8px;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    margin-bottom: 48px;
    max-width: 800px;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-heading .accent {
    color: var(--primary-saffron);
}

.hero-subtext {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Badges */
.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.badge {
    padding: 8px 16px;
    background-color: rgba(232, 118, 28, 0.1);
    border: 1px solid var(--primary-saffron);
    color: var(--text-cream);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(232, 118, 28, 0.2);
    min-width: 120px;
}

.countdown-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-saffron);
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-top: 8px;
}

/* Notify Form */
.notify {
    margin-bottom: 48px;
    width: 100%;
    max-width: 500px;
}

.notify h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.notify-form {
    display: flex;
    gap: 0;
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(253, 245, 232, 0.2);
    border-right: none;
    padding: 16px 20px;
    color: var(--text-cream);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-speed);
}

.notify-form input:focus {
    border-color: var(--primary-saffron);
}

.notify-form button {
    background-color: var(--primary-saffron);
    color: var(--bg-brown);
    border: none;
    padding: 0 32px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform 100ms;
}

.notify-form button:hover {
    background-color: #f08a3d;
}

.notify-form button:active {
    transform: scale(0.98);
}

.success-message {
    margin-top: 16px;
    color: #4CAF50;
    font-weight: 600;
    display: none;
}

/* WhatsApp CTA */
.whatsapp-cta {
    margin-bottom: 80px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: 1px solid var(--text-cream);
    color: var(--text-cream);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.whatsapp-btn:hover {
    background-color: var(--text-cream);
    color: var(--bg-brown);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Outlets */
.outlets {
    width: 100%;
    margin-top: 40px;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 32px;
    opacity: 0.6;
}

.outlet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.outlet-card {
    background: rgba(253, 245, 232, 0.03);
    padding: 32px;
    text-align: left;
    border: 1px solid rgba(253, 245, 232, 0.05);
}

.outlet-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.outlet-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 12px;
}

.outlet-card .mob {
    font-weight: 700;
    color: var(--text-cream);
}

/* Marquee Footer */
.marquee-footer {
    background-color: var(--primary-saffron);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 16px 0;
    margin-top: auto;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--bg-brown);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 40px;
    display: inline-block;
}

.marquee-content .dot {
    opacity: 0.3;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Animations */
.transition-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.transition-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .outlet-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 3.5rem;
    }
    
    .hero-heading {
        font-size: 2.25rem;
    }
    
    .countdown {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 16px;
    }
    
    .countdown-item .number {
        font-size: 2rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input {
        border-right: 1px solid rgba(253, 245, 232, 0.2);
        border-bottom: none;
        width: 100%;
    }
    
    .notify-form button {
        width: 100%;
        padding: 16px;
    }
}
