 /* Structure
 *  ------------------------------------------------------------------
 *  # Dev styles
 *  # Reset 
 *  # Typography
 *  # Spacing 
 *  # Wrapper
 *  # Button 
 *  # Form
 *  # Image
 *  # Elevasion 
 *  # Hamburger
 *  # Backgrounds 
 *  # Transition_Animation
 *  # Pages
 *    ## Home
 *    ## About
 *    ## Contact
 *    ## Single
 *  # Responsive
 */




/* # Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

body, html {
    background: #FFFFFF;
    margin: 0;  
    overflow-x: hidden;
}

body.lock {
    overflow-y: hidden;
}

div, section {
    display: block;
    position: relative;
}

ol, ul {
    list-style: none;
    margin-bottom: 0px;
}

li {
    display: block;
}

a, a:hover, a:visited, a:active, a:link {
    color: inherit;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
    /* line-height: 0; */
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

[hidden] {
    display: none !important;
}

.w-100 {
    width: 100%;
}
.w-50 {
    width: 50%;
}
.h-100 {
    height: 100%;
}
.h-50 {
    height: 50%;
}

.relative {
    position: relative;
}

.swiper-container, .swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Pastikan gambar tidak menyebabkan reflow */
.swiper-slide img {
  image-rendering: -webkit-optimize-contrast;
}

.overflow-hidden {
    overflow: hidden;
}

img.fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.bg-stripped {
    background: repeating-linear-gradient(
    45deg,
    #f9f9f9,
    #e7e7e7 15px
    );                
}

.bg-micro {
    position: absolute;
    width: 100%;
    background-size: contain;   
    background-position: center center;
    background-repeat: no-repeat;    
    max-height: 100%;
    pointer-events: none;
}

.overlay-bottom {
    --color: rgb(0, 0, 0);
    --height: 50%;
    
    position: absolute;
    width: 100%;
    height: var(--height);
    bottom: 0; left: 0;
    background: linear-gradient(to top, var(--color), transparent);
    pointer-events: none;
}

/* # Typography */

@font-face {
    font-family: 'RKing';
    src: url('../fonts/Retroking.ttf');
  }

@font-face {
    font-family: 'Vintage';
    src: url('../fonts/VintageWarehouse.woff2');
}

@font-face { font-family: 'Inter'; font-weight: bold; src: url('../fonts/Inter_24pt-Bold.ttf');}
@font-face { font-family: 'Inter'; font-weight: 400; src: url('../fonts/Inter_24pt-Regular.ttf');}
@font-face { font-family: 'Inter'; font-weight: 600; src: url('../fonts/Inter_24pt-Medium.ttf');}

body, html {
    font-family: 'Inter', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #6c6a74;
    line-height: 1;    
}

p {
    line-height: 1.8;
  }

h1, h2, h3, h4, h5, h6 {
font-family: 'Inter';
color: black;
-webkit-font-smoothing: antialiased;
-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
text-shadow: rgba(0,0,0,.01) 0 0 1px;
font-variant-ligatures: common-ligatures;
text-rendering: optimizeLegibility;
}

.text-bold {
    font-weight: bold;
}

.heading {
    font-family: 'RKing';
}

.heading-vintage {
    font-family: 'Vintage';
}

h1{font-size: 60px;}
h2{font-size: 42px;}
h3{font-size: 30px;}
h4{font-size: 20px;}
h5{font-size: 15px;}
h6{font-size: 12px;}

.section-heading {
    font-size: clamp(36px, 5vw ,60px);
}


/* # Spacing  */


/* # Wrapper */

section {
    width: 100%;
    position: relative;
}
section.full-height {
    min-height: 100vh;
}
.content-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    padding: 0 45px;
}

/* # Button  */
/* # Form */
/* # Image */
/* # Elevasion  */

 .pos-relative {
     position: relative;
 }
 .elv-0 {z-index: 1;}
 .elv-1 {z-index: 10;}
 .elv-2 {z-index: 20;}
 .elv-3 {z-index: 30;}
 .elv-4 {z-index: 40;}
 .elv-5 {z-index: 50;}
 .elv-6 {z-index: 60;}
 .elv-7 {z-index: 70;}
 .elv-8 {z-index: 80;}
 .elv-9 {z-index: 90;}
 .elv-10 {z-index: 100;}
 .elv-top {z-index: 999;}

