@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Random Selection: Oranges & Warm Darks */
  --primary-color: #E67E22;
  --secondary-color: #D35400;
  --accent-color: #F1C40F;
  --light-color: #FEFAE0;
  --dark-color: #2C3E50;
  
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
  --hover-color: #D35400;
  --background-color: #FDF5E6;
  --text-color: #2C3E50;
  
  --border-color: rgba(230, 126, 34, 0.3);
  --divider-color: rgba(211, 84, 0, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.05);
  --highlight-color: #2980B9; /* Complementary Blue */
  
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

/* Base Setup */
body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Neumorphism Subtle */
.feature-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 10px 10px 20px #d1cdbf, -10px -10px 20px #ffffff;
    border: 1px solid rgba(255,255,255,0.5);
}

/* Header */
header {
    background-color: var(--dark-color);
    padding: 1.5rem 0;
}
header a { color: #fff; text-decoration: none; font-weight: bold; }
header .logo img { height: 50px; }

/* Mobile Menu - Checkbox Hack */
#mobile-menu-check { display: none; }
.mobile-menu-btn { display: none; color: white; font-size: 24px; cursor: pointer; }

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; position: absolute; right: 20px; top: 20px; }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--dark-color);
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 100;
    }
    nav ul li { text-align: center; padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    #mobile-menu-check:checked ~ nav ul { display: flex; }
}

/* Sections */
section { padding: 10vh 0; }
.hero-section { min-height: 80vh; display: flex; align-items: center; }

/* Timeline logic vertical */
.timeline-container {
    border-left: 2px solid var(--primary-color);
    margin-left: 20px;
    padding-left: 30px;
}
.timeline-block {
    position: relative;
    margin-bottom: 40px;
}
.timeline-block::before {
    content: '\f105'; /* FontAwesome chevron */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -39px;
    top: 0;
    background: var(--primary-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

/* Form Styles */
input, textarea {
    background: #fff;
    border: 2px solid #eee;
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
    transition: 0.3s;
}
input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-action {
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-action:hover {
    background: var(--primary-color);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.4);
}

footer { background: #1a252f; color: #95a5a6; padding: 50px 0; }
footer a:hover { color: var(--primary-color); }