/* RESET */
body {
    margin:0;
    font-family:'Poppins', sans-serif;
    background:#0f172a;
    color:white;
}

/* NAVBAR */
.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:rgba(0,0,0,0.8);
    position:sticky;
    top:0;
    z-index:999;
}

.logo-img {
    height:45px;
}

.menu {
    display:flex;
    align-items:center;
}

.menu a {
    color:white;
    margin-left:20px;
    text-decoration:none;
    font-weight:500;
}

.btn-daftar {
    background:#facc15;
    color:black !important;
    padding:8px 15px;
    border-radius:8px;
}

/* HAMBURGER */
.hamburger {
    display:none;
    font-size:25px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
    .menu {
        display:none;
        position:absolute;
        right:0;
        top:60px;
        background:#020617;
        flex-direction:column;
        width:200px;
        padding:20px;
    }

    .menu.active {
        display:flex;
    }

    .menu a {
        margin:10px 0;
    }

    .hamburger {
        display:block;
    }
}

/* HERO VIDEO */
.hero {
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

/* VIDEO BACKGROUND */
.bg-video {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */
.overlay {
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

/* CONTENT */
.hero-content {
    position:relative;
    z-index:2;
    max-width:700px;
}

.hero-content h1 {
    font-size:50px;
    margin-bottom:15px;
}

.hero-content p {
    font-size:18px;
    margin-bottom:25px;
    color:#ddd;
}

/* BUTTON */
.btn-group {
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn {
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
}

.btn-primary {
    background:#facc15;
    color:black;
}

.btn-secondary {
    border:1px solid white;
    color:white;
}

/* SECTION */
.section {
    padding:70px 20px;
    text-align:center;
}

/* GRID */
.grid {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

/* CARD */
.card {
    background:#1e293b;
    padding:25px;
    border-radius:12px;
    width:260px;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-8px);
}

/* FOOTER */
.footer {
    background:#020617;
    padding:30px;
    text-align:center;
    margin-top:40px;
}
/* FOOTER PREMIUM */
.footer {
    background:#020617;
    padding:50px 20px 20px;
}

.footer-container {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.footer-col {
    flex:1;
    min-width:250px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom:15px;
}

.footer-col p {
    color:#cbd5e1;
    font-size:14px;
    line-height:1.6;
}

.footer-col a {
    display:block;
    color:#cbd5e1;
    text-decoration:none;
    margin-bottom:8px;
    font-size:14px;
}

.footer-col a:hover {
    color:#facc15;
}

.footer-bottom {
    text-align:center;
    margin-top:30px;
    border-top:1px solid #1e293b;
    padding-top:15px;
    font-size:13px;
    color:#94a3b8;
}
.navbar {
    backdrop-filter: blur(10px);
}
/* HERO PROFIL */
.hero-profil {
    position:relative;
    height:60vh;
}

.hero-profil img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-text {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
}

/* KEPSEK */
.kepsek {
    display:flex;
    gap:30px;
    align-items:center;
    flex-wrap:wrap;
    max-width:900px;
    margin:auto;
}

.kepsek img {
    width:250px;
    border-radius:12px;
}

/* TIMELINE */
.timeline {
    max-width:600px;
    margin:auto;
    border-left:2px solid #facc15;
    padding-left:20px;
}

.timeline-item {
    margin-bottom:20px;
}

.timeline-item span {
    color:#facc15;
    font-weight:bold;
}
/* SPLIT LAYOUT */
.split {
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
    max-width:1000px;
    margin:auto;
}

.split .text {
    flex:1;
}

.split .image img {
    width:100%;
    max-width:400px;
    border-radius:12px;
}

/* HERO TEXT FIX */
.hero-text p {
    font-size:18px;
    color:#ddd;
}
/* GALERI */
.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:15px;
    padding:20px;
}

.gallery img {
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
}

.gallery img:hover {
    transform:scale(1.05);
    opacity:0.9;
}

/* MODAL */
.modal {
    display:none;
    position:fixed;
    z-index:9999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
}

.modal img {
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}
/* CONTACT */
.contact-wrap {
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    max-width:1000px;
    margin:auto;
}

.contact-info, .contact-form {
    flex:1;
    min-width:300px;
    background:#1e293b;
    padding:25px;
    border-radius:12px;
}

.contact-info p {
    margin-bottom:15px;
    color:#cbd5e1;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border:none;
    border-radius:8px;
    background:#0f172a;
    color:white;
}

.contact-form button {
    width:100%;
    padding:12px;
    background:#facc15;
    border:none;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
}

/* MAP */
.map iframe {
    border-radius:12px;
}
.wa-float {
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    font-size:24px;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    z-index:9999;
    transition:0.3s;
}

.wa-float:hover {
    transform:scale(1.1);
}
.card img {
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-content {
    padding:15px;
}

.card-content h4 {
    margin-bottom:8px;
}
/* ================= NAVBAR ================= */
.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#020617;
    position:relative;
    z-index:1000;
}

.menu {
    display:flex;
    align-items:center;
}

.menu a {
    color:white;
    margin-left:20px;
    text-decoration:none;
}

.btn-daftar {
    background:#facc15;
    color:black !important;
    padding:8px 15px;
    border-radius:8px;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.hamburger span {
    width:25px;
    height:3px;
    background:white;
    transition:0.3s;
}

/* ANIMASI X */
.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* ================= OVERLAY ================= */
#overlay {
    display:none;
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.6);
    z-index:998;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .hamburger {
        display:flex;
        z-index:1001;
    }

    .menu {
        position:fixed;
        top:0;
        right:-100%;
        width:250px;
        height:100%;
        background:#020617;
        flex-direction:column;
        padding:80px 20px;
        transition:0.4s ease;
        z-index:999;
    }

    .menu.active {
        right:0;
    }

    #overlay.active {
        display:block;
    }

    .menu a {
        margin:15px 0;
        font-size:18px;
    }
}
.card img {
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-content {
    padding:15px;
}

.detail-card {
    max-width:800px;
    margin:auto;
    background:#1e293b;
    padding:25px;
    border-radius:12px;
}

.detail-card img {
    width:100%;
    border-radius:10px;
    margin-bottom:20px;
}

.tanggal {
    color:#94a3b8;
    font-size:14px;
    margin-bottom:15px;
}

.isi {
    line-height:1.8;
}
/* UPLOAD BOX */
.upload-box {
    max-width:500px;
    margin:auto;
    background:#1e293b;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* INPUT */
.upload-box input,
.upload-box textarea {
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
    background:#0f172a;
    color:white;
}

/* FILE */
.upload-box input[type="file"] {
    background:#0f172a;
    padding:10px;
    color:#cbd5f5;
}

/* BUTTON */
.upload-box button {
    width:100%;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.upload-box button:hover {
    transform:scale(1.05);
}
.card small {
    display:block;
    margin-bottom:10px;
}
.table-box {
    overflow-x:auto;
    margin-top:20px;
}

table {
    width:100%;
    border-collapse:collapse;
    background:#1e293b;
}

table th, table td {
    padding:12px;
    border-bottom:1px solid #334155;
}

.btn-edit {
    background:#22c55e;
    padding:6px 10px;
    border-radius:6px;
    color:white;
    text-decoration:none;
}

.btn-hapus {
    background:#ef4444;
    padding:6px 10px;
    border-radius:6px;
    color:white;
    text-decoration:none;
}
.gallery-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img {
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.gallery-grid img:hover {
    transform:scale(1.05);
}

/* MODAL */
.modal {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:999;
}

.modal img {
    max-width:90%;
    max-height:85%;
    border-radius:12px;
}