/* # Hamburger */

 .hamburger {
     padding: 15px 15px;
     display: inline-block;
     cursor: pointer;
     transition-property: opacity, filter;
     transition-duration: 0.15s;
     transition-timing-function: linear;
     font: inherit;
     color: inherit;
     text-transform: none;
     background-color: transparent;
     border: 0;
     margin: 0;
     overflow: visible;
 }

 .hamburger:hover {
     opacity: 0.7;
 }

 .hamburger.is-active:hover {
     opacity: 0.7;
 }

 .hamburger.is-active .hamburger-inner,
 .hamburger.is-active .hamburger-inner::before,
 .hamburger.is-active .hamburger-inner::after {
     background-color: #000;
 }

 .hamburger-box {
     width: 40px;
     height: 24px;
     display: inline-block;
     position: relative;
 }

 .hamburger-inner {
     display: block;
     top: 50%;
     margin-top: -2px;
 }

 .hamburger-inner,
 .hamburger-inner::before,
 .hamburger-inner::after {
     width: 40px;
     height: 4px;
     background-color: #000;
     border-radius: 4px;
     position: absolute;
     transition-property: transform;
     transition-duration: 0.15s;
     transition-timing-function: ease;
 }

 .hamburger-inner.light,
 .hamburger-inner.light::before,
 .hamburger-inner.light::after {
     background-color: #ffffff;
 } 

 .hamburger-inner::before,
 .hamburger-inner::after {
     content: "";
     display: block;
 }

 .hamburger-inner::before {
     top: -10px;
 }

 .hamburger-inner::after {
     bottom: -10px;
 }

 /*
   * Spin
   */
.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger {
    padding: 0;
    outline: none;
    overflow: hidden;
    width: 25px;
    height: 25px;
}

.hamburger .hamburger-box {
    width: 100%;
    height: 100%;
}

.hamburger .hamburger-inner,
.hamburger .hamburger-inner::before,
.hamburger .hamburger-inner::after {
    width: 100%;
    height: 3px;
}

.hamburger .hamburger-inner::before {
    top: -8px;
}
.hamburger .hamburger-inner::after {
    bottom: -8px;
}

/* # Backgrounds  */


/* # Transition_Animation */

@keyframes sonarEffect {
  0% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.8;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgb(227, 255, 114), 0 0 0 10px rgba(255,255,255,0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgb(227, 255, 114), 0 0 0 10px rgba(255,255,255,0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.td-marquee {
    overflow: hidden;
}

.td-marquee .inner {
    /* Default var */
    --speed: 10s;
    --direction: forwards;
    --margin-right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content; 
    min-width: 100%;
    animation: td-marquee_anima var(--speed) linear infinite var(--direction);
    will-change: transform;
}

.td-marquee .item {
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: var(--margin-right);
}

@keyframes td-marquee_anima {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}




/*  =============================*
*   # Pages 
*   =============================*/


/* Header */

header {width: 100%; position: relative; margin-bottom: 80px;}
.main-header {
    padding: 20px 0;
    background-color: #FFFFFFdf;
    position: fixed;
    top: 0; left: 0;   
    backdrop-filter: blur(3px);
}
.main-header .sitelogo {
    cursor: pointer;
}
.main-header .sitelogo img {
     width: auto;
     height: 100%;
     max-height: 40px;
}
.main-header .drawer-trigger {
    cursor: pointer;
    transform: scale(1.3);
}


/* Site Drawer */
header .site-drawer {
    width: 100%;
    height: 100%;
    position:fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
}

.site-drawer .drawer-title {
    width: 100%;
    height: 100%;
    background-color: #B3222B;
    padding-left: 10%;
}
.site-drawer .drawer-title .heading {
    font-size: calc(100vw / 18);
}

.site-drawer .drawer-title .subtitle {
    font-size: calc(100vw / 54);
    color: #ffffffa6;
}

.site-drawer .drawer-right {
    width: 100%;
    height: 100%;
    background-color: #FFFDD0;
}

.site-drawer .drawer-content {
    width: 50%;
    height: 80%;
    background: black;
    position: absolute;
    top: 50%;
    right: 8%;
    border-radius: 50px;
    transform: translateY(-50%);
    padding: 0 clamp(16px, 2vw, 50px);
}

.site-drawer .drawer-content * {
    color: white;
}

.site-drawer .drawer-content .close {
    position: absolute;
    top: 5%;
    right: 5%;
    line-height: 0;
    background-color: black;
    padding: 16px;
    cursor: pointer;
    transition: background .2s ease, transform .3s ease;
    border-radius: 25px;
}

.site-drawer .drawer-content .close:hover {
    background-color: #B3222B;
    transform: scale(1.2);
}

.site-drawer .drawer-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.2;
    font-weight: 400;
    color: #ffffff88;
}

.site-drawer .drawer-content .heading {
    font-size: clamp(16px, 5vw , 36px);
}
.site-drawer .drawer-content .number {
    font-size: clamp(15px, 1vw, 24px);
}

.site-drawer .drawer-content .item {
    padding: clamp(16px, 1vw, 45px) 25px;
    width: 100%;
    border-radius: 25px;
    transition: background .3s ease;
}

.site-drawer .drawer-content .item:hover {
    background: #B3222B;
}


/* Hero */

#home .hero {
    background: #fff url('../img/bg2.jpg') no-repeat center / cover;
}

#home .video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(25px, 25px + 1vw ,60px);
    overflow: hidden;
}

