/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-gold: #d4af37;
    --color-gold-light: #f0e5d0;
    --color-white: #ffffff;
    --color-gray: #999999;
    --color-gray-light: #f8f8f8;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Accent */
.background-accent {
    position: fixed;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
.header {
    text-align: center;
    padding: 20px 0 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.3));
}

/* Main Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

/* Title */
.title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Subtitle Container */
.subtitle-container {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-style: italic;
}

.description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Info Section */
.info-section {
    max-width: 650px;
    margin-bottom: 50px;
    padding: 40px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.info-text {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-subtext {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-gray);
    line-height: 1.7;
}

.highlight {
    font-weight: 500;
    color: var(--color-gold);
}

.highlight-link {
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.highlight-link:hover {
    color: var(--color-gold-light);
    border-bottom: 1px solid var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* CTA Section */
.cta-section {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.coming-soon {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-gold);
    text-decoration: none;
    padding: 15px 40px;
    border: 2px solid var(--color-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.contact-link:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0 20px;
    color: var(--color-gray);
    font-size: 0.85rem;
    font-weight: 300;
    animation: fadeIn 1s ease-out 1s both;
}

.admin-link {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.admin-link:hover {
    color: var(--color-gold);
    opacity: 1;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .logo {
        max-width: 200px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .info-section {
        padding: 30px 20px;
    }

    .info-text {
        font-size: 0.95rem;
    }

    .info-subtext {
        font-size: 0.9rem;
    }

    .coming-soon {
        font-size: 1.1rem;
    }

    .contact-link {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .info-text {
        font-size: 0.9rem;
    }
}
