/* style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Colorful Theme - vibrant colors for energetic look */
  --primary-color: #8E44AD;
  --secondary-color: #2D0A58;
  --accent-color: #D35400;
  --light-color: #FFFFFF;
  --dark-color: #1A0536;
  
  --gradient-primary: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
  --hover-color: #732D91;
  --background-color: #F3EBFF;
  --text-color: #4B5563;
  
  --border-color: rgba(142, 68, 173, 0.2);
  --divider-color: rgba(45, 10, 88, 0.1);
  --shadow-color: rgba(45, 10, 88, 0.15);
  --highlight-color: #27AE60;
  
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Custom interactive components */
.interactive-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.custom-shadow {
    box-shadow: 20px 20px 60px var(--shadow-color), -20px -20px 60px var(--light-color);
}

/* Timeline logic */
@media (max-width: 767px) {
    .timeline-v2 > div.absolute.left-1\/2 {
        left: 24px;
    }
    
    .timeline-v2 .group > div.absolute {
        left: 24px;
        transform: translateX(-50%);
    }

    .timeline-v2 .text-right, 
    .timeline-v2 .text-left {
        text-align: left !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
        width: 100%;
    }
}

/* Pure CSS Mobile Menu */
#mobile-menu:checked ~ .nav-links {
    display: flex;
}