/* Slider Section Styles */
.slider-section {
    position: relative;
    width: 100%;
    height: 500px;
    max-height: 500px;
    min-height: 500px;
    overflow: hidden;
    /* margin-bottom: 40px; */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-left {
    max-width: 600px;
}

.current-slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.0rem;
    line-height: 1;
}

.current-slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.slider-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #fff;
    transform: scale(1.1);
}

.nav-button svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.next-slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    text-align: right;
    max-width: 400px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .slider-section {
        height: 700px;
        max-height: 700px;
        min-height: 700px;
    }

    .slide-content {
        padding: 0 2rem;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        align-items: flex-start;
    }

    .current-slide-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .current-slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .next-slide-title {
        display: none;
    }

    .slider-nav {
        justify-content: flex-start;
        margin-bottom: 1.5rem;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .nav-button svg {
        width: 20px;
        height: 20px;
    }
} 