@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: Active Blue/Orange */
  --primary-color: #2980B9;
  --secondary-color: #E67E22;
  --accent-color: #3498DB;
  --light-color: #EBF5FB;
  --dark-color: #1A5276;
  --gradient-primary: linear-gradient(135deg, #5DADE2 0%, #2980B9 100%);
  --hover-color: #21618C;
  --background-color: #F4F6F7;
  --text-color: #34495E;
  --border-color: rgba(41, 128, 185, 0.2);
  --divider-color: rgba(230, 126, 34, 0.2);
  --shadow-light: #ffffff;
  --shadow-dark: rgba(0, 0, 0, 0.12);
  --highlight-color: #E74C3C;
  
  /* Fonts */
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Neumorphism specific */
.neu-card {
    background: var(--background-color);
    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.5);
}

.neu-btn {
    background: var(--secondary-color);
    color: white;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2), -4px -4px 8px rgba(255,255,255,0.5);
    transition: transform 0.2s;
}
.neu-btn:hover {
    background: #d35400;
    transform: scale(1.02);
}

.neu-input {
    background: #eef2f5;
    box-shadow: inset 5px 5px 10px #d6dbe0, inset -5px -5px 10px #ffffff;
    border: none;
}

/* Timeline/Features styling */
.feature-row {
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 2rem;
}
.feature-row::before {
    content: '\f105'; /* FontAwesome chevron */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -12px;
    top: 0;
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
}

/* Header & Mobile Menu */
#mobile-check { display: none; }
.desktop-nav { display: flex; }

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-color);
        flex-direction: column;
        padding: 1rem;
        z-index: 40;
    }
    #mobile-check:checked ~ .desktop-nav {
        display: flex;
    }
    .burger-icon {
        display: block;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
}
@media (min-width: 769px) {
    .burger-icon { display: none; }
}

section:not(.hero-section) {
    padding-top: 10vh;
    padding-bottom: 10vh;
}