* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    color: #333;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-top: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-container.circle {
    border-radius: 50%;
}

.image-container.circle.small {
    grid-row: span 1;
    grid-column: span 1;
    height: 150px;
}

.image-container.circle.medium {
    grid-row: span 1;
    grid-column: span 1;
    height: 200px;
}

.image-container.circle.large {
    grid-row: span 2;
    grid-column: span 2;
    height: 300px;
}

.image-container.rectangle {
    border-radius: 12px;
    grid-row: span 1;
    grid-column: span 2;
    height: 200px;
}

.image-container:before {
    content: '';
    display: block;
    padding-top: 75%;
}

.decorative-elements {
    position: relative;
    height: 100px;
    margin-bottom: 30px;
}

.half-circle {
    width: 100%;
    height: 100px;
    background: #ffe259;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    margin-bottom: -50px;
    z-index: -1;
}

.wave {
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 40px;
    background: url('../images/wave.svg') repeat-x;
    background-size: cover;
}

.form-container {
    background: linear-gradient(to right, #ffe259, #ffa751);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.form-control label {
    margin-bottom: 8px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.form-control input[type="text"],
.form-control input[type="email"],
.form-control textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.form-control textarea {
    height: 100px;
    resize: none;
}

.form-control input[type="text"]:focus,
.form-control input[type="email"]:focus,
.form-control textarea:focus {
    border: 2px solid #fff;
}

.form-control-submit {
    text-align: center;
}

.form-control-submit input[type="submit"] {
    background-color: #fff;
    color: #ffa751;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.form-control-submit input[type="submit"]:hover {
    background-color: #ffa751;
    color: #fff;
}

@media (max-width: 768px) {
    .form-control {
        max-width: 90%;
    }
}
