/* ===================================================
   TAMPILAN LAPTOP / KOMPUTER (DESAIN ASLI ANDA)
   =================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.text-center { text-align: center; }

/* HEADER & NAVBAR LAPTOP */
header {
    background-color: #0A192F;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info {
    font-size: 16px;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Sembunyikan Tombol Garis Tiga di Laptop/Komputer */
#menu-toggle, 
.hamburger-icon {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links li a:hover, 
.nav-links li a.active {
    color: #F5A623;
}

.btn-ppdb {
    background-color: #F5A623;
    color: #0A192F ;
    border-radius: 4px;
    font-weight: bold ;
}

.btn-ppdb:hover {
    background-color: #fff;
}

/* Dropdown Menu Laptop */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0A192F;
    min-width: 180px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
    z-index: 9999;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    color: #fff;
    padding: 12px 15px;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #F5A623;
    color: #0A192F;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* HERO SECTION LAPTOP */
.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('img/sejarah.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin: 5px;
    transition: 0.3s;
}

.btn-primary { background-color: #F5A623; color: #0A192F; }
.btn-primary:hover { background-color: #d48c16; }

.btn-secondary { border: 2px solid #fff; color: #fff; }
.btn-secondary:hover { background-color: #fff; color: #0A192F; }

/* SAMBUTAN KEPALA SEKOLAH LAPTOP */
.welcome {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 0;
}

.welcome-img .img-placeholder {
    width: 250px;
    height: 300px;
    background-color: #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #a0aec0;
}

.welcome-text h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: #0A192F;
}

/* PROFIL SEKOLAH & TABEL LAPTOP */
.profil-sekolah {
    background: #0A2A8A;
    padding-top: 20px;
    padding-bottom: 20px;
}

.judul-profil {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
}

.profil-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.profil-kiri { width: 45%; }
.profil-kanan { width: 55%; }

.profil-kanan iframe {
    width: 100%;
    height: 390px;
    border: none;
    border-radius: 10px;
}

.table-profil {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
    color: #fff;
}

.table-profil td {
    border: 2px solid #fff;
    padding: 5px 10px;
}

.table-profil td:first-child {
    width: 40%;
    font-weight: bold;
}

.table-profil tr:nth-child(even) {
    background: rgba(255,255,255,.08);
}

/* FLOATING WHATSAPP & FOOTER */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

footer {
    background-color: #0F172A;
    color: #94a3b8;
    padding: 20px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about, .footer-contact { flex: 1; min-width: 250px; }
.footer-grid h3 { color: #fff; margin-bottom: 20px; }
.footer-contact p { margin-bottom: 10px; }
.footer-contact i { margin-right: 10px; color: #F5A623; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 0.9rem;
}

 /* KHUSUS RESPONSIF HP */
        @media screen and (max-width: 768px) {
            html, body {
                overflow-x: hidden;
            }

            .navbar {
                position: relative !important;
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
                padding: 10px 15px !important;
            }

            .hamburger-icon {
                display: flex !important;
                align-items: center;
                justify-content: center;
                width: 45px;
                height: 45px;
                background: transparent;
                border: none;
                color: white;
                cursor: pointer;
                z-index: 99999;
            }

            .hamburger-icon i {
                font-size: 28px;
                color: white;
            }

            .nav-menu {
                display: none !important;
                width: 100% !important;
                position: absolute !important;
                top: 100% !important;
                left: 0 !important;
                background-color: #0A192F !important;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important;
                z-index: 99999 !important;
                padding: 15px 0 !important;
            }

            .nav-menu.mobile-open {
                display: block !important;
            }

            .nav-menu .nav-links {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                width: 100% !important;
                padding: 0 !important;
                margin: 0 !important;
                list-style: none !important;
            }

            .nav-menu .nav-links > li {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
                padding: 8px 0 !important;
            }

            .nav-menu .dropdown-menu {
                position: static !important;
                display: none !important;
                width: 100% !important;
                background-color: #071120 !important;
            }

            .nav-menu .dropdown.dropdown-open .dropdown-menu {
                display: block !important;
            }

            .alur-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .bottom-actions {
                flex-direction: column;
            }

            .bottom-actions a {
                width: 100%;
                text-align: center;
            }

            .footer-grid {
                flex-direction: column;
            }
        }