#home .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#home .video-container h1 {
    font-size: max(18px, 18px + 2vw);
    color: white;
    position: absolute;
    bottom: 8%;
    left: 5%;
    text-transform: uppercase;
}


/* Sejarah sekolah */

#home section.sejarah {
    background: #aaa url('../img/bg3b.jpg') no-repeat center / cover;
}

#home .sejarah .content {
    width: 100%;
    padding: 180px 0;
}

#home .sejarah .content h1 {
    text-align: right;
}

#home .sejarah .content p {
    text-align: right;
    max-width: 50%;
    margin-left: auto;
}

#home section.sejarah .background-images {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

#home section.sejarah .background-images .school {
    width: 50%;
    height: 100%;
    position: absolute;
    bottom: 0; left: 0;
    background: transparent url(../img/20b.png) no-repeat left bottom / contain;
}


/* Slide 2125 */

section.marquee2125 {
    background-color: #29618E;
    padding: 25px 0;
}

section.marquee2125.alternate { background-color: #ECD15E !important;}
section.marquee2125.alternate .item {
    background-image: url(../img/2125marquee_black.svg);
}

section.marquee2125 .inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.marquee2125 .item {
    width: 267px;
    height: 50px;
    background-image: url(../img/2125marquee_white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}



/* Visi misi */

#home section.visimisi {
    background: #c2b5a7 url('../img/bg3b.jpg') no-repeat center / cover;
    padding: 120px 0;
}

#home section.visimisi .logo-sman21 .img-container {
    width: 40vw;
    max-width: 500px;
    aspect-ratio: 1 / 1.1;
    border: 8px solid #000;
    background-color: #BC3F36;
    border-radius: 36px;
    margin-left: 50px;
}
#home section.visimisi .logo-sman21 .img-container img {
    width: 80%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

#home section.visimisi .content {
    width: 40%;
}

#home section.visimisi .content p,
#home section.visimisi .content li {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.5;
    text-align: justify;
}
#home section.visimisi .content li {
    margin-bottom: 10px;
}

/* Kepemimpinan */

#home section.kepemimpinan {
    background-color: #29618E;
}

#home section.kepemimpinan .image-slider {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 4px solid white;
    border-radius: clamp(25px, 25px + 1vw ,35px);
    overflow: hidden;
}
#home section.kepemimpinan .image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home section.kepemimpinan .content {
    width: 100%;
    background-color: #383431;
    aspect-ratio: 16/9;
    border-radius: clamp(25px, 25px + 1vw ,35px);
    padding: clamp(50px, 50px + 2vw , 70px) 20px;
    margin-top: -350px;
    top: 400px;

}

#home section.kepemimpinan .content h1 {
    max-width: 70%;
    font-size: clamp(24px, 5vw ,50px);
}

#home section.kepemimpinan .content .kolom {
    width: 45%;
}

