:root {
    --primary-color: #1a237e; /* Deep Navy */
    --accent-color: #f8f5f2; /* Cream */
    --text-color: #333333;
    --gold-accent: #c5a059;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

.hero {
    margin-bottom: 3rem;
}

.logo-placeholder {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    display: inline-block;
    padding: 0.5rem 1.5rem;
}

.headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 480px;
    margin: 0 auto;
}

.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    font-size: 0.95rem;
    color: #666;
}

.footer {
    font-size: 0.8rem;
    color: #888;
    margin-top: auto;
    padding: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
    .info-card {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .headline {
        font-size: 4.5rem;
    }
}
