/* PALET WARNA (Noctarion Theme) */
:root {
    --dark-blue: #0A1931; 
    --accent-pink: #FFC0CB; 
    --light-blue: #A3D8FF; 
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --font-family: 'Poppins', sans-serif;
}

/* GLOBAL STYLES */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}
body { 
    font-family: var(--font-family); 
    background-color: var(--dark-blue); 
    color: var(--text-light); 
    line-height: 1.6; 
}
h1, h2, h3 { 
    font-weight: 800; 
    color: var(--accent-pink); 
    margin-bottom: 0.5em; 
}
.content-section { 
    padding: 80px 10%; 
    text-align: center; 
    border-top: 1px solid rgba(255, 255, 255, 0.15); 
}

/* --- HEADER & NAVIGASI --- */
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 5%; 
    background-color: rgba(0, 0, 0, 0.4); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); 
}
.logo { 
    font-size: 1.8em; 
    font-weight: 800; 
    color: var(--light-blue); 
}
header nav { 
    display: flex; 
    align-items: center; 
}
header nav a { 
    color: var(--text-light); 
    text-decoration: none; 
    margin-left: 25px; 
    font-weight: 600; 
    transition: color 0.3s; 
}
.cta-button { 
    background-color: var(--accent-pink); 
    color: var(--text-dark) !important; 
    padding: 8px 15px; 
    border-radius: 20px; 
    font-weight: 800 !important; 
}
.hamburger { 
    display: none; 
    font-size: 1.8em; 
    cursor: pointer; 
    color: var(--accent-pink); 
    z-index: 1001; 
}

/* --- HERO SECTION (FULL SCREEN) --- */
.hero-section { 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 50px 5%; 
    padding-top: 100px; 
}
.hero-section h1 { 
    font-size: 4em; 
    text-shadow: 4px 4px var(--dark-blue); 
    line-height: 1.1; 
}
.slogan { 
    font-size: 1.5em; 
    margin-bottom: 30px; 
    color: var(--light-blue); 
}

/* --- IP BOX (IP & PORT) --- */
.ip-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
.ip-box {
    background-color: var(--text-light);
    color: var(--text-dark);
    padding: 10px 20px 10px 25px; 
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 20px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}
.ip-display {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}
.ip-main { 
    font-size: 1.4em; 
    font-weight: 700; 
}
.port-sub { 
    font-size: 0.9em; 
    font-weight: 500; 
    color: #666; 
}
.ip-box button { 
    background-color: var(--accent-pink); 
    color: var(--text-dark); 
    border: none; 
    padding: 10px 18px; 
    border-radius: 25px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: background-color 0.3s; 
    height: fit-content; 
}
.ip-box button:hover { 
    background-color: #FF87A6; 
}
.copy-success-hidden { 
    color: var(--accent-pink); 
    opacity: 0; 
    transition: opacity 0.5s ease; 
    font-weight: 600; 
    font-size: 1.1em; 
}
.copy-success-visible { 
    opacity: 1; 
}

/* --- ABOUT SECTION & GARIS ELEGAN --- */

/* Garis Elegan di bawah judul */
.elegant-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--light-blue), transparent);
    margin: 0 auto 30px auto;
    border-radius: 5px;
    opacity: 0.7;
    transition: width 0.8s ease-out; 
}
.about-section:hover .elegant-divider {
    width: 200px; 
}

/* Gaya Box/Kolom Baru */
.about-box {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 15px;
    text-align: left; 
    line-height: 1.8; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-left: 5px solid var(--accent-pink); 
}
.about-box p {
    margin-bottom: 1em; 
    font-size: 1.1em;
}
.about-box p:last-child {
    margin-bottom: 0;
}


