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

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d674;
    --text-light: #e8e8e8;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background particles */
.background-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Main container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

/* Logo section */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo-placeholder {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    padding: 0.125rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.logo-img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Main content */
.main-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.2;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 2rem auto;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact section */
.contact-section {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-title {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.05);
}

.contact-email:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.email-icon {
    width: 20px;
    height: 20px;
    fill: var(--accent-gold);
}

/* 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 design */
@media (max-width: 768px) {
    .logo-placeholder {
        width: 85%;
        padding: 0.5rem;
    }

    .logo-img {
        max-height: 100px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .site-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .contact-email {
        font-size: 1.1rem;
        padding: 0.875rem 1.5rem;
    }

    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-placeholder {
        width: 95%;
        padding: 0.5rem;
    }

    .logo-img {
        max-height: 80px;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .site-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .contact-email {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Print styles */
@media print {
    .background-animation {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
