@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* High Contrast / Cyber Palette */
  --primary-color: #344CB7; /* Electric Blue */
  --secondary-color: #577BC1; /* Softer Blue */
  --accent-color: #EE4266; /* Vibrant Pink/Red */
  --light-color: #FFFFFF;
  --dark-color: #000957; /* Very Dark Blue */
  
  --gradient-primary: linear-gradient(135deg, #000957 0%, #344CB7 100%);
  --hover-color: #263896;
  --background-color: #0F1021; /* Almost Black Blue */
  --text-color: #E0E0E0;
  
  --border-color: rgba(238, 66, 102, 0.5); /* Pink borders */
  --divider-color: rgba(52, 76, 183, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #FFEB00; /* Yellow Warning */
  
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Poppins', sans-serif;
  
  /* Neumorphism Dark & Sharp */
  --neu-shadow-light: #161830;
  --neu-shadow-dark: #080812;
}

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);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Neumorphism Classes */
.neu-flat {
    background: var(--background-color);
    box-shadow: 10px 10px 20px var(--neu-shadow-dark), -10px -10px 20px var(--neu-shadow-light);
    border-radius: 8px;
    border: 1px solid rgba(52, 76, 183, 0.1);
}

.neu-pressed {
    background: var(--background-color);
    box-shadow: inset 8px 8px 16px var(--neu-shadow-dark), inset -8px -8px 16px var(--neu-shadow-light);
    border-radius: 8px;
}

/* Header */
header {
    background: rgba(15, 16, 33, 0.95);
    border-bottom: 3px solid var(--accent-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: var(--background-color);
        z-index: 50;
        border-bottom: 2px solid var(--accent-color);
    }
    #nav-toggle:checked + label + .navigation {
        max-height: 500px;
    }
    .navigation ul {
        flex-direction: column;
        padding: 20px;
    }
    .navigation li { margin-bottom: 20px; text-align: center; font-weight: bold; }
}

/* Hero */
.hero-bg {
    background: linear-gradient(rgba(0, 9, 87, 0.8), rgba(0, 0, 0, 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(0, 9, 87, 0.9);
}

/* Timeline - Sharp/Digital */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 2rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--background-color);
    border: 3px solid var(--primary-color);
    transform: rotate(45deg); /* Diamond shape */
}

/* FAQ */
.faq-details[open] summary {
    color: var(--accent-color);
}
.faq-details summary {
    cursor: pointer;
    list-style: none;
    font-weight: bold;
    color: var(--light-color);
}