/* =========================
   RESET / GLOBAL
========================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, sans-serif;
    color:#1f2620;
    line-height:1.5;
    background:
        radial-gradient(circle at top left, #eef4ee 0%, transparent 35%),
        radial-gradient(circle at bottom right, #e7efe8 0%, transparent 35%),
        linear-gradient(to bottom, #edf3ed 0%, #f6f6f4 260px, #f5f5f5 100%);
}

/* =========================
   HERO HEADER
========================= */

.hero-header{
    position:relative;
    background:
        linear-gradient(to bottom, rgba(20,28,20,0.25), rgba(20,28,20,0.65)),
        url('/assets/banner1.png');
    background-size:cover;
    background-position:center;

    height:340px;

    display:flex;
    flex-direction:column;
    justify-content:space-between; /* keeps nav at bottom */

    border-bottom:4px solid #d1b16f;
    box-shadow:0 6px 18px rgba(0,0,0,0.16);
}

.hero-inner{
    flex:1;                      /* fills available space */
    display:flex;
    align-items:center;          /* vertical center of TEXT ONLY */
    justify-content:center;      /* horizontal center */
}

.hero-panel{
    max-width:700px;
    margin:0 auto;              /* centers the whole block */
    text-align:center;          /* centers all text inside */
    background:rgba(25, 43, 29, 0.76);
    border:1px solid rgba(255,255,255,0.12);
    padding:24px 26px;
    border-radius:16px;
    backdrop-filter:blur(3px);
    box-shadow:0 10px 24px rgba(0,0,0,0.18);
}

.hero-kicker{
    display:inline-block;
    margin-bottom:10px;
    padding:6px 10px;
    background:rgba(209,177,111,0.16);
    border:1px solid rgba(209,177,111,0.35);
    color:#f1dfb0;
    border-radius:999px;
    font-size:12px;
    font-weight:bold;
    letter-spacing:0.6px;
    text-transform:uppercase;
}

.hero-title{
    margin:0;
    color:#ffffff;
    font-size:38px;
    font-weight:bold;
    line-height:1.05;
    letter-spacing:0.6px;
}

.hero-sub{
    margin-top:10px;
    color:#e5efe6;
    font-size:15px;
    max-width:560px;
}

