/* =========================================================
   Zen-G / Mahantam Clothing Studio - Luxury Fashion CSS
   Color Scheme:
     Background: #eae9de
     Primary Navy: #26377e
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Italiana&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
    --bg-primary: #eae9de;
    --bg-card: rgba(255, 255, 255, 0.72);
    --bg-card-hover: rgba(255, 255, 255, 0.88);
    
    --text-primary: #26377e;
    --text-secondary: rgba(38, 55, 126, 0.78);
    --text-muted: rgba(38, 55, 126, 0.52);
    
    --accent-gold: #c29d59;
    --accent-gold-soft: rgba(194, 157, 89, 0.35);
    
    --border-glass: rgba(255, 255, 255, 0.85);
    --border-navy: rgba(38, 55, 126, 0.12);
    --border-active: rgba(38, 55, 126, 0.28);
    
    --font-heading: 'Syne', 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Italiana', 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-card: 0 16px 36px -12px rgba(38, 55, 126, 0.09), 0 0 1px 1px rgba(255, 255, 255, 0.9) inset;
    --shadow-card-hover: 0 24px 48px -12px rgba(38, 55, 126, 0.16), 0 0 1px 1px #ffffff inset;
    --shadow-glow: 0 0 35px rgba(38, 55, 126, 0.1);
    
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(38, 55, 126, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 90% 85%, rgba(194, 157, 89, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
}

/* Luxury Aura Gradients in Background */
.luxury-aura {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.aura-top-left {
    top: -15vh;
    left: -10vw;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(38, 55, 126, 0.06) 0%, transparent 70%);
}

.aura-bottom-right {
    bottom: -15vh;
    right: -10vw;
    width: 55vw;
    height: 55vh;
    background: radial-gradient(circle, rgba(194, 157, 89, 0.08) 0%, transparent 70%);
}

.ambient-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(38, 55, 126, 0.035) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(70px);
    animation: pulseAmbient 10s ease-in-out infinite alternate;
}

@keyframes pulseAmbient {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* Page Layout Wrapper */
.page-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 1.5rem 4rem; /* Extra bottom breathing room */
}

.container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

/* Main Hero Content */
.hero-section {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0 3.5rem;
}

/* Pure Floating Logo - Zero background, zero container */
.logo-wrapper {
    margin: 0 auto 2.25rem;
    display: inline-block;
    position: relative;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.brand-logo {
    position: relative;
    z-index: 1;
    max-width: 330px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    background: transparent;
    filter: drop-shadow(0 10px 20px rgba(38, 55, 126, 0.08));
    animation: autoFloatLogo 6s ease-in-out infinite alternate;
    transition: var(--transition-smooth);
    cursor: pointer;
    user-select: none;
}

.brand-logo:hover {
    transform: translateY(-8px) scale(1.04);
    filter: drop-shadow(0 20px 36px rgba(38, 55, 126, 0.2));
}

@keyframes autoFloatLogo {
    0% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 8px 16px rgba(38, 55, 126, 0.06));
    }
    50% {
        transform: translateY(-7px) scale(1.018);
        filter: drop-shadow(0 16px 28px rgba(38, 55, 126, 0.12));
    }
    100% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 8px 16px rgba(38, 55, 126, 0.06));
    }
}

/* Couture Hairline Divider */
.couture-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: 280px;
    margin: 0 auto 2rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-navy), transparent);
}

.divider-diamond {
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

/* Impactful Statement */
.statement-group {
    margin: 0 auto 3.5rem;
    max-width: 780px;
}

.statement-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4.8vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.statement-subtext {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Ultra-Premium Glass Countdown Cards */
.countdown-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.countdown-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 1.75rem 0.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Specular light highlight */
.card-glass-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
    pointer-events: none;
}

.countdown-card:hover {
    background: var(--bg-card-hover);
    border-color: #ffffff;
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.countdown-digit {
    font-family: var(--font-serif);
    font-size: clamp(2.3rem, 4.2vw, 3.4rem);
    font-weight: 600;
    line-height: 1;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.45rem;
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-gold);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Minimal Luxury Footer */
.site-footer {
    padding-top: 3rem;
    text-align: center;
}

.footer-trademark {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.footer-trademark span {
    color: var(--accent-gold);
    margin: 0 0.35rem;
}

.footer-rights {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Interactive Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 55, 126, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease;
}

/* Animations */
.animate-fade-up {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

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

/* Responsive Media Queries */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 2rem 1rem 3.5rem;
    }

    .brand-logo {
        max-width: 250px;
    }

    .statement-headline {
        font-size: 2rem;
    }

    .countdown-grid {
        gap: 0.75rem;
    }

    .countdown-card {
        padding: 1.25rem 0.4rem;
    }

    .countdown-digit {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0.16em;
    }

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        max-width: 210px;
    }

    .countdown-digit {
        font-size: 1.75rem;
    }
}
