/* ============================================
   VERBENA PROJECTS - Main Stylesheet
   Easy to edit - just change values below!
   ============================================ */

/* --- COLOR PALETTE --- */
:root {
    --primary-green: #677e4b;
    --text-light: #d8cfee;
    --text-dark: #000;
    --bg-dark: #1a1a1a;
    --bg-light: #ffffff;
}

/* --- GLOBAL RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #c8b8db;
}

/* --- HEADER SECTION --- */
header {
    background: var(--bg-dark);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 400;
}

/* --- NAVIGATION --- */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-green);
}

/* Mobile menu toggle (hidden by default) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION (Split Layout) --- */
.hero-split {
    display: flex;
    min-height: 80vh;
    position: relative;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 6rem;
    background: #c8b8db;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c4a52;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tagline {
    font-size: 2rem;
    font-style: italic;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: var(--bg-light);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
}

.btn:hover {
    background: transparent;
    color: var(--primary-green);
}

/* --- MAIN CONTENT SECTIONS --- */
section {
    padding: 4rem 20px;
}

section .container {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* --- ABOUT SECTION --- */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.initiatives {
    margin-top: 3rem;
}

.initiative {
    margin-bottom: 2.5rem;
}

.initiative h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

/* --- PROJECTS GRID --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.project-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.project-card p {
    margin-bottom: 1.5rem;
}

.project-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.project-card a:hover {
    text-decoration: underline;
}

/* --- CONTACT SECTION --- */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--primary-green);
    font-size: 2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--text-dark);
}

/* --- FOOTER --- */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 2rem 20px;
    text-align: center;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: 1rem 0;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav a {
        display: block;
        padding: 1rem 20px;
    }
    
    /* Mobile hero split */
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-left {
        padding: 3rem 2rem;
        align-items: center;
        text-align: center;
        clip-path: none;
    }
    
    .hero-right {
        min-height: 50vh;
        clip-path: none;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}
