:root {
    --bg-color: #000000;
    --gold-primary: #d4af37;
    --gold-light: #f9e29c;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-sans);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.logo-container {
    perspective: 1000px;
}

#main-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.5s ease;
}

#main-logo:hover {
    transform: scale(1.05);
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    margin: 0.5rem 0;
}

.status {
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 600;
}

.contact-info {
    margin-top: 1rem;
}

.contact-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--gold-primary);
    border-bottom: 1px solid var(--gold-primary);
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

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

.animate-reveal {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-reveal-delayed {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    
    #main-logo {
        max-width: 180px;
    }
    
    .status {
        letter-spacing: 0.3em;
    }
}
