﻿/* ================= HERO BEGIN ================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/herobg1.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65) );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    padding: 2rem 1rem;
    max-width: 1150px;
}



/* Tag */

.hero-tag {
    font-family: 'Cookie', cursive;
    font-size: 3.2rem;
    color: var(--primary-color);
    background: #fff;
    padding: 0.4rem 1.4rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 2.2rem;
}



/* Title */

.hero-content h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2.2rem;
}



/* Actions Box */

.hero-actions-box {
    border: 2px solid rgba(255, 255, 255, 0.95);
    padding: 2.4rem 3.8rem;
    border-radius: 8px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.25);
}



/* Actions */

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.6rem;
}



/* Cards */

.hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    transition: all 0.25s ease;
}



    /* Circle */

    .hero-card img {
        width: 58px;
        height: 58px;
        background: #fff;
        border-radius: 50%;
        object-fit: contain;
        box-shadow: 0 8px 18px rgba(0,0,0,0.3);
        transition: all 0.25s ease;
    }



    /* Text */

    .hero-card span {
        font-size: 1.15rem;
        font-weight: 400;
        letter-spacing: 0.7px;
        color: #fff;
    }



    /* Hover */

    .hero-card:hover {
        transform: translateY(-6px);
    }



/* ================= RESPONSIVE ================= */


/* Tablet */

@media (max-width: 992px) {

    .hero-tag {
        font-size: 2.5rem;
        margin-bottom: 1.8rem;
    }

    .hero-content h2 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .hero-actions-box {
        padding: 2rem 2.6rem;
    }

    .hero-actions {
        gap: 2.4rem;
    }

    .hero-card img {
        width: 50px;
        height: 50px;
    }

    .hero-card span {
        font-size: 1rem;
    }
}



/* Mobile */

@media (max-width: 576px) {

    .hero-actions-box {
        padding: 1.6rem 1.6rem;
        width: 100%;
        display: flex;
        justify-content: center;
        max-width: fit-content;
        margin: 0 auto;
    }

    .hero-tag {
        font-size: 1.9rem;
        margin-bottom: 1.6rem;
    }

    .hero-content h2 {
        font-size: 1.9rem;
        margin-bottom: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.8rem;
        max-width: fit-content;
    }

    .hero-card img {
        width: 46px;
        height: 46px;
    }

    .hero-card span {
        font-size: 0.95rem;
    }
}

/* ================= HERO END ================= */




/* ABOUT US COLLAGE */

.highlight-collage {
    position: relative;
    width: 100%;
    height: 420px;
}


/* Base image style */

.collage-img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 12px 26px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}


/* ================= LAYOUT ================= */


/* Image 1: Tall Left (75% height, 30% width) */

.highlight-collage {
    position: relative;
    width: 100%;
    height: 440px;
}
.polaroid-style .collage-img {
    position: absolute;
    object-fit: cover;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}
.highlight-collage .img-1 {
    top: 0;
    left: 0;
    width: 42%;
    height: 58%;
    transform: rotate(-5deg);
}



.highlight-collage .img-2 {
    top: 12%;
    left: 22%;
    width: 52%;
    height: 65%;
    transform: rotate(2deg);
    z-index: 3;
}



.highlight-collage .img-3 {
    bottom: 0;
    left: 4%;
    width: 42%;
    height: 32%;
    transform: rotate(4deg);
}


.highlight-collage .img-4 {
    bottom: 2%;
    right: 0;
    width: 44%;
    height: 32%;
    transform: rotate(-3deg);
}

@media (max-width: 992px) {

    .highlight-collage {
        height: 380px;
    }
}


@media (max-width: 576px) {

    .highlight-collage {
        height: 320px;
    }

    .polaroid-style .collage-img {
        padding: 7px;
    }


    .highlight-collage .img-1,
    .highlight-collage .img-2,
    .highlight-collage .img-3,
    .highlight-collage .img-4 {
        transform: rotate(0deg);
    }
}