/* DreamDrive Experience Slideshow - Teljes szélességű élménykép galéria */

.experience-slideshow-section {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    margin: -50px 0px 0px !important;
}

.experience-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-slide.active {
    opacity: 1;
    z-index: 2;
}

.experience-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.experience-slide.active .experience-slide-bg {
    transform: scale(1);
}

.experience-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.experience-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.experience-slide.active .experience-title {
    transform: translateY(0);
    opacity: 1;
}

.experience-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}

.experience-slide.active .experience-description {
    transform: translateY(0);
    opacity: 1;
}

.experience-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s, background-color 0.3s ease;
}

.experience-slide.active .experience-button {
    transform: translateY(0);
    opacity: 1;
}

.experience-button:hover {
    background-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 2;
}

/* Slideshow navigáció */
.experience-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Slideshow nyilak */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background-color: var(--primary-color);
}

.slide-arrow.prev {
    left: 20px;
}

.slide-arrow.next {
    right: 20px;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .experience-slideshow-section {
        height: 70vh;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .experience-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .experience-slideshow-section {
        height: 60vh;
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
