:root {
    --primary-color: #6B4F33; /* Earthy Brown */
    --secondary-color: #C2A25A; /* Gold Accent */
    --background-color: #F4F1EB; /* Neutral Beige */
    --highlight-color: #6BAA64; /* Vibrant Green */
    --text-color: #333333; /* Dark Gray */
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: Arial, sans-serif;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/background.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}
a {
    color: var(--primary-color);
    text-decoration: none;
}
.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 600px;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.contact-info {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-info h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    margin: 0.5rem 0;
}

.coming-soon {
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
        width: 320px;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 200px;
        height: 200px;
    }

    .contact-info {
        text-align: center;
    }
}