#home section.kepemimpinan .content .kolom p {
    font-size: clamp(13px, 1.5vw, 24px);
    color: white;
    line-height: 1.2;
    padding: 10px;
    border-bottom: 1px solid #ffffff44;
}


/* Staff Guru */

#home section.staffguru {
    background: #c2b5a7 url('../img/bg3b.jpg') no-repeat center / cover;
    padding: 120px 0;
    padding-top: 500px;
}

#home section.staffguru .staff-slider {
    width: max(400px, 50%);
    aspect-ratio: 1/1.1;
    overflow: hidden;
    padding: 30px;
}

#home section.staffguru .staff-slider .swiper-container {
    overflow: hidden;
    border-radius: 36px;
    border: 5px solid white;
}

#home section.staffguru .staff-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}


#home section.staffguru .content {
    width: 40%;
}

#home section.staffguru .content h1 {
    font-size: clamp(36px, 5vw ,60px);
}

#home section.staffguru .content p {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.5;
    color: #383431;
    text-align: justify;
}

/* Siswa & Kelas */

#home section.siswakelas {
    background-color: #6BA98B;
    padding: 140px 0;
}

#home section.siswakelas .title {
    font-size: clamp(36px, 5vw ,60px);
    text-align: center;
}

#home section.siswakelas .section-subtitle {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.5;
    color: white;
    text-align: justify;
}

#home section.siswakelas .section-link {
    display: block;
    max-width: 500px;
    margin: 0 auto;
}
#home section.siswakelas .section-link:hover {
    background-color: #ECD15E ;
    border-color: #ECD15E;
}

#home section.siswakelas .section-link:hover h4 {
    color: black;
}

#home section.siswakelas .section-link h4 {
    color: white;
}

#home section.siswakelas .slider-kelas {
    width: 100%;
    aspect-ratio: 16/9;
    border: 5px solid white;
    border-radius: clamp(15px, 2vw ,35px);
    overflow: hidden;
    margin-top: 120px;
}

#home section.siswakelas .active-slider {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -100px;
    padding: clamp(40px, 2vw, 80px) 0;
    border-radius: clamp(15px, 2vw ,35px);
    background-color: #ECD15E;
}

#home section.siswakelas .active-slider .clip {
    width: 280px;
    height: 280px;
    background: transparent url('../img/clip.png') no-repeat center / contain;
    position: absolute;
    top: 0; left: 0;
    margin-top: -120px;
    margin-left: -90px;
}

#home section.siswakelas .active-slider .arrow {
    width: 100%;
    height: 0;
    position: absolute;
    top: 50%; left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#home section.siswakelas .active-slider .arrow > div {
    background-color: black;
    padding: 24px;
    cursor: pointer;
    border-radius: 24px;
    transition: background .2s ease, transform .3s ease;
}
#home section.siswakelas .active-slider .arrow > div:hover {
    background-color: #fe7e15;
    transform: scale(1.132);
}

#home section.siswakelas .active-slider .arrow  .previous {
    margin-left: -32px;
}
#home section.siswakelas .active-slider .arrow  .next {
    margin-right: -32px;
}

#home section.siswakelas .active-slider .arrow i {
    width: clamp(24px, 2vw, 40px);
}

#home section.siswakelas .active-slider h1 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 800;
}

#home section.siswakelas .active-slider p {
    font-size: clamp(12px, 1vw, 14px);
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;    
}


#home section.siswakelas .slider-kelas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
}

/* Ekstrakulikuler */
#home section.extrakulikuler {
    background-color: #E77843;
    padding: 50px 0;
}

#home section.extrakulikuler h1.heading-vintage {
    font-size: clamp(36px, 5vw ,60px);
    color: white;
    text-align: right;
}

#home section.extrakulikuler .swiper-wrapper {
    display: flex;
}

#home section.extrakulikuler .swiper-wrapper .item {
    overflow: hidden;
    padding: 15px;
}

#home section.extrakulikuler .swiper-wrapper .item img {
    width: 100%;
    aspect-ratio: 12/9;
    object-fit: cover;
    object-position: center center;
    border: 5px solid white;
    border-radius: clamp(25px, 1vw ,35px);
}

#home section.extrakulikuler .swiper-wrapper .item .title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: clamp(16px, 2vw, 38px);
    text-align: center;
    text-transform: uppercase;
    padding: 10px 50px;
    background-color: black;
    white-space: nowrap;
    font-weight: 800;
}

