/* ==========================================================================
   ADC HOLDING - MINIMAL LUXURY COMING SOON STYLES
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    --bg-dark: #050811;
    --bg-surface: #0a0f1e;
    
    /* Luxury Gold Palette */
    --gold-light: #F7E4BC;
    --gold-main: #DFA959;
    --gold-dark: #B58032;
    --gold-accent: #E5C384;
    --gold-gradient: linear-gradient(135deg, #FFF5E1 0%, #EED29D 25%, #CFA052 65%, #F4E3BF 100%);
    --gold-text-gradient: linear-gradient(135deg, #FFFFFF 0%, #F7E0A3 35%, #DFA959 70%, #B8860B 100%);
    
    /* Neutral & Text */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.72);
    --text-muted: rgba(255, 255, 255, 0.45);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Ambient Aura Glow Orbs */
.aura-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    z-index: 2;
    pointer-events: none;
    animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%;
    left: 15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(223, 169, 89, 0.4) 0%, rgba(10, 15, 30, 0) 70%);
}

.orb-2 {
    bottom: -15%;
    right: 10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.3) 0%, rgba(5, 8, 17, 0) 70%);
    animation-delay: -6s;
}

.orb-3 {
    top: 40%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(5, 8, 17, 0) 70%);
    animation-delay: -12s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.08); }
    100% { transform: translate(-30px, 50px) scale(0.95); }
}

/* Main Container Layout */
.container {
    position: relative;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(2rem, 5vh, 4rem) clamp(1.5rem, 5vw, 4rem);
    text-align: center;
}

/* Hero Content Wrapper */
.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Main Titles */
.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.title-sub {
    font-family: var(--font-subheading);
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 6px;
    color: rgba(223, 169, 89, 0.9);
    text-transform: uppercase;
}

.title-primary {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 8px;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(223, 169, 89, 0.2);
    position: relative;
}

/* Decorative Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 28px;
    width: 100%;
    max-width: 320px;
}

.divider .line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(223, 169, 89, 0) 0%, rgba(223, 169, 89, 0.6) 50%, rgba(223, 169, 89, 0) 100%);
}

.divider .diamond {
    width: 8px;
    height: 8px;
    background-color: var(--gold-main);
    transform: rotate(45deg);
    box-shadow: 0 0 12px var(--gold-main);
}

/* Coming Soon Subtitle */
.coming-soon-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 8px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Description Text */
.description {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
    letter-spacing: 0.3px;
}

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

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

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

/* Mobile & Touch Device Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.25rem;
    }
    .title-primary {
        letter-spacing: 4px;
    }
    .title-sub {
        letter-spacing: 3px;
    }
    .coming-soon-text {
        letter-spacing: 4px;
    }
}
