/*
Theme Name: EduGreen Minimal
Theme URI: https://example.com/
Author: OpenAI
Description: Temă WordPress clasică minimă pentru EduGreen, cu header, footer, CSS și template-uri de pagină.
Version: 1.0
Text Domain: edugreen-minimal
*/

:root{
    --green-1:#2f6f3e;
    --green-2:#3f8a52;
    --green-3:#edf7ef;
    --text:#1f2a22;
    --white:#ffffff;
    --border:#d9e7dc;
    --container:1200px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:#f7faf7;
    line-height:1.6;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    color:var(--green-2);
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.site-header{
    background:var(--green-1);
    color:var(--white);
    padding:18px 0;
}

.container{
    width:min(100% - 32px, var(--container));
    margin:0 auto;
}

.site-branding{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.site-title{
    margin:0;
    font-size:28px;
    line-height:1.2;
}

.site-title a{
    color:var(--white);
    text-decoration:none;
}

.site-description{
    margin:4px 0 0;
    color:rgba(255,255,255,.88);
    font-size:14px;
}

.main-navigation ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.main-navigation a{
    color:var(--white);
    font-weight:600;
}

.site-main{
    padding:48px 0;
}

.page-hero,
.hero{
    background:var(--green-3);
    border:1px solid var(--border);
    border-radius:16px;
    padding:40px 28px;
    margin-bottom:32px;
}

.page-hero h1,
.hero h1{
    margin:0 0 12px;
    font-size:36px;
    line-height:1.15;
}

.section-box{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:16px;
    padding:28px;
    margin-bottom:24px;
}

.section-box h2{
    margin-top:0;
}

.entry-content > *:first-child{
    margin-top:0;
}

.entry-content > *:last-child{
    margin-bottom:0;
}

.site-footer{
    background:#1f4f2b;
    color:var(--white);
    padding:24px 0;
    margin-top:40px;
}

.site-footer p{
    margin:0;
}

@media (max-width: 768px){
    .site-title{
        font-size:24px;
    }

    .page-hero h1,
    .hero h1{
        font-size:30px;
    }

    .site-main{
        padding:32px 0;
    }
}
