/* ===============================
   Banner Slider - Transparent Text Version
   =============================== */

/* Reset */
.banner-slider * {
    box-sizing: border-box;
}

/* Banner Section */
.banner-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: -100px;
}

/* Overlay for text readability */
.banner-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* soft dark overlay */
    z-index: 2;
}

/* Slides Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomInOut 15s ease-in-out infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ===============================
   Transparent Text Block
   =============================== */

.constant-text-block {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: transparent;
    padding: 2rem 3rem;
    max-width: 650px;
    z-index: 3;
    color: #fff;
    animation: textFadeIn 1.5s ease-out;
}

/* Text */
.text-content {
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-description {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-top: 1rem;
    font-weight: 400;
}

/* CTA Button (optional - remove if not needed) */
.cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* ===============================
   Accent Angled Corners
   =============================== */

.angle-block {
    position: absolute;
    width: 45px;
    height: 45px;
    border: 3px solid #a97c0a; /* accent color */
    z-index: 1;
}

/* Top left corner */
.angle-block.top-right {
    top: -15px;
    left: -15px;
    border-bottom: none;
    border-right: none;
}

/* Bottom left corner */
.angle-block.bottom-left {
    bottom: -15px;
    left: -15px;
    border-top: none;
    border-right: none;
}

/* Subtle animation */
@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   Navbar stacking
   =============================== */

.navbar {
    position: relative;
    z-index: 100 !important;
    background: transparent !important;
}

/* ===============================
   Responsive Design
   =============================== */

@media (max-width: 768px) {
    .banner-slider {
        margin-top: -80px;
        height: 80vh;
    }

    .constant-text-block {
        left: 5%;
        right: 5%;
        padding: 2rem;
        max-width: none;
    }

    .main-title {
        font-size: 2rem;
    }

    .main-description {
        font-size: 1.1rem;
    }

    .angle-block {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        margin-top: -70px;
        height: 70vh;
    }

    .main-title {
        font-size: 1.6rem;
    }

    .main-description {
        font-size: 1rem;
    }

    .constant-text-block {
        padding: 1.5rem;
    }
}