#home section.extrakulikuler .content .swiper-pagination-bullet-active {
    background: white;
}

#home section.extrakulikuler .content .swiper-button-next,
#home section.extrakulikuler .content .swiper-button-prev {
    color: white;
    background-color: #000000aa;
    padding: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 45%;
    transition: background .2s ease, transform .3s ease;
}

#home section.extrakulikuler .content .swiper-button-next:after,
#home section.extrakulikuler .content .swiper-button-prev:after {
    font-size: clamp(18px, 2vw, 30px);
}


/* Perpisahan */

#home section.perpisahan {
    background: #c2b5a7 url('../img/bg3b.jpg') no-repeat center / cover;
    padding: 120px 0;
}

#home section.perpisahan h1.heading-vintage {
    font-size: clamp(36px, 5vw ,60px);
    text-align: center;
}

#home section.perpisahan .inner .item {
    height: 24vw;
    min-height: 240px;
    aspect-ratio: 16/12;
    border-radius: 24px;
    border: 10px solid white ;
    overflow: hidden;
}
#home section.perpisahan .inner .item.ar-a {
    aspect-ratio: 16/10;
}
#home section.perpisahan .inner .item.ar-b {
    aspect-ratio: 1/1;
}
#home section.perpisahan .inner .item.ar-c {
    aspect-ratio: 10/16;
}

#home section.perpisahan .inner .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Footer */

footer .sitelogo img {
    width: auto;
    height: 40px;
}








/* =============================== */
/* # STAFF AND GURU */
/* =============================== */

/* HERO */
#staffguru .hero {
    padding: 120px 0;;
}

#staffguru .hero .image-slider {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(15px, 1vw ,60px);
    overflow: hidden;
    border: 5px solid white;
}

#staffguru .hero .image-slider .heading-vintage {
    text-transform: uppercase;
    position: absolute;
    bottom: 8%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: clamp(24px, 5vw , 72px);
    color: white;;
}

/* LIST GURU */
#staffguru .listguru {
    background-color: #29618E;
}

#staffguru .listguru .image-slider {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(25px, 25px + 1vw ,60px);
    overflow: hidden;
    border: 5px solid white;
}

#staffguru .listguru .image-slider .heading-vintage {
    text-transform: uppercase;
    position: absolute;
    bottom: 8%;
    left: 6%;
    font-size: clamp(24px, 5vw , 72px);
    color: white;
}

#staffguru .listguru .content .item {
    margin-bottom: 10px;
    padding: 8px;
}

#staffguru .listguru .content .item img {
    aspect-ratio: 3/3.434;
    border-radius: 14px 14px 0 0;
    object-position: center top;
}

#staffguru .listguru .content .item .name {
    font-size: clamp(13px, 1.5vw, 20px);
    color: white;
    padding: clamp(12px, 1vw, 18px) 0;
}

#staffguru .listguru .content .mapel {
    font-size: clamp(13px, 1vw, 20px);
    background-color: #ECD15E;
    padding: clamp(5px, 1vw, 18px) 20px;
    color: black;
    position: absolute;
    bottom: clamp(50px,11vw, 70px); left: 0;
    font-weight: bold;
}
#staffguru .search-bar-container {
    background-color: #38343166;
    border-radius: 15px;
}

#staffguru .search-bar {
    border-radius: 35px;
    overflow: hidden;
}

#staffguru #staff-list {
    scroll-margin-top: 200px; /* sesuaikan dengan tinggi navbar/header */
}

#staffguru .guru-pagination {
    background-color: #38343133;
    border-radius: 25px;
}

#staffguru .guru-pagination .page-link {
    border: none;
    padding: 24px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

#staffguru .guru-pagination .page-num {
    padding: 24px;
    text-align: center;
    background-color: rgba(255,255,255,0.15);
}

#staffguru .guru-pagination .page-num:hover,
#staffguru .guru-pagination .page-link:hover {
    background-color: rgba(255,255,255,0.3);
    color: #fff;
}

#staffguru .guru-pagination .page-item.active .page-link {
    background-color: #fff;
    color: #29618E;
}

#staffguru .guru-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: transparent;
}

