/*
Theme Name: Distronot Custom Theme
Theme URI: https://distronot.biz.id
Author: Razan Muhammad
Description: Tema kustom minimalis buatan sendiri untuk website Distronot.
Version: 1.0
*/

html {
  scroll-behavior: smooth;
}

/* Reset dasar agar layout konsisten */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0f; /* Hitam luar angkasa */
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* About Page Styling */
.about-page {
    padding-top: 100px; /* Jarak agar tidak tertutup navbar */
    background: var(--space-black);
}

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: var(--cyber-cyan) !important;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.stat-item h3 {
    color: var(--neon-pink);
    font-size: 1.5rem;
    margin: 0;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        justify-content: center;
    }
}