/* Action Buttons */
.action-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
    margin-top: 20px; 
    flex-wrap: wrap; 
}
.action-btn { 
    text-decoration: none; 
    padding: 15px 30px; 
    border-radius: 10px; 
    font-weight: 700; 
    font-size: 1.1em; 
    transition: transform 0.2s, box-shadow 0.3s; 
}
.action-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
}
.discord-btn { 
    background-color: #7289DA; 
    color: var(--text-light); 
}
.vote-btn { 
    background-color: var(--accent-pink); 
    color: var(--text-dark); 
}

/* --- CAROUSEL GALLERY --- */
.gallery-section { 
    background-color: #0F254B; 
}
.carousel-container { 
    max-width: 800px; 
    margin: 40px auto; 
    position: relative; 
    overflow: hidden; 
    border-radius: 20px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
    border: 5px solid var(--accent-pink); 
}
.carousel-track { 
    display: flex;
    /* Transisi Geser Halus */
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1); 
}
.carousel-slide { 
    min-width: 100%; 
    height: 450px; 
    object-fit: cover; 
    display: block; 
}
.carousel-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0, 0, 0, 0.5); 
    color: var(--text-light); 
    border: none; 
    padding: 15px; 
    cursor: pointer; 
    z-index: 10; 
    font-size: 1.5em; 
    border-radius: 50%; 
    opacity: 0.8; 
    transition: opacity 0.3s; 
}
.prev-btn { 
    left: 10px; 
}
.next-btn { 
    right: 10px; 
}
.carousel-dots { 
    bottom: 15px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 8px; 
    z-index: 10; 
    position: absolute; 
}
.dot { 
    height: 12px; 
    width: 12px; 
    background-color: rgba(255, 255, 255, 0.5); 
    border-radius: 50%; 
    cursor: pointer; 
    transition: background-color 0.3s; 
}
.active-dot { 
    background-color: var(--accent-pink); 
    border: 2px solid var(--text-light); 
}

/* --- STAFF SECTION (GRID) --- */
.staff-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 40px auto 0; 
}
.staff-card { 
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 20px; 
    padding: 30px; 
    text-align: center; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
}
.staff-photo { 
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 5px solid var(--accent-pink); 
    margin-bottom: 15px; 
}
.staff-info h3 { 
    color: var(--light-blue); 
    font-size: 1.4em; 
    margin-top: 0; 
}
.staff-tagline { 
    margin-top: 10px; 
    font-weight: 600; 
    color: var(--accent-pink); 
}

/* --- FOOTER --- */
footer { 
    text-align: center; 
    padding: 25px; 
    background-color: rgba(0, 0, 0, 0.6); 
    font-size: 0.9em; 
    color: rgba(255, 255, 255, 0.8); 
}

/* --- RESPONSIVENESS (MOBILE) --- */
@media (max-width: 768px) {
    /* Hamburger Menu */
    .hamburger { 
        display: block; 
    }
    header nav {
        position: fixed; 
        top: 0; 
        right: 0; 
        height: 100vh; 
        width: 70%; 
        background-color: var(--dark-blue); 
        flex-direction: column; 
        justify-content: center; 
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    header nav.active-menu { 
        transform: translateX(0); 
    }
    header nav a { 
        margin: 20px 0; 
        font-size: 1.5em; 
    }
    .cta-button { 
        margin-top: 30px; 
        padding: 12px 25px; 
    }

    /* Hero & IP Box Mobile */
    .hero-section h1 { 
        font-size: 3em; 
    }
    .ip-box { 
        flex-direction: column; 
        gap: 8px; 
        padding: 15px; 
        width: 90%; 
    }
    .ip-display { 
        text-align: center; 
    }
    .ip-box button { 
        width: 100%; 
        padding: 10px; 
    }
    
    /* About Box Mobile */
    .about-box {
        text-align: left;
        padding: 20px;
        margin-left: 5%;
        margin-right: 5%;
        border-left: 3px solid var(--accent-pink); /* Garis border lebih tipis di mobile */
    }

    /* Galeri & Staff Mobile */
    .carousel-slide { 
        height: 300px; 
    }
    .staff-grid { 
        grid-template-columns: 1fr; 
    }
}
