/* Color Palette: Light Gold (#c7a96b), Dark Gold (#a67c32), Blue (#0F2CF9), Ivory (#fffff0) */

:root {
    --gold-light: #e0c471;  /* top gold from logo */
    --gold-dark: #e0c471;  /* bottom dark gold from logo */
    --blue: #0F2CF9;
    --ivory: #fffff0;
    --text-dark: #333;
}

/* Background & Page Layout */
body {
    font-family: 'Georgia', serif;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    text-align: center;
}

/* Transparent container for text content */
.container {
    max-width: 650px;
    padding: 40px 30px;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    border: none;
}

/* Logo Styling */
.logo-container img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/* Typography */
h1 {
    color: var(--gold-light); /* top gold tone */
    font-size: 2.8em;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.tagline {
    color: #f2f2f2;
    font-size: 1.1em;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Key Message Styling */
.key-message {
    padding: 25px 0;
    margin-bottom: 30px;
    border-top: 1px solid rgba(199, 169, 107, 0.3);
    border-bottom: 1px solid rgba(199, 169, 107, 0.3);
}

.key-message p {
    font-size: 1.1em;
    color: #f8f8f8;
    font-weight: 500;
    margin-bottom: 15px;
}

/* "Opening Soon" text */
.opening-soon {
    color: var(--gold-dark); /* darker gold tone */
    font-size: 2.2em;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

/* Contact Information */
.contact-info {
    margin-top: 30px;
    font-size: 0.95em;
    color: #f8f8f8;
}

.contact-info a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
}

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

.domain {
    margin-top: 5px;
    font-size: 0.85em;
    color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 30px 15px;
        margin: 20px;
    }

    h1 {
        font-size: 2em;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1em;
    }

    .key-message p {
        font-size: 1em;
    }

    .opening-soon {
        font-size: 1.8em;
    }
}
