@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: #2C3E50, #ECF0F1, #3498DB, #E74C3C */
  --primary-color: #2C3E50;
  --secondary-color: #34495E;
  --accent-color: #3498DB;
  --light-color: #ECF0F1;
  --dark-color: #1a252f;
  --gradient-primary: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
  --hover-color: #2980B9;
  --background-color: #F8F9FA;
  --text-color: #2C3E50;
  --border-color: rgba(44, 62, 80, 0.2);
  --divider-color: rgba(52, 73, 94, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.15);
  --highlight-color: #E74C3C;
  
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

/* Neuromorphism Utils */
.neuro-card {
    background: var(--background-color);
    border-radius: 15px;
    box-shadow:  9px 9px 18px #d1d1d1,
             -9px -9px 18px #ffffff;
    border: 1px solid rgba(255,255,255,0.5);
}

.neuro-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2), -5px -5px 10px rgba(255,255,255,0.2);
    transition: transform 0.2s ease;
}

.neuro-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Timeline for Features */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--accent-color);
    margin-bottom: 2rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--highlight-color);
}

/* Mobile Menu - Checkbox Hack */
#menu-toggle { display: none; }
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
#menu-toggle:checked ~ .mobile-menu {
    max-height: 500px;
}

/* Form Styles */
input, textarea {
    background: #eef1f5;
    box-shadow: inset 5px 5px 10px #d9dce0, inset -5px -5px 10px #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
}