/* --- Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-color: #003B5C; /* Fallback deep blue */
    position: relative;
    overflow: hidden;
}

/* --- Background Design (Waves & Gradient) --- */
/* This creates a deep sea to night sky gradient */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #005f7a 0%, #003B5C 60%, #001f33 100%);
    z-index: -1;
}

/* Optional: Add a subtle texture pattern overlay if you have one */
.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.03" fill-rule="evenodd"%3E%3Cpath d="M0 40L40 0H20L0 20M40 40V20L20 40"/%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}

/* --- Layout Container --- */
.container {
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

/* --- Logo Styling --- */
.logo-container {
    margin-bottom: 30px;
    animation: fadeInDown 1.5s ease;
}

.logo {
    max-width: 250px; /* Adjust based on your preference */
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

/* --- Typography --- */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.5s backwards;
}

/* The Gold Highlight for "Coming Soon" */
.highlight {
    color: #F4B41A; /* Desert Gold from your logo */
    text-shadow: 0 0 20px rgba(244, 180, 26, 0.4);
}

.tagline {
    font-size: 1.2rem;
    color: #80DEEA; /* Light Teal/Cyan for contrast */
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.7s backwards;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.9s backwards;
}

/* --- Buttons --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s backwards;
}

.btn {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Phone Button (Gold) */
.btn-phone {
    background-color: #F4B41A;
    color: #003B5C; /* Dark blue text for readability */
}

.btn-phone:hover {
    background-color: #ffcf4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 180, 26, 0.4);
}

/* WhatsApp Button (Teal) */
.btn-whatsapp {
    background-color: #14919B; /* Logo Teal */
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #20b2aa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(20, 145, 155, 0.4);
}

/* --- Footer --- */
footer {
    margin-top: 60px;
    font-size: 0.8rem;
    opacity: 0.6;
    animation: fadeIn 2s ease 2s backwards;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .logo {
        max-width: 180px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%; /* Full width buttons on mobile */
        justify-content: center;
    }
    
    .description {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}