/* Premium Gallery Styles */
.galerie-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

.premium-gallery {
    position: relative;
    min-height: 600px;
    margin-bottom: 3rem;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.slide-content.reverse {
    direction: rtl;
}

.slide-content.reverse > * {
    direction: ltr;
}

.slide-media {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.slide-media.portrait-video {
    max-width: 400px;
    margin: 0 auto;
}

.slide-media.portrait-video video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide-text {
    padding: 2rem 0;
}

.slide-category {
    display: inline-block;
    background: rgba(204, 153, 51, 0.2);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slide-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.slide-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
}

.slide-features li::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: rgba(204, 153, 51, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 0.5rem;
    font-weight: bold;
}

.slide-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.slide-cta:hover {
    background: #b8861f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 153, 51, 0.3);
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-nav-btn {
    background: rgba(204, 153, 51, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    gap: 0.8rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(204, 153, 51, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--gold);
    width: 40px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .slide-content.reverse {
        direction: ltr;
    }

    .slide-media {
        max-width: 100%;
    }

    .slide-media img {
        height: 400px;
    }

    .slide-media.portrait-video {
        max-width: 300px;
    }

    .slide-media.portrait-video video {
        height: 500px;
    }

    .slide-text h3 {
        font-size: 2rem;
    }

    .slide-features {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-nav {
        gap: 1rem;
    }
}
