@import '../components/mentahan.css';
@import '../components/navbar.css';


/* Home */
#home {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#background-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    color: var(--bs-white);
    padding: 20px;
}

.content .tekfo_home {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

.content .univ_home .unipem {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

.content .univ_home .smt {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif !important;
}

.content .univ_home .smt .badge {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.footer_home {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--bs-white);
    padding: 10px 20px;
    z-index: 10;
}

.social_media {
    display: flex;
    gap: 15px;
    z-index: 10;
}

.social_media a {
    text-decoration: none;
    color: var(--bs-white);
    cursor: pointer;
    border-radius: 50%;
    transition: all .3s ease-out;
}

.social_media a:hover,
.social_media a:focus {
    transform: scale(1.2);
    color: #909090;
}

.copyright {
    font-weight: 600 !important;
}

.copyright small a {
    text-decoration: underline;
    color: var(--bs-white);
    transition: all .3s ease-out;
}

.copyright small a:hover,
.copyright small a:focus {
    text-decoration: none;
    color: #a62aff;
}

@media (max-width: 400px) {
    .content .container .tekfo {
        font-size: 2rem !important;
    }

    .content .container .smt {
        font-size: 13px !important;
    }

    .content .container p .unipem{
        font-size: 13px !important;
    }

    .social_media a i {
        font-size: 20px !important;
    }

    .copyright {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .offcanvas {
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-width: 770px) {
    .content .container .tekfo_home {
        font-size: 2.8rem !important;
    }

    .content .container .univ_home {
        padding: 0 !important;
        margin: 0 !important;
    }

    .content .container .univ_home small {
        font-size: 12px !important;
    }
}

@media (max-width: 992px) {
    .dropdown>.dropdown-menu {
        visibility: hidden;
        opacity: 0;
        top: 100%;
        display: block;
        transition: all 0.1s ease-out;
    }

    .dropdown:hover>.dropdown-menu {
        padding: 20px 0;
        display: block;
        visibility: visible;
        opacity: 1;
        transition: all 0.2s ease-in-out;
    }

    .dropdown-item:hover {
        color: var(--bs-white);
        background-color: var(--bs-black);
    }

    .content .container .tekfo {
        font-size: 3rem !important;
    }

    .content .container .smt {
        font-size: 16px !important;
    }

    .content .container p small{
        font-size: 20px !important;
    }
}