#staffguru .guru-pagination .page-nav {
    letter-spacing: 0.03em;
    padding-left: 1rem;
    padding-right: 1rem;
}














/* =============================== */
/* # STAFF SINGLE PAGE */
/* =============================== */

#staff-single .staff-details {
    background: #c2b5a7 url('../img/bg3b.jpg') no-repeat center / cover;
    min-height: 85vh;
}

#staff-single .staff-details .staff-image  {
    width: 85%;
    aspect-ratio: 1.4/1;  
    border-radius: 35px;
    border: 5px solid white;
    overflow: hidden;
    transform: translateX(-28px);
}

#staff-single .staff-details .info {
    padding: 30px;
    padding-left: 70px;
}

#staff-single .staff-details .info .breadcrumbs {
    font-size: clamp(14px, 1.5vw, 15px);
    color: #6c6a74;
    margin-bottom: 60px;
    font-weight: 600;
}
#staff-single .staff-details .info .breadcrumbs a {
    color: #6c6a74;
    transition: color .2s ease;
    text-decoration: underline;
}

#staff-single .staff-details .info .name h1{
    font-size: clamp(32px, 5vw ,60px);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.4;
}
#staff-single .staff-details .info .mapel {
    font-size: clamp(16px, 1.5vw, 18px);
    background-color: #ECD15E;
    border: 3px solid rgb(77, 77, 77);
    border-radius: 10px;
    padding: clamp(12px, 1vw, 14px) 20px;
    color: black;
    width: max-content;
    font-weight: bold;
    margin-bottom: 40px;
}

#staff-single .staff-details .info .description {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.5;
    color: #383431;
    text-align: justify;
}








/* =============================== */
/* # STUDENT SINGLE PAGE */
/* =============================== */

#student .student-details {
    background: #c2b5a7 url('../img/bg3b.jpg') no-repeat center / cover;
    min-height: 85vh;
}

#student .student-details .student-image  {
    width: 100%;
    aspect-ratio: 1/1.3;  
    border-radius: 35px 35px 0 0;
    border: 5px solid white;
    overflow: hidden;
}

#student .student-details .info {
    padding: 15px;
    padding-left: 70px;
}

#student .student-details .info .breadcrumbs {
    font-size: clamp(14px, 1.5vw, 15px);
    color: #6c6a74;
    margin-bottom: 60px;
    font-weight: 600;
    line-height: 1.3;
}
#student .student-details .info .breadcrumbs a {
    color: #6c6a74;
    transition: color .2s ease;
    text-decoration: underline;
}

#student .student-details .info .name h1 {
    font-size: clamp(28px, 1rem + 5vw ,60px);
    text-transform: uppercase;
    margin-bottom: 20px;
}

#student .student-details .info .badges div {
    font-size: clamp(12px, 1.5vw, 18px);
    background-color: #6BA98B;
    border: 3px solid rgb(77, 77, 77);
    border-radius: 10px;
    padding: clamp(5px, 1vw, 8px) 20px;
    font-weight: bold;
    white-space: nowrap;
    color: black;
    color: white; 
    z-index: 4;
}

#student .student-details .info .badges {
     margin-bottom: 40px;
}

#student .student-details .info .badges.disabled a {
    pointer-events: none;
}
#student .student-details .info .badges.disabled .instagram {
    background-color: #959595;
    opacity: .3;
}

#student .student-details .info .badges.active .instagram:before {
    top: 0;
    left: 0;
    padding: 0;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 10%;
    aspect-ratio: 1/1;
    content: '';
    border-radius: 35px;
    box-sizing: border-box;
    transform: scale(0.2);  
    z-index: -1;  
    animation: sonarEffect 2.2s ease-out infinite;
}

#student .student-details .info .badges .ttl {
    background-color: #E77843;
}


#student .student-details .info .description {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.5;
    color: #383431;
    text-align: left;
}






/* =============================== */
/* # Class archive PAGE */
/* =============================== */

#class-archive .hero {
    background: #c2b5a7 url('../img/bg3b.jpg') no-repeat center / cover;
    padding: 70px 0;
}

#class-archive .hero .heading-vintage {
    text-transform: uppercase;
    width: 100%;
    max-width: 60%;
    text-align: center;
    font-size: clamp(40px, 5vw , 92px);
    line-height: 1.4;
}

