/* ============================================
   SVARNA AI - Coming Soon Page
   Elegant & Minimal Jewelry Design
   ============================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Colors - Warm & Luxurious */
    --color-bg: #FDFCFA;
    --color-bg-warm: #FAF8F5;
    --color-text: #1a1a1a;
    --color-text-secondary: #5a5a5a;
    --color-text-muted: #8a8a8a;
    --color-gold: #C9A962;
    --color-gold-light: #E8D9B5;
    --color-gold-dark: #A88B4A;
    --color-white: #ffffff;
    --color-border: rgba(201, 169, 98, 0.2);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-medium: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

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

html {
    height: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Page Layout */
.page-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Decorative Background Glows */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-gold-light) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-gold-light) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: glowPulse 8s ease-in-out infinite 4s;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0 var(--space-lg) var(--space-lg);
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Logo */
.logo-container {
    position: fixed;
    top: var(--space-lg);
    left: var(--space-lg);
    margin-left: 8rem;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.logo:hover {
    color: var(--color-gold-dark);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

/* Hero Section - Two Column Layout */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-3xl);
    width: 100%;
    margin: 0;
    padding: 0;
    padding-left: max(var(--space-xl), calc((100vw - 1100px) / 2));
}

/* Hero Banner Image */
.hero-image {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
    min-width: 0;
    margin-right: calc(-1 * var(--space-lg));
    overflow: visible;
}

.hero-image img {
    width: 120%;
    max-width: none;
    height: auto;
    display: block;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
}

.coming-soon-label {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg,
        rgba(201, 169, 98, 0.15) 0%,
        rgba(201, 169, 98, 0.08) 100%
    );
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}

.title-line {
    display: block;
}

.title-accent {
    font-style: italic;
    color: var(--color-gold-dark);
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-gold) 20%,
        var(--color-gold) 80%,
        transparent 100%
    );
    opacity: 0.4;
}

.hero-description {
    max-width: 480px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-secondary);
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

/* Social Section */
.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    animation: fadeInUp 1s var(--ease-out-expo) 0.8s both;
}

.social-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.social-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: 50%;
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: all var(--transition-medium);
}

.social-link:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.25);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover svg {
    color: var(--color-white);
}

/* Tooltip for social links */
.social-link::after {
    content: attr(data-platform);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding: 6px 12px;
    background: var(--color-text);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.social-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Footer */
.footer {
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 300;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: var(--space-md);
    }

    .logo-container {
        top: var(--space-md);
        left: var(--space-md);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
        padding: 0 var(--space-md);
    }

    .hero-content {
        align-items: center;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        max-width: 400px;
    }

    .hero-description {
        font-size: 15px;
        padding: 0 var(--space-sm);
    }

    .social-section {
        margin-top: var(--space-xl);
    }

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

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

    .footer {
        padding: var(--space-md);
    }

    .bg-glow-1,
    .bg-glow-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        gap: var(--space-lg);
    }

    .hero-image img {
        max-width: 280px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .social-links {
        gap: var(--space-sm);
    }

    .social-link::after {
        display: none;
    }

    .coming-soon-label {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .bg-glow,
    .particle {
        display: none;
    }

    .page-wrapper {
        min-height: auto;
    }

    body {
        background: white;
    }
}
