@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Colorful/Vibrant Theme for Harmony: #E01171 #2980B9 #F1C40F #ECF0F1 */
  --primary-color: #2980B9;
  --secondary-color: #E01171;
  --accent-color: #8E44AD; 
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #2980B9 0%, #E01171 100%);
  --hover-color: #1F618D;
  --background-color: #FFFFFF;
  --text-color: #34495E;
  --border-color: rgba(41, 128, 185, 0.2);
  --divider-color: rgba(224, 17, 113, 0.2);
  --shadow-color: rgba(44, 62, 80, 0.1);
  --highlight-color: #F1C40F;
  
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Work Sans', sans-serif;
}

html { scroll-behavior: smooth; }

section:not(.hero) {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}

/* Neuromorphism standard variant */
.shadow-neumorphic {
    box-shadow: 10px 10px 20px var(--shadow-color), 
               -10px -10px 20px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 14px 14px 24px var(--shadow-color), 
               -14px -14px 24px rgba(255, 255, 255, 0.9);
}

/* Timeline specific styles */
.right-timeline, .left-timeline {
    position: relative;
}

@media (max-width: 768px) {
    .wrap > div.absolute {
        left: 20px !important;
    }
    .right-timeline, .left-timeline {
        flex-direction: row;
        justify-content: flex-start;
    }
    .right-timeline > div.w-5\\/12, .left-timeline > div.w-5\\/12 {
        display: none;
    }
    .right-timeline > div.bg-white, .left-timeline > div.bg-white {
        width: calc(100% - 60px);
        margin-left: 20px;
        text-align: left;
    }
}

/* Mobile Menu Toggle CSS */
#main-menu:checked ~ nav {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 999;
}