:root {
    --deep-navy: #012A4A;
    --royal-blue: #013A63;
    --primary-blue: #014F86;
    --ocean-blue: #2A6F97;
    --sky-blue: #61A5C2;
    --light-blue: #A9D6E5;
    --soft-bg: #f8faff;
}

/* --- CAROUSEL REPAIR --- */
.carousel { 
    position: relative; 
    height: 85vh; 
    width: 100%; 
    overflow: hidden; 
    background: var(--deep-navy); 
}

.slider {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide-content h1 { font-size: 4rem; margin-bottom: 10px; font-weight: 800; }

/* --- VISION MISSION GRID --- */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.vm-box {
    padding: 40px;
    border-radius: 20px;
}

.visi-box { background: var(--royal-blue); color: white; }
.misi-box { background: var(--soft-bg); color: var(--royal-blue); border: 1px solid var(--light-blue); }

/* --- EVENT SCROLL REPAIR --- */
.event-container {
    position: relative;
    padding: 0 50px;
}

.event-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.event-wrapper::-webkit-scrollbar { display: none; }

.event-card {
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--light-blue);
    transition: 0.3s;
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Tombol Navigasi */
.carousel-btn, .event-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 15px;
    border-radius: 50%;
}

