/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg: #070709;
    --color-bg-alt: #0d0d12;
    --color-gold: #B89552;
    --color-gold-light: #d8be8d;
    --color-gold-dark: #8c6e35;
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    --color-border: rgba(184, 149, 82, 0.15);
    --color-border-hover: rgba(184, 149, 82, 0.3);

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing */
    --container-padding: 2rem;
    --max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ==========================================================================
   INTERACTIVE BACKGROUNDS
   ========================================================================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ambient Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.12;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-gold) 0%, rgba(184, 149, 82, 0) 70%);
    animation: orbFloat 25s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: -15%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #4f46e5 0%, rgba(79, 70, 229, 0) 70%);
    opacity: 0.06;
    animation: orbFloat 35s ease-in-out infinite alternate-reverse;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.page-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.main-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

/* Main Grid Layout */
.hero-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0 4rem 0;
}

.content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ==========================================================================
   HERO CONTENT STYLES
   ========================================================================== */

/* Badge */
.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(184, 149, 82, 0.06);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.badge-container:hover {
    border-color: var(--color-border-hover);
    background: rgba(184, 149, 82, 0.1);
    box-shadow: 0 0 15px rgba(184, 149, 82, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    animation: dotPulse 2s infinite ease-out;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-gold-light);
    text-transform: uppercase;
}

/* Typography */
.main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    opacity: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.subtitle {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 580px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 3px solid var(--color-gold);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
    opacity: 0;
}

.indicator-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ==========================================================================
   HERO IMAGE STYLES
   ========================================================================== */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatImage 6s ease-in-out infinite, fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-img {
    position: relative;
    z-index: 4;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(184, 149, 82, 0.25) 0%, rgba(184, 149, 82, 0) 70%);
    filter: blur(40px);
    z-index: 2;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    padding: 1rem 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
}

.main-footer p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.footer-link {
    color: var(--color-gold-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-bottom: 1px dashed rgba(184, 149, 82, 0.3);
    padding-bottom: 1px;
}

.footer-link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
    text-shadow: 0 0 10px rgba(184, 149, 82, 0.3);
}

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

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

@keyframes dotPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    70% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(4% , -5%) scale(1.08);
    }
    100% {
        transform: translate(-3%, 3%) scale(0.95);
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-16px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Medium Devices (Tablets, less than 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 3rem 0;
        text-align: center;
    }

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

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .status-indicator {
        border-left: none;
        border-top: 3px solid var(--color-gold);
        padding: 1rem 0 0 0;
        margin-top: 1.5rem;
        flex-direction: column;
    }

    .main-header {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 380px;
    }
}

/* Small Devices (Mobile, less than 576px) */
@media (max-width: 576px) {
    :root {
        --container-padding: 1.25rem;
    }

    .main-header {
        height: 80px;
    }

    .logo-img {
        height: 32px;
    }

    .badge-container {
        margin-bottom: 1.5rem;
        padding: 0.4rem 1rem;
    }

    .main-title {
        margin-bottom: 1.25rem;
    }

    .subtitle {
        margin-bottom: 2rem;
    }

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