/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    top: 15%;
    left: 5%;
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-size: 2.5rem;
    margin: 0;
}

@media screen and (max-width: 600px) {
    .hero-text-overlay {
        top: 10%;
        left: 5%;
    }

    .hero-title {
        font-size: 1.6rem;
    }
}

/* Main Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 6px;
}

input, textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

textarea {
    resize: vertical;
    min-height: 160px;
}

button {
    background-color: #67306C;
    color: #fff;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 160px;
}

button:hover {
    background-color: #512652;
}

/* Utility */
.hidden {
    display: none;
}

.form-space {
    margin-bottom: 80px;
}