@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Random Colors: Purple/Deep Blue Palette */
  --primary-color: #8E44AD; /* Purple */
  --secondary-color: #5B2C6F; /* Dark Purple */
  --accent-color: #3498DB; /* Blue */
  --light-color: #F4ECF7;
  --dark-color: #1A1B2F; /* Very Dark Blue */
  
  /* Derived */
  --gradient-primary: linear-gradient(135deg, #A569BD 0%, #8E44AD 100%);
  --hover-color: #71368A;
  --background-color: #F8F9F9;
  --text-color: #4A235A;
  
  /* Neuromorphism */
  --border-color: rgba(142, 68, 173, 0.15);
  --divider-color: rgba(91, 44, 111, 0.1);
  --shadow-color: rgba(26, 27, 47, 0.1);
  --highlight-color: #00BCD4; /* Cyan */
  
  /* 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);
}

h1, h2, h3, h4 {
    font-family: var(--main-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Elegant Neuromorphism */
.box-style {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.1);
    border: 1px solid var(--border-color);
    transition: 0.3s;
}
.box-style:hover {
    box-shadow: 0 15px 40px rgba(142, 68, 173, 0.2);
    transform: translateY(-3px);
}

/* Button */
.btn-grad {
    background-image: var(--gradient-primary);
    text-transform: uppercase;
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.btn-grad:hover {
    background-position: right center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

/* Navbar */
header { background: #fff; border-bottom: 1px solid var(--border-color); }
header a { color: var(--dark-color); }
header a:hover { color: var(--primary-color); }

/* Mobile Nav */
.mob-menu { display: none; }
#nav-check { display: none; }
.nav-btn { display: none; cursor: pointer; color: var(--primary-color); font-size: 24px; }

@media (max-width: 768px) {
    .nav-btn { display: block; }
    .desktop-menu { display: none; }
    .mob-menu {
        display: none;
        flex-direction: column;
        background: white;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        border-bottom: 2px solid var(--primary-color);
        text-align: center;
    }
    #nav-check:checked ~ .mob-menu { display: flex; }
    .mob-menu a { padding: 10px; display: block; }
}

/* Section Common */
.sec-pad { padding-top: 10dvh; padding-bottom: 10dvh; }

/* Timeline Vert */
.timeline-wrap { border-left: 2px dashed var(--primary-color); padding-left: 30px; margin-left: 20px; }
.timeline-dot {
    position: absolute; left: -39px; top: 0;
    width: 20px; height: 20px; background: var(--highlight-color);
    border-radius: 50%; border: 4px solid white; box-shadow: 0 0 0 2px var(--primary-color);
}

/* Form */
.form-input {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    padding: 12px;
    width: 100%;
    margin-bottom: 10px;
}

footer { background: var(--dark-color); color: #bdc3c7; padding: 50px 0; }
footer a { color: white; text-decoration: none; border-bottom: 1px dotted #777; }