@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #FF6B35; /* Orange */
  --secondary-color: #004E89; /* Deep Blue */
  --accent-color: #4ECDC4; /* Teal */
  --light-color: #FFFFFF;
  --dark-color: #1A1A1A;
  --gradient-primary: linear-gradient(45deg, #FF6B35 0%, #FFD23F 100%);
  --hover-color: #E85D04;
  --background-color: #F7F9FC;
  --text-color: #333333;
  --border-color: rgba(255, 107, 53, 0.3);
  --divider-color: rgba(0, 78, 137, 0.1);
  --shadow-color: rgba(0, 78, 137, 0.15);
  --highlight-color: #FFD23F;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

/* Card Style for V2 */
.card-style {
    background: var(--light-color);
    border-radius: 25px;
    box-shadow: 0 10px 25px var(--shadow-color);
    border-bottom: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}
.card-style:hover {
    transform: translateY(-10px);
}

.timeline-marker {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* Mobile Menu */
#menu-checkbox { display: none; }
#menu-checkbox:checked ~ .menu-items { display: block; }