/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(212, 175, 55, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.4);
    animation: morphIn 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
    animation: slideIn 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.15) saturate(1.1);
    transition: filter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide:hover img {
    filter: brightness(0.95) contrast(1.2) saturate(1.2);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4), transparent);
    color: var(--gold);
    padding: 50px 40px 35px;
    font-size: 1.6em;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    animation: captionFadeIn 2.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

.slide-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 35px;
    z-index: 10;
}

.slide-btn {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(244, 228, 188, 0.95));
    border: 3px solid var(--gold);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 1.5em;
    color: #1a1200;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    font-weight: bold;
    font-family: 'Cinzel', serif;
}

.slide-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: scale(1.2) rotate(180deg);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
}

.slide-btn:active {
    transform: scale(1.1) rotate(180deg);
}

.slide-dots {
    text-align: center;
    padding: 40px 0;
}

.dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.5);
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
}

.dot:hover {
    background: rgba(212, 175, 55, 0.7);
    transform: scale(1.3);
}
