/* ============================================
   HERO SECTION - FULL SCREEN
   ============================================ */

/* Full screen hero carousel */
#heroCarousel {
    margin: 0 !important;
    padding: 0 !important;
}

#heroCarousel .carousel-inner {
    height: 100vh;
}

#heroCarousel .carousel-item {
    height: 100vh;
}

#heroCarousel .carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

/* Indicators positioning for full screen */
#heroCarousel .carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Controls positioning for full screen */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

#heroCarousel .carousel-control-prev {
    left: 0;
}

#heroCarousel .carousel-control-next {
    right: 0;
}

/* Text overlay positioning */
#heroCarousel .carousel-item > div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

/* Responsive adjustments for full screen hero */
@media (max-width: 768px) {
    #heroCarousel {
        height: 70vh;
    }

    #heroCarousel .carousel-inner {
        height: 70vh;
    }

    #heroCarousel .carousel-item {
        height: 70vh;
    }

    #heroCarousel .carousel-item img {
        height: 70vh;
    }

    #heroCarousel .carousel-item h2 {
        font-size: 1.8rem !important;
    }

    #heroCarousel .carousel-item p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    #heroCarousel {
        height: 50vh;
    }

    #heroCarousel .carousel-inner {
        height: 50vh;
    }

    #heroCarousel .carousel-item {
        height: 50vh;
    }

    #heroCarousel .carousel-item img {
        height: 50vh;
    }

    #heroCarousel .carousel-item h2 {
        font-size: 1.4rem !important;
    }

    #heroCarousel .carousel-item p {
        font-size: 0.8rem !important;
    }

    #heroCarousel .carousel-indicators button {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Welcome text responsive */
@media (max-width: 768px) {
    .hero-welcome-text h1 {
        font-size: 2.5rem !important;
    }

    .hero-welcome-text p {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-welcome-text h1 {
        font-size: 1.8rem !important;
    }

    .hero-welcome-text p {
        font-size: 0.9rem !important;
    }
}
