@import '../components/mentahan.css';
@import '../components/herosection.css';
@import '../components/backtotop.css';
@import '../components/navbar.css';
@import '../components/footer.css';


/* About */
#about .about {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, #c9d6ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-out;
}

#about .tekfo {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.2;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #fff, #e0c3fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-out 0.2s both;
}

#about .univ {
    font-family: 'Robot Mono', sans-serif !important;
    color: var(--bs-light);
    font-weight: 500;
}



/* Content Area */

#content_area {
    background: #f8f9fa;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #a5a5ca, #2a292d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Feature Box */
.feature-box {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 107, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #006BFF, #6A8CAF);
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 107, 255, 0.1);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

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

.hero .content {
    z-index: 2;
    text-align: center;
}

/* Modern Navigation Tabs */
#menu_about {
    background: #f8f9fa;
    position: relative;
    z-index: 5;
}

.tabs-container {
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.tab-nav-item {
    position: relative;
    padding: 12px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 50px;
    margin: 0 4px;
}

.tab-nav-item i {
    font-size: 1.1rem;
    margin-right: 8px;
}

.tab-nav-item:hover {
    color: #5D3EFF;
}

.tab-nav-item.active {
    color: #5D3EFF;
    font-weight: 600;
}

.tab-indicator {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #5D3EFF, #00F0FF);
    border-radius: 3px;
    transition: all 0.3s ease;
    opacity: 0;
}

.tab-nav-item.active .tab-indicator {
    width: 30px;
    opacity: 1;
}

/* Content Tekfo */

#content_area #tekfo {
    padding-top: 30px;
    padding-bottom: 30px;
}

#content_area #tekfo h2 {
    font-family: 'DynaPuff', sans-serif !important;
}

#content_area .space {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #57537c5a;
}

#content_area .info_tekfo {
    font-family: 'Monsterrat', sans-serif !important;
}

#foto__1 {
    padding-top: 30px;
    padding-bottom: 30px;
}

#foto__1 img {
    transition: transform .3s ease-out;
}

#foto__1 .boys {
    font-family: 'Mansalva', sans-serif !important;
}

#foto__1 .desk__foto_1 {
    font-family: 'Montserrat', sans-serif !important;
}

#foto__1 .member_boys mark {
    font-family: 'Poppins', sans-serif !important;
}

#foto__2 {
    padding-top: 30px;
    padding-bottom: 30px;
}

#foto__2 .girls {
    font-family: 'Mansalva', sans-serif !important;
}

#foto__2 .desk__foto_2 {
    font-family: 'Montserrat', sans-serif !important;
}

#foto__2 .member_girls mark {
    font-family: 'Poppins', sans-serif !important;
}

.carousel-item {
    transition: none !important;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-item.active {
    position: relative;
}

/* STRUKTUR */

#struktur {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

#struktur .wrapper {
    background-color: #f0f0f0;
    border: 1px solid #57537c5a;
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
}

#struktur .judul h2 {
    font-family: 'Rye', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#struktur .judul p {
    font-family: 'Monsterrat', sans-serif !important;
}

#struktur .ketua,
#struktur .wakil_ketua,
#struktur .bendahara {
    background-color: #4d4e50;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #000;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

#struktur .ketua img,
#struktur .wakil_ketua img,
#struktur .bendahara img {
    width: 280px;
    height: 280px;
    border-radius: 8px 8px 0px 0px;
    border: 2px solid #000;
    object-fit: cover;
}

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

    .hero-content .badge {
        font-size: .4rem !important;
    }
}

@media (max-width: 770px) {
    #about .about {
        font-size: 3rem !important;
    }

    #about .tekfo {
        font-size: 3rem !important;
    }

    #about .unipem {
        font-size: 13px !important;
    }

    #about .univ {
        font-size: 12px !important;
    }

    .hero-content .badge {
        font-size: .7rem !important;
    }

    #menu_about a {
        font-size: 16px;
    }

    #tekfo .logo-tekfo {
        width: 160px !important;
        height: 160px !important;
    }

    #tekfo h2 {
        font-size: 18px !important;
    }

    #tekfo .smts {
        font-size: 14px !important;
    }

    .info_tekfo {
        font-size: 12px !important;
    }

    .desk__foto_1 {
        font-size: 12px !important;
    }

    .desk__foto_2 {
        font-size: 12px !important;
    }

    #struktur .judul h2 {
        font-size: 22px !important;
    }

    #struktur .judul p {
        font-size: 12px !important;
    }

    .footer_about {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .footer_about .row {
        text-align: center !important;
        gap: 20px !important;
    }

    .footer_about .col-md-4 {
        justify-content: center !important;
    }

    .footer_about .foot_desk {
        display: block !important;
    }

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


@media (max-width: 992px) {
    #about .about {
        font-size: 4rem;
    }

    #about .tekfo {
        font-size: 4rem;
    }

    #foto__2 .row {
        flex-direction: column-reverse !important;
    }
}

/* @media (max-width: 1200px) {} */

/* @media (max-width: 1400px) {} */