
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

#background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7);
    z-index: -1;
}

/* #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
} */

#ui-container {
    transition: opacity 1s ease-in-out;
}

#ui-container.fade-out {
    opacity: 0;
}

.logo {
    width: 15vw; /* Responsive width */
    max-width: 200px; /* Max size for large screens */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space below the logo */
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;
}

.coming-soon h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5vw;
    margin: 0;
    color: #FFD700;
    font-weight: 700;
}

.coming-soon p {
    font-size: 1.2vw;
    max-width: 600px;
    margin: 20px auto;
    color: #FFFFFF;
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFD700;
    color: #0a192f;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1vw;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    z-index: 2;
}

.audio-control {
    position: absolute;
    bottom: 0;
    right: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.audio-control:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 25vw; /* Adjust logo size for smaller screens */
        max-width: 150px;
    }

    .coming-soon h1 {
        font-size: 10vw;
    }

    .coming-soon p {
        font-size: 3vw;
    }

    .cta-button {
        font-size: 3vw;
        padding: 12px 25px;
    }

    footer {
        padding: 0 20px;
    }

    .modal {
        padding: 30px 22px;
    }
    .modal h2 {
        font-size: 8vw;
    }
}

/* ---- Contact modal ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(10, 25, 47, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay[hidden] {
    display: none;
}

.modal-overlay.is-open {
    opacity: 1;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    box-sizing: border-box;
    padding: 40px 36px;
    background: #0a192f;
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
    transform: translateY(0) scale(1);
}

.modal h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #FFD700;
    font-weight: 700;
    margin: 0 0 8px;
    font-size: 2.4rem;
}

.modal-sub {
    margin: 0 0 24px;
    font-size: 0.95rem;
    color: #cfd8e3;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#contact-form input,
#contact-form textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 16px;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #8a99ad;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.09);
}

#contact-form textarea {
    resize: vertical;
    min-height: 70px;
}

#contact-form .cta-button {
    margin-top: 6px;
    width: 100%;
    font-size: 0.95rem;
}

#contact-form .cta-button[disabled] {
    opacity: 0.6;
    cursor: default;
}

/* honeypot - hidden from real users */
#contact-form .hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    margin: 6px 0 0;
    min-height: 1.1em;
    font-size: 0.9rem;
}

.form-status.ok {
    color: #6ee7a8;
}

.form-status.err {
    color: #ff8a8a;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #cfd8e3;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.25s;
}

.modal-close:hover {
    color: #FFD700;
}
