@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  /* Colorful Palette */
  --primary-color: #59057B;
  --secondary-color: #EE4266;
  --accent-color: #344CB7;
  --light-color: #F8F9FA;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #59057B 0%, #344CB7 100%);
  --hover-color: #AB0E86;
  --background-color: #F4F6F9;
  --text-color: #2C3E50;
  --border-color: rgba(89, 5, 123, 0.2);
  --divider-color: rgba(238, 66, 102, 0.1);
  --shadow-color: rgba(15, 16, 33, 0.1);
  --highlight-color: #FFEB00;
  
  /* Fonts */
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Hover Utilities */
.hover-link:hover {
    color: var(--highlight-color) !important;
}

.neumorphic-card {
    transition: transform 0.3s ease-in-out;
}

.neumorphic-card:hover {
    transform: translateY(-10px);
}

details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}
@keyframes sweep {
    0%    {opacity: 0; transform: translateY(-10px)}
    100%  {opacity: 1; transform: translateY(0)}
}

/* Mobile Navigation Hack (No JS) */
.hamburger-btn {
    display: none;
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px !important;
    }
    
    #mobile-menu:checked ~ .nav-menu {
        display: block;
    }
    
    .timeline-line {
        left: 30px !important;
    }
    
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }
    
    .timeline-content {
        width: calc(100% - 80px) !important;
        text-align: left !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
    }
    
    .timeline-item > div:last-child {
        display: none;
    }
    
    .cta-text-center {
        text-align: center !important;
    }
}