/* Reset & Variables */
:root {
    /* Brand Gold Colors (Based on Logo Champagne & Bronze Metallic Gold) */
    --gold-gradient: linear-gradient(135deg, #b38f4d 0%, #ecd6a6 50%, #8a6321 100%);
    --gold-solid: #b38f4d;
    --gold-light: #dfba73;
    --gold-dark: #8a6321;
    
    /* Brand Rose Gold Colors (Based on Logo Metallic Rose Pink Accent) */
    --rose-gold-gradient: linear-gradient(135deg, #cfa1a1 0%, #ebcaca 50%, #9e6b6b 100%);
    --rose-gold-solid: #cfa1a1;
    --rose-gold-light: #ebcaca;
    --rose-gold-dark: #9e6b6b;
    
    /* Light Luxury Theme Colors */
    --bg-light-luxe: #faf8f6;      /* Off-White Cream */
    --bg-overlay: radial-gradient(circle, rgba(250, 248, 246, 0.72) 0%, rgba(243, 239, 234, 0.88) 100%);
    --text-primary: #3d3133;        /* Dark Charcoal with hint of warm rose */
    --text-secondary: #5c4e50;
    --border-glass: 1px solid rgba(179, 143, 77, 0.15);
    --shadow-gold: 0 10px 25px rgba(179, 143, 77, 0.1);
    --shadow-rose: 0 10px 25px rgba(207, 161, 161, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light-luxe);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Image & Overlay (Light Luxury Ladies Boutique) */
.coming-soon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1567401893930-7becd118521d?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    z-index: -2;
    filter: brightness(0.9) contrast(1.02) saturate(0.95);
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

/* Sparkles Animation Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: sparkleAnim 7s infinite ease-in-out;
}

@keyframes sparkleAnim {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* Layout Wrapper */
.main-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    z-index: 1;
}

/* Brand Header with Logo Image */
.header {
    margin-bottom: 15px;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.brand-logo-img {
    max-width: 130px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(179, 143, 77, 0.12);
    border: 1px solid rgba(179, 143, 77, 0.2);
    transition: transform 0.4s ease;
}

.brand-logo-img:hover {
    transform: scale(1.04);
}

/* Content Container */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/* Clock & Countdown Overlay */
.clock-countdown-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.analog-clock-container {
    position: relative;
    width: 380px;  /* Increased size as requested: "clock aur bada kro" */
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analog-clock {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 35px rgba(179, 143, 77, 0.15));
}

.clock-face {
    fill: rgba(255, 255, 255, 0.2);  /* High transparency glassmorphism as requested: "aur ya trasparent kro" */
    stroke: url(#goldGrad);
    stroke-width: 2.2;
    backdrop-filter: blur(8px);
}

.clock-inner {
    fill: none;
    stroke: rgba(179, 143, 77, 0.15);
    stroke-width: 0.8;
    stroke-dasharray: 2 4;
}

/* Clock Hands */
.hand {
    stroke-linecap: round;
    transform-origin: 50px 50px;
    transition: transform 0.2s cubic-bezier(0.4, 2.08, 0.55, 1);
}

.hour-hand {
    stroke: var(--gold-solid);
    stroke-width: 2.5;
}

.minute-hand {
    stroke: var(--gold-light);
    stroke-width: 1.8;
}

.second-hand {
    stroke: var(--rose-gold-solid);
    stroke-width: 1.0;
}

.clock-center {
    fill: var(--rose-gold-solid);
    stroke: #ffffff;
    stroke-width: 0.5;
}

/* Countdown Grid Overlaid on Clock */
.countdown-grid {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    padding: 0 12px;
    pointer-events: none;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.55);  /* Transparent light countdown boxes */
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    border-radius: 10px;
    padding: 20px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(179, 143, 77, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
}

.countdown-card:hover {
    transform: translateY(-6px);
    border-color: var(--rose-gold-solid);
    box-shadow: var(--shadow-rose);
}

.countdown-num {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-body);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 600;
}

/* Message Section */
.message-section {
    max-width: 650px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.message-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.message-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Subscription Form */
.subscription-section {
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subscription-form {
    width: 100%;
}

.input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    border-radius: 30px;
    padding: 6px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(179, 143, 77, 0.08);
}

.input-wrapper:focus-within {
    border-color: var(--gold-solid);
    box-shadow: var(--shadow-gold);
}

.subscription-form input {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 10px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
}

.subscription-form input::placeholder {
    color: #8c7e80;
}

.subscription-form input:focus {
    outline: none;
}

.submit-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--gold-gradient);
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.submit-btn:hover {
    transform: scale(1.08) rotate(10deg);
    box-shadow: var(--shadow-gold);
}

.status-msg {
    margin-top: 15px;
    font-size: 13px;
    min-height: 20px;
}

.status-msg.success {
    color: #4e8c47;
}

.status-msg.error {
    color: #c43c40;
}

/* Social Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold-dark);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.copyright {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8c8283;
}

/* Keyframes */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .analog-clock-container {
        width: 320px;
        height: 320px;
    }
    
    .countdown-card {
        padding: 12px 4px;
        border-radius: 8px;
    }
    
    .countdown-num {
        font-size: 26px;
    }
    
    .countdown-label {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .message-title {
        font-size: 34px;
    }
}
