@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --gold: #d4af37;
    --gold-subtle: rgba(212, 175, 55, 0.1);
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow: hidden;
    height: 100vh;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/bg.png') center/cover no-repeat;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
    backdrop-filter: blur(15px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 80px;
    height: 2px;
    background-color: var(--gold);
    margin: 1.5rem auto;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.description {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.primary-btn {
    text-decoration: none;
    color: var(--bg-dark);
    background-color: var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 20px var(--gold-subtle);
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gold-subtle);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo-text { font-size: 2.5rem; }
    .tagline { font-size: 1.4rem; }
    .content-wrapper { padding: 2rem; }
}
