/* Garis kecil di atas */
@font-face {
    font-family: 'gotham2';
    src: url('./assets/font/Gotham_Font/GothamBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
 @font-face {
        font-family: 'gotham';
        src: url('./assets/font/Gotham_Font/GothamLight.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    body {
        font-family: 'gotham', sans-serif;
        margin: 0;
        padding: 0;
    }
.top-bar {
    background-color: #10793D;
    padding: 5px 15px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
}

.brand-text {
    font-weight: bold;
    color: #ffffff;
}

.language-switch a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.language-switch a:hover {
    text-decoration: underline;
}

/* Header dengan gambar */
.header {
    position: relative;
    text-align: center;
}



/* Navigasi kapsul berada di atas gambar dan sedikit ke bawah */
.navbar {
    position: absolute;
    top: 60px; /* Geser navigasi sedikit ke bawah */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.9); /* Transparan sedikit */
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 50px; /* Efek kapsul */
    z-index: 1000;
}

/* Navigasi hover effect */
.navbar-nav .nav-link {
    font-weight: bold;
    color: #000000;
}

.navbar-nav .nav-link:hover {
    color: #10793D;;
}

/* Logo */
.logo {
    height: 40px;
}
.landing-section {
    background-color: #10793D;
    padding: 50px 0;
}

.section-text {
    color: white;
    font-size: 16px;
    text-align: left;
}

.btn-custom {
    display: inline-block;
    background-color: white;
    color: #10793D;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: #e6e6e6;
}

/* Footer Styling */

.footer {
    background-color: #10793D;
    padding: 50px 20px;
    color: white;
    position: relative;
}

.footer-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
}
.school-info {
    width: 48%;
    padding: 10px;
}

.school-info h6 {
    font-size: 16px;
    font-weight: bold;
}

.school-info p {
    font-size: 14px;
    margin-bottom: 10px;
}

.btn-footer {
    display: inline-block;
    background-color: #68BC52;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.btn-footer:hover {
    background-color: #5aa344;
}
/* Other Links */
.other-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-top: 0; /* Menyamakan posisi dengan judul */
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.triangle {
    margin-right: 8px;
    font-size: 14px;
}

/* Social Media Icons */
.footer-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-icons a {
    display: inline-block;
}

.footer-icons img {
    width: 30px;
    height: 30px;
}

/* Garis Putih */
.footer-line {
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 20px 0;
}

/* Copyright */
.footer-copyright {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.otherpos{
    margin-left: 10%;
}


/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .navbar {
        width: 95%;
        top: 40px; /* Sesuaikan untuk layar kecil */
        padding: 10px;
        border-radius: 5px !important; 
    }
    .otherpos{
        margin-left: 0%;
        text-align: left;
    }

    .footer-title{
        margin-left: 27%;
    }
    .list-unstyled{
        margin-left: 27%;
    }
    

   
}
