/* ===== Gallery Page Styles ===== */
::-webkit-scrollbar {
    display: none;
}

html, body {
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.section {
    padding: 10% 5%;
    background-color: #f7f7f7;
    text-align: center;
    flex: 1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111;
}

.DescriptionText {
    max-width: 50rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    min-height: 150px;
}

.contact-form button {
    background-color: #000;
    color: #ffd700;
    padding: 0.9rem 1.8rem;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #222;
}

.carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    animation: fadeSlideIn 0.8s ease-in-out;
    flex-wrap: wrap;
}

.carousel img {
    width: 45%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.carousel-text {
    margin-top: 2.5rem;
    text-align: center;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .carousel {
        flex-direction: column;
    }

    .carousel img {
        width: 90%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .carousel img {
        width: 90%;
    }
    .carousel-text {
        font-size: 0.9rem;
    }
    .contact-form {
        padding: 1.5rem;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }
    .section {
        padding: 25% 5%;
    }
}

@media (max-width: 480px) {
    .carousel img {
        width: 100%;
    }
    .carousel-text h2 {
        font-size: 1.25rem;
    }
    .carousel-text p {
        font-size: 0.85rem;
    }
    .carousel-controls button {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}