:root {
    --green-dark: #0f3e33;      /* deep green (main) */
    --green-mid:  #174f43;
    --gold:       #caa84a;      /* primary gold accent */
    --gold-2:     #e8d29a;
    --muted:      #a5b3ae;
    --bg:         #eaf0ec;
    --font-primary: 'Montserrat', sans-serif;
}

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

/* ---------- Global Styles ---------- */
/* Make layout take full height and anchor footer to bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-primary);
    background: linear-gradient(to bottom, var(--bg), #ffffff);
    color: var(--green-dark);
}

/* ---------- Header ---------- */
.site-header {
    width: 100%;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(234, 240, 236, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav .logo img {
    height: 50px;
    width: auto;
    transition: transform 0.4s ease;
}

.nav .logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links li a {
    text-decoration: none;
    color: var(--green-dark);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #fff;
    background-color: var(--gold);
}

/* ---------- Main Content ---------- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}



/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-container {
    animation: fadeInUp 1.2s ease-out;
    margin-top: 120px;
    max-width: 90%;
    text-align: left; /* ensures left alignment for all text */
}

/* ---------- Headline & Subtext ---------- */
.coming-soon-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--green-dark);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: left; /* aligns headline left */
}

.coming-soon-container p {
    font-size: 1.3rem;
    color: var(--green-mid);
    margin-top: 0.2rem;
    white-space: normal; /* allows wrapping on smaller screens */
    max-width: 600px;
    text-align: left; /* aligns left with heading */
}

/* ---------- Notify Form ---------- */
.notify-form {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    justify-content: flex-start; /* aligns form left under text */
    flex-wrap: wrap;
    width: fit-content;
}

.notify-form input {
    padding: 10px 15px;
    border: 1px solid var(--muted);
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
    min-width: 250px;
    transition: border-color 0.3s ease;
}

.notify-form input:focus {
    border-color: var(--gold);
}

.notify-form button {
    background-color: var(--gold);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background-color: var(--green-dark);
}

/* ---------- Footer ---------- */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 15px 0;
    background-color: rgba(234, 240, 236, 0.5);
    margin-top: auto; /* pushes it down */
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .coming-soon-container h1 {
        font-size: 2.6rem;
    }
    .coming-soon-container p {
        font-size: 1.2rem;
        max-width: 90%;
    }
}

@media (max-height: 800px) {
    html, body {
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 25px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        gap: 15px;
        justify-content: center;
    }

    .coming-soon-container {
        margin-top: 150px;
        padding: 0 10px;
        text-align: left;
    }

    .coming-soon-container h1 {
        font-size: 2rem;
        width: 100%;
        text-align: left;
    }

    .coming-soon-container p {
        font-size: 1.05rem;
        max-width: 95%;
        line-height: 1.5;
        text-align: left;
    }

    .notify-form {
        flex-direction: column;
        align-items: flex-start; /* keeps alignment left */
        width: 100%;
    }

    .notify-form input {
        width: 100%;
        min-width: unset;
    }

    .notify-form button {
        width: auto;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .coming-soon-container h1 {
        font-size: 1.8rem;
    }

    .coming-soon-container p {
        font-size: 1rem;
    }
}