/* ========================================
   Silver Radiant - Coming Soon Page Styles
   Theme: Elegant, Sophisticated, Modern
   ======================================== */

/* CSS Variables for consistent theming */
:root {
    --primary-gray: #a4a2a5;
    --dark-gray: #3a3a3a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --accent-gold: #d4af37;
    --text-primary: #2c2c2c;
    --text-secondary: #6a6a6a;
    --gradient-bg: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ========================================
   Particles Background Animation
   ======================================== */

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-gray);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-10px) translateX(-20px);
    }
    75% {
        transform: translateY(-40px) translateX(10px);
    }
}

/* ========================================
   Main Container
   ======================================== */

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* ========================================
   Logo Section
   ======================================== */

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(164, 162, 165, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

/* ========================================
   Content Section
   ======================================== */

.content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gray), transparent);
    margin: 1.5rem auto;
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* ========================================
   Countdown Timer
   ======================================== */

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-gray);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ========================================
   Social Media Links
   ======================================== */

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gray);
    border-radius: 50%;
    color: var(--primary-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gray);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(164, 162, 165, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    margin-top: auto;
    padding: 2rem 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.35rem;
    }

    .description {
        font-size: 1rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-item {
        min-width: 70px;
    }

    .logo {
        width: 90px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.15rem;
    }

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

    .countdown-label {
        font-size: 0.75rem;
    }

    .logo {
        width: 75px;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .particles,
    .social-links {
        display: none;
    }

    body {
        background: white;
    }
}
