/* COVER PAGE (already working) */
.cover-wrapper {
    width: 100%;
    height: 100vh;
    background: black; /* gives the clean black frame */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* ensures full image is always visible */
}

@media (max-width: 600px) {
    .cover-image {
        content: url('cover-page-mobile.jpg'); /* your new portrait image */
        width: 100%;
        height: 100vh;
        object-fit: cover; /* fill screen, no black bars */
        object-position: center; /* center the portrait image */
    }
}


/* CONTACT SECTION */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background: black;
    font-family: Arial, sans-serif;
    color: white;
}

.contact-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: left;
}

.contact-section h1 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}
.coming-soon {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
    color: #ccc;
    letter-spacing: 1px;
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #444;
    background: #111;
    color: white;
    font-size: 16px;
    border-radius: 2px;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.send-btn {
    width: 100%;
    padding: 14px;
    background: white;
    color: black;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.footer {
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    color: #aaa;
}
