:root {
    --primary-color: #ffffff;
    --secondary-color: rgba(255, 255, 255, 0.8);
    --accent-color: #2e7d32; /* Rich forest green */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body, html {
    height: 100%;
    font-family: var(--font-family);
    background-color: #0c0d0c;
    color: var(--primary-color);
    overflow: hidden;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #a8e063 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1.2s ease-out;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeInUp 1.5s ease-out;
}

p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--primary-color);
}

.subtext {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 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);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
    }
}
