/* ===== Custom Two-Column Banner ===== */
.custom-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 75vh;
    background: linear-gradient(135deg, #014421 60%, #d4af37 110%);
    color: #fff;
    overflow: hidden;
    padding: 3rem 5%;
}

/* ===== Text Column ===== */
.banner-content {
    flex: 1 1 500px;
    max-width: 600px;
    z-index: 2;
}

.banner-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffd966;
    margin-bottom: 0.75rem;
}

.banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: #fff5c2;
}

.banner-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #f2f5f0;
}

/* ===== Buttons ===== */
.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #ffd966;
    color: #014421;
}

.btn.primary:hover {
    background-color: #e6be47;
}

.btn.secondary {
    border: 2px solid #ffd966;
    color: #ffd966;
    background: transparent;
}

.btn.secondary:hover {
    background-color: #ffd966;
    color: #014421;
}

/* ===== Image Column ===== */
.banner-image {
    flex: 1 1 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: rotateX('134deg');
}

.banner-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ===== Responsiveness ===== */
@media (max-width: 992px) {
    .custom-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .banner-content {
        max-width: 100%;
        padding-bottom: 2rem;
    }

    .banner-image img {
        max-width: 90%;
    }

    .banner-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-text {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.65rem 1.4rem;
        font-size: 0.9rem;
    }
}