/* Hero Banner - Simple 2 Column Layout */
#hero-banner {
    width: 100%;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 3em;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    line-height: 1.6;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
}

.carousel-images {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16 / 9;
}

.carousel-slide {
    position: relative;
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide .image-credit {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 0.5rem 1rem;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top-left-radius: 8px;
    text-align: right;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    width: 12px;
    height: 12px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-image .image-credit {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 0.5rem 1rem;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top-left-radius: 8px;
    text-align: right;
}

/* Responsive adjustments */
@media screen and (max-width: 980px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-text p {
        font-size: 1em;
    }
}

@media screen and (max-width: 736px) {
    #hero-banner {
        margin-top: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-text h1 {
        font-size: 2em;
    }
    
    .carousel-images,
    .hero-image img {
        border-radius: 12px;
    }
}

/* Banner Image - Simple Two Column Layout */
#banner .image.object {
    width: 100%;
    height: 100%;
}

#banner .image.object img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}