body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f8f8f8;
    color: #222;
}

/* HEADER */

header {
    background: linear-gradient(to right, #222, #444);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    letter-spacing: 1px;
}

/* GALLERY */

.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* CAROUSEL */

.carousel {
    position: relative;
    width: 90%;
    max-width: 1100px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: white;
    align-items: center;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 700px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-images img {
    width: auto;
    height: 90%;
    display: none;
    border-radius: 18px;
    object-fit: cover;
}

/* ACTIVE IMAGE */

.carousel-images img.active {
    display: block;
}


/* BUTTONS */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.prev:hover,
.next:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.08);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* CONTACT SECTION */

.contact {
    background: white;
    margin: 50px auto;
    padding: 40px 20px;
    width: 85%;
    max-width: 900px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.contact h2 {
    margin: 0 0 15px;
    font-size: 2.2rem;
    color: #222;
}

.contact p {
    margin: 12px 0;
    font-size: 1.1rem;
    color: #555;
}

.contact a {
    color: #ff5733;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.contact a:hover {
    color: #d9431f;
}

/* FOOTER */

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    header h1 {
        font-size: 2rem;
    }

    .gallery {
        padding: 20px 10px;
    }

    .carousel {
        width: 100%;
        border-radius: 12px;
    }

    .carousel-images img {
        max-height: 400px;
        border-radius: 12px;
    }

    .prev,
    .next {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .contact {
        width: 92%;
        padding: 30px 15px;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact p {
        font-size: 1rem;
    }
}