body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background: #000;
    height: 100vh;
    overflow: hidden;
}

/* HERO IMAGE - responsive fit */
.hero-bg {
    position: fixed;
    inset: 0;
    background: url('images/salmograby.jpg') center center / cover no-repeat;
    z-index: -1;
    opacity: 0.75;
}

/* MAIN WRAPPER */
.coming-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* CONTACT BUTTON - top right */
.contact-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #ffcd2e;
    color: #000;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
    transition: background 0.3s ease;
}

    .contact-btn:hover {
        background: #ffd84f;
    }

/* BIO PANEL - bottom left */
.bio-panel {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 90%;
    font-size: 18px;
    line-height: 1.6;
}

/* MODAL BACKDROP */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

/* MODAL BOX */
.modal-content {
    background: #ffcd2e;
    color: #000;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .contact-btn {
        top: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 16px;
    }

    .bio-panel {
        bottom: 20px;
        left: 15px;
        font-size: 16px;
        padding: 15px 20px;
        max-width: 90%;
    }

    .modal-content {
        width: 95%;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-btn {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .bio-panel {
        bottom: 15px;
        left: 10px;
        font-size: 14px;
        padding: 10px 15px;
    }
}