.hero-accent{
    margin-top:16px;
    width:150px;
    height:4px;
    border-radius:999px;
    background:linear-gradient(to right, #d1b16f, #f0dfae);
}

/* =========================
   NAV
========================= */

.nav-bar{
    background:linear-gradient(to right, #1f3b26, #2f5d3a, #44704d);
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(0,0,0,0.10);
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav-inner{
    max-width:1180px;
    margin:0 auto;
    padding:10px 20px;
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.nav-inner a{
    display:inline-block;
    color:white;
    text-decoration:none;
    font-weight:bold;
    padding:10px 16px;
    border-radius:10px;
    transition:all 0.18s ease;
}

.nav-inner a:hover{
    background:rgba(255,255,255,0.12);
    transform:translateY(-1px);
}

/* =========================
   LAYOUT
========================= */

.container{
    max-width:1080px;
    margin:40px auto;
    background:white;
    padding:32px;
    border-radius:18px;
    border:1px solid #e6e6e2;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.08),
        0 2px 6px rgba(0,0,0,0.04);
}

.section-card,
.card{
    background:linear-gradient(to bottom, #ffffff, #fcfcfb);
    border:1px solid #e8e6e0;
    border-radius:16px;
    padding:22px;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
    margin-bottom:20px;
}

h1, h2, h3{
    color:#203824;
    margin-top:0;
}

h2{
    font-size:28px;
    margin-bottom:10px;
}

h3{
    font-size:20px;
    margin-bottom:8px;
}

p{
    margin-top:0;
}

/* =========================
   FORM STYLING
========================= */

form label{
    display:block;
    margin-top:16px;
    margin-bottom:6px;
    font-weight:bold;
    color:#26442c;
}

form input,
form select,
form textarea{
    width:100%;
    padding:12px 13px;
    border:1px solid #cfd6cf;
    border-radius:10px;
    background:#fff;
    color:#222;
    font-size:15px;
    transition:border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

form input:focus,
form select:focus,
form textarea:focus{
    outline:none;
    border-color:#5b8a65;
    box-shadow:0 0 0 4px rgba(91,138,101,0.14);
}

form textarea{
    min-height:120px;
    resize:vertical;
}

/* nice grouped rows if you use them */
.form-row{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
}

.form-row-3{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
}

/* =========================
   BUTTONS
========================= */

button,
.button,
input[type="submit"]{
    display:inline-block;
    margin-top:20px;
    background:linear-gradient(135deg, #2f5d3a 0%, #43724c 100%);
    color:white;
    padding:13px 22px;
    border:none;
    border-radius:12px;
    text-decoration:none;
    cursor:pointer;
    font-weight:bold;
    font-size:15px;
    box-shadow:0 8px 18px rgba(47,93,58,0.20);
    transition:transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover{
    filter:brightness(1.03);
    transform:translateY(-1px);
    box-shadow:0 10px 22px rgba(47,93,58,0.25);
}

.button-secondary{
    background:linear-gradient(135deg, #d9c18a 0%, #c7a866 100%);
    color:#243225;
    box-shadow:0 8px 18px rgba(199,168,102,0.18);
}

/* =========================
   FEATURE / INFO BLOCKS
========================= */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    margin:22px 0;
}

.feature-box{
    background:linear-gradient(to bottom, #ffffff, #fafaf8);
    border:1px solid #e7e3da;
    border-radius:16px;
    padding:18px;
    box-shadow:0 6px 14px rgba(0,0,0,0.04);
}

.feature-box h3{
    margin-bottom:8px;
}

.highlight-strip{
    margin:22px 0;
    padding:16px 18px;
    border-radius:14px;
    background:linear-gradient(135deg, #f3ecdc 0%, #fbf7ee 100%);
    border:1px solid #e3d6b4;
    color:#4a4028;
    font-weight:bold;
}

/* =========================
   TABLES
========================= */

table{
    border-collapse:separate;
    border-spacing:0;
    width:100%;
    margin-top:20px;
    overflow:hidden;
    border:1px solid #ddd;
    border-radius:14px;
    background:white;
}

table th,
table td{
    padding:12px 12px;
    text-align:left;
    border-bottom:1px solid #e6e6e6;
}

table th{
    background:linear-gradient(to bottom, #eef4ef, #e6efe7);
    color:#24452b;
    font-weight:bold;
}

table tr:last-child td{
    border-bottom:none;
}

/* =========================
   CODE / PRE
========================= */

pre{
    background:#fafafa;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:auto;
}

/* =========================
   FOOTER
========================= */

.site-footer{
    margin-top:60px;
    background:
        linear-gradient(135deg, #18281d 0%, #23402a 55%, #2f5d3a 100%);
    color:#e8f0e9;
    border-top:4px solid #d1b16f;
}

.footer-inner{
    max-width:1180px;
    margin:0 auto;
    padding:34px 20px 28px 20px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:28px;
}

.footer-col h3{
    margin:0 0 12px 0;
    color:#ffffff;
    font-size:18px;
}

.footer-col p,
.footer-col a{
    display:block;
    margin:0 0 10px 0;
    font-size:14px;
    line-height:1.5;
    color:#d6e2d7;
    text-decoration:none;
}

.footer-col a:hover{
    text-decoration:underline;
}

.footer-badge{
    display:inline-block;
    margin-top:10px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(209,177,111,0.14);
    border:1px solid rgba(209,177,111,0.35);
    color:#f0dfae;
    font-size:12px;
    font-weight:bold;
    letter-spacing:0.5px;
    text-transform:uppercase;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.10);
    text-align:center;
    padding:16px 20px;
    font-size:13px;
    color:#ced9cf;
}

/* =========================
   SMALL VISUAL EXTRAS
========================= */

.muted{
    color:#667269;
}

.text-center{
    text-align:center;
}

.mb-0{ margin-bottom:0; }
.mt-0{ margin-top:0; }
.mt-20{ margin-top:20px; }
.mb-20{ margin-bottom:20px; }

/* =========================
   MOBILE
========================= */

@media (max-width: 900px){
    .feature-grid{
        grid-template-columns:1fr;
    }

    .form-row,
    .form-row-3{
        grid-template-columns:1fr;
    }

    .footer-inner{
        grid-template-columns:1fr;
    }
}

@media (max-width: 700px){
    .hero-header{
        min-height:255px;
    }

    .hero-panel{
        max-width:100%;
        padding:16px 18px;
    }

    .hero-title{
        font-size:27px;
    }

    .hero-sub{
        font-size:13px;
    }

    .nav-inner{
        justify-content:center;
    }

    .container{
        margin:22px 10px;
        padding:20px;
        border-radius:14px;
    }

    .nav-inner a{
        padding:10px 12px;
    }
}