@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: #27AE60 (Nephritis), #2ECC71 (Emerald), #F39C12 (Orange), #F2F2F2 (Concrete) */
  
  --primary-color: #27AE60;
  --secondary-color: #2ECC71;
  --accent-color: #F39C12;
  --light-color: #F9FCFA;
  --dark-color: #1E392A;
  
  --gradient-primary: linear-gradient(180deg, #2ECC71 0%, #27AE60 100%);
  --hover-color: #219150;
  --background-color: #ffffff;
  --text-color: #4F5F55;
  
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(243, 156, 18, 0.2);
  --shadow-color: rgba(39, 174, 96, 0.1);
  --highlight-color: #E67E22;
  
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    font-weight: 700;
}

/* Neuromorphism Utils - Soft Style */
.soft-card {
    background: #ffffff;
    box-shadow: 20px 20px 60px #d9d9d9, 
                -20px -20px 60px #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.8);
}

.action-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

/* Section Spacing */
section:not(.hero-section) {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

/* Timeline/Feature */
.timeline-item {
    position: relative;
    padding-left: 20px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
}

/* Mobile Menu Checkbox Hack */
#menu-toggle:checked ~ .menu-items {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 1.5rem;
    z-index: 50;
}

/* Abstract Pattern */
.abstract-bg {
    background-color: #fcfcfc;
    background-image: radial-gradient(var(--primary-color) 0.5px, #fcfcfc 0.5px);
    background-size: 10px 10px;
}