#homeSec {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: color-mix(in srgb, var(--surface_color), transparent 10%);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;

    .container {
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    h1 {
        color: var(--white);
        font-size: 3em;
        font-weight: 700;
    }

    h1 span {
        font-size: 1em;
        font-weight: 700;
        color: var(--contrast_color);
    }

    h3 {
        color: var(--contrast_color);
    }

    .cta_register {
        position: relative;
        overflow: hidden;
        cursor: pointer;

        font-size: 1.1em;
        letter-spacing: 1px;

        display: inline-block;
        border-radius: 60px;
        line-height: 1;
        margin: 10px;
        margin-top: 2rem;
        padding: 1.1rem 2.2rem;
        border: 2px solid var(--contrast_color);
        font-weight: 700;
        background: var(--contrast_color);
        color: var(--surface_color);
        transition: 0.5s;

        i {
            position: absolute;
            bottom: -2rem;
            right: 12%;
            font-size: 1.2em;
            transition: 0.5s;
        }

        &:hover {
            padding-right: 4.2rem;
            padding-left: 2rem;
            color: var(--white);
            background: var(--surface_color);

            i {
                bottom: 0.8rem;
            }
        }
    }

    .home-waves {
        position: relative;

        .wave1 use {
            animation: move-forever1 10s linear infinite;
            animation-delay: -2s;
            fill: var(--contrast_color);
            opacity: 0.6;
        }

        .wave2 use {
            animation: move-forever2 8s linear infinite;
            animation-delay: -2s;
            fill: var(--white);
            opacity: 0.4;
        }

        .wave3 use {
            animation: move-forever3 6s linear infinite;
            animation-delay: -2s;
            fill: var(--white);
        }
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}



#aboutSec {
    padding-top: 3.5rem;

    .about-img {
        min-height: 350px;
        position: relative;

        img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
        }
    }

    .about_details {
        padding: 1.5rem;
        background-color: color-mix(in srgb,
                var(--text_default_100),
                transparent 96%);

        h4 {
            text-transform: uppercase;
            font-size: 1.1rem;
            color: var(--text_default_50);
        }

        .detail {
            h3 {
                font-size: 2.25rem;
                color: var(--text_default_75);
                font-weight: 700;
            }

            p {
                margin-bottom: 2rem;
            }
        }

        .moreBtn {
            border: 2px solid var(--text_heading_color);
            padding: 0.5rem 1rem;
            font-size: 1.1em;
            font-weight: 700;
            color: var(--contrast_color);
            transition: 0.5s;

            &:hover {
                border-radius: 5px;
                color: var(--surface_color);
            }
        }
    }
}



#gallerySec {
    h1 {
        text-align: center;
    }

    .thumbnail {
        overflow: hidden;
        border-radius: 10px;
        img {
            width: 100%;
            height: 250px;
            object-fit: fill;
            transition: all ease-in-out 0.4s;
        }

        &:hover img {
            transform: scale(1.05);
        }
    }

    .btn-group {
        width: 20rem;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;

        .btn {
            margin: 0 5px;
            padding: 0.5rem 1rem;
        }

        button:not(.active) {
            border: 2px solid var(--contrast_color);
            background-color: var(--white);

            &:hover {
                border: 2px solid var(--text_heading_color);
                color: var(--text_heading_color);
            }
        }

        button.active {
            background-color: var(--text_heading_color);
            color: var(--white);
        }
    }
}



#contactSec{
    .card-group{
        gap: 1.3rem;
        justify-content: center;
        align-items: center;
    }
    .card{
        min-width: 30rem !important;
        max-width: 45rem !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 3rem 2rem;
        
        .card-body{
            min-height: 350px;
            padding: 0;
        }

        .card-title{
            font-size: 1.6em;
            font-weight: 700;
            margin-bottom: 2.1rem;
        }

        .info-item{
            margin-bottom: 2rem;

            h3{
                font-size: 1.2em;
                font-weight: 600;
                margin-bottom: 0.5rem;

                i{
                    font-size: 1em;
                    margin-right: 0.2rem;
                    font-weight: 800;
                }
            }
            p{
                margin-bottom: 0;
                margin-left: 1.6rem;
            }
        }
    }
}
















@media (max-width: 1199px) {
    #home .container * {
        scale: 0.8;
    }
}

@media (min-width: 991px) {
    #aboutSec {
        padding: 3.5rem 0;

        .title {
            max-width: 65%;
        }

        .about-img {
            position: absolute;
            top: 0;
            right: 0;
            min-height: 600px;
        }

        .about_details {
            padding: 2rem;
            padding-right: 35%;
        }
    }
}

@media (max-width: 776px){
    #contactSec{
        .card-group{
            padding: 0;
        }
        .title{
            margin-bottom: 2.2rem !important;
        }
        .card{
            scale: 0.9;
            min-width: 20rem !important;
        }
    }
}