.hero {
    min-height: 85vh;
    overflow-x: hidden;


    background-image:
        linear-gradient(rgba(0, 0, 0, .5),
            rgba(0, 0, 0, .5)),
        url("../assets/images/home-hero1.jpeg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    color: white;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero h2 {
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}


.btn {
    display: inline-block;
    background: #d4af37;
    color: black;
    padding: 2rem;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: bold;
    width: 300px;
    height: 100px;
    max-width: 100%;
}







/* count down styling  */

.count-down-title {
    margin-top: 1rem;
    color: orange;
    font-size: 4.5rem;
    font-weight: bold;
    background-color:#b61d56;
    border-radius: 10px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;

    margin: 1rem 0;

    flex-wrap: wrap;
}

.time-box {

    width: 100px;
    /* background: rgba(255, 255, 255, .15); */
    background-color: #b61d56;
    backdrop-filter: blur(8px);

    border-radius: 10px;

    padding: 1rem;

    text-align: center;

    color: orange;
}

.time-box span {

    display: block;
    font-size: 3rem;
    font-weight: bold;
}

.time-box small {

    text-transform: uppercase;
    letter-spacing: 1px;
}


.about,
.theme,
.cta {
    padding: 5rem 2rem;
    text-align: center;
}

.about p,
.theme p,
.cta p {
    max-width: 800px;
    margin: auto;
}

.cta .btn{
    margin-top: 2rem;
    
}


.info-cards {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 1.5rem;

    padding: 3rem 2rem;
}

.card {
    background: white;

    padding: 2rem;

    border-radius: 10px;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, .1);

    text-align: center;
}

.highlights {
    padding: 5rem 2rem;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 2rem;
}

.highlights {
    padding: 5rem 2rem;
    background: #f8f6f1;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #1e3a5f;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.highlight {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    border: 1px solid rgba(30, 58, 95, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.highlight img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.highlight p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #1e3a5f;
    margin-top: .75rem;
}


.theme blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}


/* 
  HERO CAROUSEL 
*/

.carousel {
    margin: 1rem 0;
    width: 100%;
    max-width: 800px;
    min-height: 100px;
    background-color: #7fb048;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-content * {
    max-width: 100%;
}



.carousel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
}

.carousel img {
    width: 80%;
    max-width: 100%;
    height: auto;
    max-height: 320px;
    margin-top: 10px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}



.carousel h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
    
}

.carousel p {
    max-width: 700px;

    margin: 0 auto;

    font-size: 1.2rem;

    line-height: 1.7;
}

/* ========================================
   CAROUSEL ANIMATION
======================================== */

.carousel {
    margin: 2rem 0;
}

.carousel-content {
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.carousel-content.fade-out {
    opacity: 0;
}

/* .carousel h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #d4af37;
    margin-bottom: 1rem;
} */

.carousel p {
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

/* ========================================
   DOTS
======================================== */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: .75rem;

    margin-top: 2rem;
}

.dot {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);

    cursor: pointer;

    transition: all .3s;
}

.dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

/* Phone responsiveness */
@media (max-width: 480px) {
    .carousel {
        width: 100%;
        padding: 0;
    }


    .carousel-content {
        padding: 1rem 0.75rem;
    }

    .carousel img {
        width: 100%;
        max-width: 100%;
        max-height: 220px;
        margin-top: 0.5rem;
    }


    .carousel h3 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .carousel p {
        font-size: 1rem;
        padding: 0 0.25rem;
    }

    .carousel-dots {
        margin-top: 1rem;
        gap: 0.6rem;
    }

    .hero h1{
        font-size: 2.8rem;
    }

.btn{
        width: 100%;
        max-width: 320px;
        height: auto;
        padding: 0.85rem 1rem;
        font-size: 1.25rem;
        border-radius: 8px;
    }

    
.count-down-title {
    font-size: 2.5rem;
}


}