#class-archive .hero .description {
    font-size: clamp(15px, 1.5vw, 24px);
    line-height: 1.5;
    color: #383431;
    text-align: justify;
    max-width: 700px;
    text-align: justify;
    margin: 0 auto;
}

#class-archive .list {
    padding: 70px 0;
    padding-bottom: 300px;
}

#class-archive .list .item .image {
    width: 100%;
    aspect-ratio: 1.5/1;
    border-radius: 35px;
    overflow: hidden;
}

#class-archive .list .item .image .info {
    position: absolute;
    bottom: 8%; left: 0;
    width: 100%;
}

#class-archive .list .item .image .title {
    font-size: clamp(24px, 2vw, 48px);
    color: white;
    font-family: 'vintage';
    text-transform: uppercase;
    white-space: nowrap;
}

#class-archive .list .item .image .arrow {
    padding: 12px 15px;
    border: 1px solid white;
    border-radius: 15px;
}

#class-archive .list .item .image .arrow svg {
    color: white;
    width: clamp(16px, 2vw, 30px);
    height: clamp(16px, 2vw, 30px);
}




/* =============================== */
/* # Class single PAGE */
/* =============================== */

#class-single .hero {
    /* background: #ECD366 url('../img/bg3b.png') no-repeat center / cover; */
    padding: 20px 0 90px 0;
}

#class-single .hero .image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 35px;
    border: 5px solid white;
    overflow: hidden;
}

#class-single .hero .heading-vintage {
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-size: clamp(60px, 5vw , 92px);
    line-height: 1.4;
    color: white;
}

#class-single .hero .heading {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
}

#class-single .hero .heading .subtitle {
    font-size: clamp(16px, 2vw , 48px);
}

#class-single .walas {
    background: #ECD366 url('../img/bg3b.jpg') no-repeat center / cover;
    /* background-color: #FFFDD0; */
    padding: 100px 0;
}

#class-single .walas .content-container {
    padding: 0 10vw;
}

#class-single .walas .staff-kelas {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 15px;
    border: 5px solid white;
    overflow: hidden;
}

#class-single .walas .name {
    width: 60%;
    max-width: 400px;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
    
    font-size: clamp(12px, 1.5vw, 18px);
    color: white;
    padding: clamp(5px, 1vw, 16px) 5px;
    text-align: center;
    background-color: black;
}

#class-single .walas .jabatan {
    position: absolute;
    top: 0; left: 0;
    font-size: clamp(11px, 1.5vw, 18px);
    color: white;
    background-color: #29618E;
    padding: clamp(5px, 1vw, 8px) 20px;
    border-radius: 10px;
    font-weight: 700;
    white-space: nowrap;
}

#class-single .murid {
    /* background-color: #FFFDD0; */
    background-color: #29618E;
    padding: 70px 0;
}

/* #class-single .murid .heading-murid {
    background-color: yellow;
} */

#class-single .murid .heading-murid p {
    font-size: clamp(14px, 1.5vw, 18px);
}

#class-single .murid .row div[class*="col"] {
    margin-bottom: 40px;
}

#class-single .murid .item .image-wrapper {
    width: 100%;
    aspect-ratio: 1/1.1;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

#class-single .murid .item .image-wrapper img {
    object-position: center top;
}
#class-single .murid .item .name {
    font-size: clamp(12px, 1.5vw, 18px);
    background-color: black;
    padding: clamp(5px, 2vw, 24px) 5px;
    text-align: center;
    color: white;
}














/* NEW PAGINATION */

.td-pagination {
    width: 100%;
    max-width: 800px;
    background-color: #00000022;
    padding: 25px;
    border-radius: 16px;
    margin: 0 auto;
}

.td-pagination button {
    padding: 12px;
    text-align: center;
    background-color: rgba(255,255,255,0.15);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.td-pagination #prev,
.td-pagination #next {
    background-color: transparent;
}

.td-pagination button:not(.active):hover {
    background-color: rgba(255,255,255,0.3) !important;
}

.td-pagination button.disabled,
 .td-pagination button[disabled]{
    cursor:not-allowed;
    pointer-events: none;
    opacity: .2;
}

.td-pagination button.active {
        background-color: white !important;
        color: #29618E !important;
        opacity: 1 !important;
}