/* Hero Section - Full Width Image */
.gallery-hero {
    position: relative;
    height: 70vh;
    height: -webkit-fill-available;
    min-height: 500px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 10vh;
}

.gallery-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 2rem;
}

.gallery-hero-content h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gallery-hero-content p {
    font-family: var(--font-body);
    font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-hero {
        height: 50vh;
        min-height: 350px;
        margin-top: 8vh;
    }
    
    .gallery-hero-content h1 {
        font-size: 2rem;
    }
    
    .gallery-hero-content p {
        font-size: 1rem;
    }
}

/* Slideshow Section */
.gallery-slideshow-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.gallery-slideshow-container {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--off-white);
}

.gallery-slideshow-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slideshow-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    min-height: 500px;
}

.gallery-slideshow-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.gallery-slideshow-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin-top: 2rem;
}

/* Navigation Arrows */
.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--green);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    border-radius: 50%;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slideshow-prev {
    left: 20px;
}

.slideshow-next {
    right: 20px;
}

/* Dots */
.slideshow-dots {
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 1rem;
    position: relative;
    bottom: auto;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--green-dark);
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-slideshow-section {
        padding: 3rem 0;
    }
    
    .gallery-slideshow-slide {
        min-height: 300px;
    }
    
    .gallery-slideshow-slide img {
        max-height: 300px;
    }
    
    .slideshow-prev,
    .slideshow-next {
        font-size: 1.2rem;
        padding: 0.5rem 0.8rem;
    }
    
    .slideshow-prev {
        left: 10px;
    }
    
    .slideshow-next {
        right: 10px;
    }

    .dot{
        width: 10px;
        height: 10px;
    }
}