@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: Elegant Purple/Pink */
  --primary-color: #8E44AD;
  --secondary-color: #9B59B6;
  --accent-color: #D7BDE2;
  --light-color: #F4ECF7;
  --dark-color: #4A235A;
  --gradient-primary: linear-gradient(135deg, #BB8FCE 0%, #8E44AD 100%);
  --hover-color: #71368A;
  --background-color: #FBFCFC;
  --text-color: #515A5A;
  --border-color: rgba(142, 68, 173, 0.2);
  --divider-color: rgba(155, 89, 182, 0.1);
  --shadow-light: #ffffff;
  --shadow-dark: rgba(74, 35, 90, 0.1);
  --highlight-color: #F1948A;
  
  /* Fonts */
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    font-weight: 700;
}

/* Soft Neumorphism */
.soft-neu {
    background: var(--background-color);
    border-radius: 30px;
    box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
    border: 1px solid rgba(255,255,255,0.7);
}

.neu-button {
    background: var(--dark-color);
    color: white;
    border-radius: 50px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.neu-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Nav Styles */
.nav-link {
    position: relative;
    color: white;
    text-decoration: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}

/* Hamburger */
#toggle-nav { display: none; }
.site-nav { display: flex; }

@media (max-width: 768px) {
    .site-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-color);
        padding: 2rem;
        text-align: center;
    }
    #toggle-nav:checked ~ .site-nav {
        display: flex;
    }
    .menu-icon {
        display: block;
        color: white;
        font-size: 1.8rem;
    }
}
@media (min-width: 769px) {
    .menu-icon { display: none; }
}

section:not(.hero-area) {
    padding-top: 10vh;
    padding-bottom: 10vh;
}