/* ==========================================================================
   N S ABHARANA - LUXURY COMING SOON STYLESHEET
   Color Palette:
   - Primary Gold: #C8A046
   - Dark Gold: #8B6B2E
   - Cream Background: #F8F5EF
   - Dark Text: #2B2B2B
   ========================================================================== */

:root {
    --gold-primary: #C8A046;
    --gold-light: #E2C47B;
    --gold-dark: #8B6B2E;
    --gold-subtle: rgba(200, 160, 70, 0.15);
    --bg-cream: #F8F5EF;
    --text-dark: #2B2B2B;
    --text-muted: #6C757D;
    --font-playfair: 'Playfair Display', serif;
    --font-poppins: 'Poppins', sans-serif;
}

/* Global Reset & Base */
body {
    font-family: var(--font-poppins);
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Typography Classes */
.font-playfair {
    font-family: var(--font-playfair);
}

.font-poppins {
    font-family: var(--font-poppins);
}

.tracking-wider {
    letter-spacing: 2px;
}

.tracking-widest {
    letter-spacing: 4px;
}

/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(135deg, #FFF 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--gold-primary) !important;
}

.bg-cream {
    background-color: var(--bg-cream);
}

.bg-gold-dark {
    background-color: #1A1713;
}

/* Header Glassmorphism */
.header-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 160, 70, 0.2);
    z-index: 1000;
}

.brand-logo {
    font-family: var(--font-playfair);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: #FFFFFF;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 160, 70, 0.3);
}

.btn-gold-outline {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: var(--gold-primary);
    color: #FFFFFF;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    background-color: #0F0D0A;
}

.hero-bg-parallax {
    background-image: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 0.5s ease-out;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(15, 13, 10, 0.7) 0%, rgba(15, 13, 10, 0.85) 100%);
}

/* Glassmorphism Card Effect */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 160, 70, 0.25);
}

.bg-white .glassmorphism-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(200, 160, 70, 0.2);
}

.time-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(200, 160, 70, 0.3);
}

.small-text {
    font-size: 0.7rem;
    color: #DDD;
}

/* Custom Dividers & Borders */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.border-gold-light {
    border: 1px solid rgba(200, 160, 70, 0.2) !important;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(200, 160, 70, 0.15);
    border-color: var(--gold-primary) !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 160, 70, 0.3);
}

/* Hover Zoom Effect */
.hover-zoom {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-wrapper:hover .hover-zoom,
.gallery-item:hover .hover-zoom {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* Contact Social Buttons */
.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(200, 160, 70, 0.3);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--gold-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Floating Particle Animation */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .display-3 {
        font-size: 2.2rem;
    }
    .countdown-wrapper .display-6 {
        font-size: 1.5rem;
    }
}