/* css/submit.css */

/* Hero Section */
.submit-hero-section {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    /* Aligns content to the bottom */
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('../images/backgrounds/seats.jpg') no-repeat center center/cover;
    padding-bottom: 4rem;
    /* Adds space from the bottom edge */
}

.submit-hero-section h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    /* Adds shadow for readability */
}

/* Submission Content Section */
.submit-content-section {
    background-color: #fff;
    color: var(--text-dark);
    padding: 4rem 0;
}

.submit-text-container {
    max-width: 800px;
    text-align: center;
    padding-bottom: 0;
}

.submit-text-container h2,
.submit-text-container h3,
.submit-text-container h4 {
    margin-bottom: 1.5rem;
}

.submit-text-container h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
}

.submit-text-container h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 1.5rem;
    margin-top: -1rem;
}

.submit-text-container p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Awards Section */
.awards-section {
    position: relative;
    padding: 6rem 0;
    background: url('../images/backgrounds/ger.jpg') no-repeat center center/cover;
}

.awards-section .background-overlay {
    background-color: rgba(255, 255, 255, 0.85);
    /* 85% opaque white overlay */
}

.awards-image {
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
    max-width: 90%;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .submit-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .submit-hero-section h1 {
        font-size: 2.5rem;
    }

    .submit-text-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}