@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Random Selection: Greens & Earth Tones */
  --primary-color: #27AE60;
  --secondary-color: #16A085;
  --accent-color: #2ECC71;
  --light-color: #F0F8F5;
  --dark-color: #0E2919;
  
  --gradient-primary: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  --hover-color: #219150;
  --background-color: #FCFCFC;
  --text-color: #4B5563;
  
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(22, 160, 133, 0.15);
  --shadow-color: rgba(14, 41, 25, 0.08);
  --highlight-color: #E67E22;
  
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    font-size: 18px;
}

h1, h2, h3 {
    font-family: var(--main-font);
    font-weight: 700;
}

/* Elegant Neumorphism */
.card-soft {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
}

/* Header */
header {
    background-color: var(--dark-color);
    padding: 20px 0;
}
header .logo img { height: 45px; }
header a { color: #D1F2EB; text-decoration: none; font-family: var(--alt-font); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;}
header a:hover { color: #fff; text-decoration: underline; }

/* Mobile Menu Checkbox */
#nav-trigger { display: none; }
.nav-icon { display: none; color: white; font-size: 2rem; cursor: pointer; }

@media (max-width: 768px) {
    .nav-icon { display: block; position: absolute; right: 20px; top: 20px; }
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--dark-color);
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 999;
    }
    .nav-links li { padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    #nav-trigger:checked ~ .nav-links { display: flex; }
}

/* Sections */
section { padding: 80px 0; }
.hero-section { min-height: 75vh; display: flex; align-items: center; justify-content: center; }

/* Timeline Horizontal-ish for Desktop, Vertical Mobile */
.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}
.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px var(--shadow-color);
}
.timeline-item::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background: var(--divider-color);
}
.timeline-item:last-child::after { display: none; }

/* Buttons & Forms */
.btn-nature {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--alt-font);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn-nature:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: var(--alt-font);
}
input:focus, textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(22, 160, 133, 0.2);
}

footer { background: var(--dark-color); color: #ecf0f1; padding: 60px 0; }