/* --- Pengaturan Global & Variabel --- */
:root {
    --bg-color: #0c0c0e;
    --surface-color: #18181b;
    --primary-color: #e2e8f0;
    --secondary-color: #a1a1aa;
    --accent-color: #6366f1; /* Warna aksen, bisa diganti */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(12, 12, 14, 0.7), rgba(12, 12, 14, 1)), url('https://source.unsplash.com/random/1600x900/?abstract,dark') no-repeat center center/cover;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* --- BARU: Gaya Efek Mengetik --- */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: var(--primary-color);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

@keyframes blink {
    from, to { background-color: transparent; }
    50% { background-color: var(--primary-color); }
}


/* --- BARU: Gaya Section Media Sosial --- */
.social-media-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--surface-color);
    border-top: 1px solid #27272a;
}

.social-media-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.social-links-hero {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links-hero a {
    color: var(--primary-color);
    font-size: 3rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links-hero a:hover {
    color: var(--accent-color);
    transform: translateY(-5px) scale(1.1);
}


/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.member-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #27272a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.member-desc {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* --- Status Section --- */
.status-list {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.status-icon {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--surface-color);
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .container {
        padding: 40px 15px;
    }
    .social-links-hero a {
        font-size: 2.5rem;
    }
}
