   /* Custom Golden Colors */
   :root {
    --gold: #D4AF37;       /* Primary Gold */
    --light-gold: #F0E68C; /* Lighter Gold for accents */
    --dark-bg: #1A1A1A;    /* Dark, sophisticated background */
    --text-color: #F5F5F5; /* Light text for contrast */
    --font-serif: 'Playfair Display', serif;
}

/* Basic Reset and Body Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Logo Styling */
.logo {
    padding: 50px 0 50px 0;
    margin: 0;
    text-align: center;
}

.header-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Filter for a golden glow effect on the logo image */
    filter: 
        drop-shadow(0 0 5px rgba(212, 175, 55, 0.8)) 
        drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease-in-out;
}

.header-logo:hover {
    transform: scale(1.02);
    opacity: 0.95;
}


/* Main Content Area */
.content {
    flex-grow: 1; /* Pushes the footer to the bottom */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.message-box {
    max-width: 700px;
    border: 3px solid var(--gold);
    padding: 40px;
    background: rgba(40, 40, 40, 0.8);
    box-shadow: 0 0 20px var(--gold);
    border-radius: 5px;
}

.message-box h2 {
    font-family: var(--font-serif);
    font-size: 2.5em;
    color: var(--light-gold);
    margin-top: 0;
    letter-spacing: 2px;
}

.message-box p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.message-box .wait-text {
    color: var(--light-gold);
    font-style: italic;
}


/* Footer Styles */
.footer {
    background-color: #282828;
    padding: 20px 0;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.social-links a {
    color: var(--gold);
    font-size: 1.8em;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--light-gold);
    transform: scale(1.1);
}

.copyright {
    font-size: 0.85em;
    color: #888;
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    .header-logo {
        max-width: 60%;
    }
    .logo {
        padding: 20px 0 15px 0;
    }
    .message-box {
        padding: 30px 20px;
    }
    .message-box h2 {
        font-size: 2em;
    }
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}