@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Dark Tech Palette */
  --primary-color: #8E44AD;
  --secondary-color: #9B59B6;
  --accent-color: #F39C12; /* Amber for contrast */
  --light-color: #F3EBFF;
  --dark-color: #1a1a2e; /* Deep dark blue/black */
  
  --gradient-primary: linear-gradient(135deg, #8E44AD 0%, #5B2C6F 100%);
  --hover-color: #76448A;
  --background-color: #202035;
  --text-color: #e0e0e0;
  
  --border-color: rgba(142, 68, 173, 0.4);
  --divider-color: rgba(243, 156, 18, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.3);
  --highlight-color: #F1C40F;
  
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Inter', sans-serif;
  
  /* Neumorphism Dark Mode */
  --neu-shadow-light: #2b2b46;
  --neu-shadow-dark: #151524;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Neumorphism Classes Dark */
.neu-flat {
    background: var(--background-color);
    box-shadow: 6px 6px 12px var(--neu-shadow-dark), -6px -6px 12px var(--neu-shadow-light);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.neu-pressed {
    background: var(--background-color);
    box-shadow: inset 4px 4px 8px var(--neu-shadow-dark), inset -4px -4px 8px var(--neu-shadow-light);
    border-radius: 8px;
}

/* Header */
header {
    background-color: #11111d;
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
}
#nav-toggle { display: none; }
.nav-icon { display: none; cursor: pointer; }

@media (max-width: 768px) {
    .nav-icon { display: block; font-size: 1.8rem; color: var(--accent-color); }
    .navigation {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #11111d;
        z-index: 50;
    }
    #nav-toggle:checked + label + .navigation {
        max-height: 500px;
    }
    .navigation ul {
        flex-direction: column;
        padding: 20px;
    }
    .navigation li { margin-bottom: 15px; text-align: center; }
}

/* Hero */
.hero-bg {
    background: linear-gradient(rgba(17, 17, 29, 0.8), rgba(32, 32, 53, 0.8)), url('./img/bg.jpg') no-repeat center center/cover;
}

.cta-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cta-overlay {
    background: rgba(32, 32, 53, 0.85);
}

/* Timeline Tech Style */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--secondary-color);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--background-color);
    border: 4px solid var(--accent-color);
    border-radius: 0; /* Square for tech look */
}

/* FAQ */
.faq-details[open] summary {
    color: var(--accent-color);
}
.faq-details summary {
    cursor: pointer;
    list-style: none;
    font-weight: bold;
    color: var(--light-color);
}
.faq-details p {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 10px;
}