/* Core Styling & Dark Palette */
:root {
    --bg-color: #0b0c0e;
    --card-bg: #131519;
    --accent-gold: #cfa86e;
    --accent-gold-light: #e6c896;
    --text-white: #ffffff;
    --text-muted: #a0a5b1;
    --border-color: #262930;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
    overflow-x: hidden;
}

/* Background Subtle Glow Accent */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(207, 168, 110, 0.08) 0%, rgba(11, 12, 14, 0) 70%);
    pointer-events: none;
}

.container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

/* Logo Styling */
.logo-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    letter-spacing: 4px;
    color: var(--text-white);
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 6px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
}

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

/* Announcement */
.status-badge {
    display: inline-block;
    background-color: rgba(207, 168, 110, 0.1);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.feature-item .icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    font-size: 0.9rem;
    color: var(--accent-gold-light);
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(145deg, #131519, #191c22);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 6px;
    text-align: left;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.contact-card h4 {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--accent-gold);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.motto {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
}

.sub-motto {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .logo-title { font-size: 2.5rem; }
    .logo-subtitle { font-size: 1.3rem; }
    .hero-text { font-size: 1.3rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
}
