/* container */

#logo h1 img {
    max-width: 100%;
    height: 40px;
}

#logo h1 {
    font-size: larger;
    font-weight: bold;
    font-style: italic;
}

#logo h1 a {
    color: #ffffff;
    text-decoration-style: double;
}

#logo h1 a span {
    color: #95103B;
}

.logo_tentang_saka {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
    line-height: normal;
    vertical-align: middle;
}

.logo_sejarah_saka {
    float: right;
    margin: 0 0 10px 20px;
    max-width: 100%;
    height: auto;
}

/* Tambahan styling opsional untuk layar kecil */
@media screen and (max-width: 750px) {
    .logo_sejarah_saka {
        display: block;
        float: none;
        margin: 0 auto 10px auto;
        max-width: 80%;
        /* atau 100% sesuai kebutuhan */
    }
}

.logo_sejarah_saka {
    float: right;
    margin: 0 0 10px 50px;
    width: 250px;
    height: auto;
}

/* responsif maps */
.responsive-map-container {
    position: relative;
    width: 100%;
    /* padding-top: 56.25%; Rasio 16:9 (450 / 800 = 0.5625) */
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    /* opsional */
}

.responsive-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* login register */
#body-logres {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.auth-container {
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
    transition: all 0.3s ease;
}

.auth-container:hover {
    box-shadow: 0 18px 40px rgba(50, 50, 93, .15), 0 8px 20px rgba(0, 0, 0, .1);
}

.tab-btn {
    transition: all 0.3s ease;
}

.tab-btn:hover:not(.active) {
    background-color: rgba(99, 102, 241, 0.1);
}

.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}


/* Galeri Responsif */
.galeri-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}



/* Organisasi */
.org-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.org-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.org-header h2 {
    color: #2c3e50;
    font-weight: 700;
}

.org-header p {
    color: #7f8c8d;
}

.org-level {
    margin: 20px 0;
}

.org-level-title {
    background-color: #ffc800;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.org-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.org-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #ffc800;
}

.org-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.org-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.org-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-info h5 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.org-info p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.org-details {
    margin-top: 10px;
}

.org-details p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.org-details i {
    color: #ffc800;
    margin-right: 5px;
    width: 20px;
    text-align: center;
}

.connecting-line {
    position: absolute;
    width: 2px;
    background-color: #ffc800;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 0;
}

.level-connector {
    position: relative;
}

@media (max-width: 768px) {
    .org-grid {
        grid-template-columns: 1fr !important;
    }

    .connecting-line {
        display: none;
    }

    .org-item {
        margin-bottom: 15px;
    }
}


/* Nav link custom text */
@media (max-width: 991.98px) {
    .nav-link-custom {
        font-size: 14px;
        padding: 8px 12px;
    }
}

