﻿/* ================= PATRON SECTION ================= */
.patron-section {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* SLIDER */
.patron-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* SLIDE */
.patron-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

    .patron-slide.active {
        opacity: 1;
        z-index: 1;
    }

/* DARK OVERLAY */
.patron-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* CONTENT */
.patron-container {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

/* TEXT */
.patron-text {
    flex: 1.2;
}

    .patron-text h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

.patron-line {
    display: block;
    width: 70px;
    height: 3px;
    background: #ffcc00;
    margin-bottom: 15px;
}

.patron-text p {
    font-size: 15px;
    line-height: 1.7;
}

/* PROFILE */
.patron-profile {
    flex: 0.8;
    text-align: center;
}

    .patron-profile img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #ffcc00;
        margin-bottom: 10px;
    }

    .patron-profile h4 {
        margin: 5px 0;
        font-size: 18px;
    }

    .patron-profile span {
        font-size: 14px;
        opacity: 0.85;
    }

/* ARROWS */
.patron-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 26px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 5;
}

    .patron-arrow.left {
        left: 15px;
    }

    .patron-arrow.right {
        right: 15px;
    }

    .patron-arrow:hover {
        background: #ffcc00;
        color: #000;
    }

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .patron-section {
        height: auto;
    }

    .patron-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .patron-text h2 {
        font-size: 34px;
    }

    .patron-profile img {
        width: 110px;
        height: 110px;
    }

    .patron-arrow {
        font-size: 22px;
        width: 38px;
        height: 38px;
    }
}
