﻿body {
}

 
:root {
    --brand: #1b5e20;
    --brand-2: #2e7d32;
    --ink: #243024;
    --muted: #5b6a5b;
    --paper: #f7f9f6;
    --card: #ffffff;
    --accent: #c8e6c9;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}
/* Header / Hero */
header.hero {
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    text-align: center;
}

.hero img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    opacity: .85;
    display: block;
    filter: saturate(1.1) contrast(1.05);
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 70%);
}

.hero .title {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 16px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(1.6rem, 2.8vw + 1rem, 3rem);
    letter-spacing: .3px;
}

.hero p {
    margin: 8px 0 0;
    opacity: .95;
    font-weight: 500;
}

/* Layout */
.containera {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 18px 40px;
}

h2 imp !important {
    color: var(--brand);
    margin: 32px 0 12px;
    font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
    border-left: 6px solid var(--brand);
    padding-left: 10px;
}

p   {
    margin: 10px 0;
    text-align: justify;
}

ul   {
    margin: 10px 0 0 22px;
}

/* Cards */
.carda {
    background: var(--card);
    border-radius: 16px;
    padding: 18px 18px;
    box-shadow: 0 10px 24px rgba(27,94,32,.08);
    border: 1px solid rgba(27,94,32,.12);
}

.grida {
    display: grid;
    gap: 18px;
}

    .grida.cols-2 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

/* Table */
table {
    width: 100% !important;
    border-collapse: collapse !important;
}

th, td {
    padding: 12px 10px !important;
    text-align: left !important;
}

th {
    background: var(--accent) !important;
    color: #1a3d1d !important;
}

tr:not(:last-child) td {
    border-bottom: 1px solid #e3f2e1 !important;
}

/* Highlight */
.highlight {
    background: #e8f5e9;
    border-left: 6px solid var(--brand-2);
    padding: 14px 14px;
    border-radius: 12px;
}

/* Footer */
footer {
    text-align: center;
    padding: 18px;
    background: var(--brand);
    color: #fff;
}

/* Badge list */
.badgesa {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.badgesa {
    background: #edf7ee;
    border: 1px solid #cfe9d1;
    color: #1a3d1d;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .9rem;
}

.hero-image {
    background-image: url('../images/director.jpg');
    height: 100vh; /* Full screen height */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

 
 