/* ==================== */
/* Base Styles & Reset */
/* ==================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0f1c;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Ensure content is above floating background */
.navbar, .hero, .section, .footer, .fixed-social {
    position: relative;
    z-index: 1;
}

/* Section Base Styles */
.section {
    padding: 100px 20px;
}

.section-dark {
    background: #0d1225;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Section Title - Minimal Style */
.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ccd6f6;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #1a2035, transparent);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #060912;
    color: #64748b;
    font-size: 13px;
}

.footer a {
    color: #00bfff;
    text-decoration: none;
}
