/* Main.css - Global Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap');

:root {
    --primary-color: #6200ea;
    /* Deep Purple */
    --secondary-color: #00e5ff;
    /* Cyan Accent */
    --bg-color: #0a0a0a;
    /* Almost Black */
    --surface-color: #1a1a1a;
    /* Dark Gray */
    --text-color: #ffffff;
    --text-muted: #b0b0b0;
    --font-main: 'Zen Kaku Gothic New', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --gradient-main: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow-glow: 0 0 20px rgba(98, 0, 234, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(98, 0, 234, 0.8);
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 0 auto 3rem;
    width: fit-content;
    background: linear-gradient(to right, #fff, #b0b0b0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-title small {
    display: block;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--secondary-color);
    margin-top: 0.5rem;
    letter-spacing: 1px;
    -webkit-text-fill-color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}