/* home */

/* poppins import */

@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* poppins import */

body {
    font-family: "Poppins";
}
.navbar-area {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-scrolled {
    background-color: #ffffff; /* Warna saat scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Hero Background */
.hero-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(70%);
    z-index: -1;
}

/* Education Section */
.education-section {
    background: linear-gradient(90deg, #009343 0%, #abc217 100%);
}

/* Logo Grid */
.logo-container {
    padding: 15px 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 15px;
    }

    .school-logo {
        width: 300px;
        height: 300px;
    }
}
/* home */

/* Container untuk logo */
.logo-container {
    padding: 15px 0;
}

/* Grid layout untuk logo */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 5px;
    justify-items: center;
}

/* Item logo */
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Style untuk logo */
/* .school-logo {
  width: 100px;
  height: 100px;
  /* object-fit: contain; */
/* padding: 10px; */
/* background-color: white; */
/* border-radius: 10px; */
/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
/* margin-bottom: 8px; */
/*  */

/* Label di bawah logo */
.logo-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 15px;
    }

    .school-logo {
        width: 80px;
        height: 80px;
    }
}

/* timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 6px;
    background-color: #009343;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.container-timeline {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.container-timeline::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #053b1d;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -16px;
}

.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .container-timeline {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .container-timeline::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left::after,
    .right::after {
        left: 15px;
    }

    .right {
        left: 0%;
    }
}
/* timeline */

/* floating WA */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}
/* floating WA */

/* footer */

footer {
    /* background: linear-gradient(90deg, #009343 0%, #abc217 100%); */
    background: linear-gradient(90deg, #abc217 0%, #009343 100%);
}
/* footer */
