:root {
    --bg-dark: #000814;
    --primary-blue: #003566;
    --accent-gold: #ffc300;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-primary: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow: hidden;
    height: 100vh;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 80%);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-wrapper {
    margin-bottom: 3.5rem;
    display: inline-block;
    padding: 1.5rem;
    background: #ffffff; /* Contrast for the logo */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.accent {
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3rem auto;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: var(--text-white);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background: #f0f0f0;
}

.btn-primary svg {
    transition: transform 0.4s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px) translateY(-3px);
}

footer {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 1.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Customization */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
    }
    
    h1 {
        margin-bottom: 2rem;
    }
    
    p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .logo-wrapper {
        margin-bottom: 2.5rem;
        padding: 1rem;
    }

    .logo {
        max-width: 160px;
    }
}

@media (max-height: 750px) {
    .container {
        transform: translateY(-20px);
    }
    footer {
        display: none;
    }
}
