/* Extra styling for Page B */

.main-image {
    width: 80%;
    max-width: 900px;
    display: block;
    margin: 30px auto 10px;
    border-radius: 12px;
}

/* Carousel */
.carousel-section {
    text-align: center;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.carousel img {
    width: 260px;
    max-width: 80vw;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.carousel-btn {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

/* Bottom buttons */
.bottom-buttons {
    text-align: center;
    margin: 40px 0 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
