* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --gold: #caa24d;
    --green-dark: #0f3d2e;
    --green-light: #145a42;
}

body {
    line-height: 1.6;
    color: #333;
}

/* HERO */
.hero {
    min-height: calc(85vh - 80px); /* navbar height compensation */
    background: url("images/hero-bg.png") center/cover no-repeat;
    position: relative;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 40px 20px 60px; /* 👈 clean spacing below navbar */
    text-align: center;
}


.hero-logo {
    max-width: 380px;
    margin-bottom: 50px;
}

.hero h1 {
    color: #fff;
    font-size: 36px;
}

.hero p {
    color: #eee;
    margin: 15px auto 30px;
}

.btn {
    background: linear-gradient(135deg, #d8b25a, var(--gold));
    color: #000;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

/* SECTIONS */
.section {
    padding: 70px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.gray {
    background: #f4f4f4;
}

.dark {
    background: #111;
    color: #fff;
}

/* TITLES */
.section h2 {
    color: var(--gold);
    margin-bottom: 30px;
}

/* GRIDS */
.grid-2, .grid-3 {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* CARDS */
.card, .project-card, .team-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover,
.project-card:hover,
.team-card:hover {
    transform: translateY(-6px);
}

/* GREEN SECTION */
.green-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    color: #fff;
}

.green-section p {
    color: #e6f2ee;
}

/* STATEMENT */
.statement-highlight {
    background: #f4fbf8;
}

.highlight-text {
    max-width: 850px;
    margin: auto;
    text-align: center;
    font-size: 26px;
}

.highlight-text span {
    display: block;
    margin-top: 10px;
    color: #1f7a5a;
    font-weight: bold;
}

/* TEAM */
.team-section {
    text-align: center;
}

.team-founder {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.team-card img {
    border-radius: 50%;
}

.team-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

/* CONTACT */
.contact-center {
    max-width: 700px;
    margin: auto;
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    padding: 40px;
    border-radius: 12px;
}

.contact-center a {
    color: var(--gold);
    text-decoration: none;
}

.map-wrapper iframe {
    width: 100%;
    height: 280px;
    border: 0;
    margin: 30px 0;
}

/* FORM */
input, button {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
}

button {
    background: var(--gold);
    font-weight: bold;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 26px;
    }
    .hero-logo {
        max-width: 260px;
    }
}
/* =========================
   CLEAN GREEN NAVIGATION
========================= */

.clean-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0f3d2e;   /* FULL GREEN BAR */
    width: 100%;          /* FULL WIDTH */
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.clean-nav {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;      /* vertical thickness of bar */
    display: flex;
    justify-content: center;
    gap: 140px;           /* 🔥 5x spacing between tabs */
}

/* NAV TABS */
.nav-tab {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;     /* 🔥 EXTRA BOLD */
    letter-spacing: 1px;  /* professional spacing */
    padding: 8px 6px;
    transition: all 0.25s ease;
}

/* HOVER */
.nav-tab:hover {
    color: var(--gold);
}

/* ACTIVE TAB */
.nav-tab.active {
    color: var(--gold);
}

/* CONTACT */
.nav-cta {
    color: #000;
    background: var(--gold);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 900;
}

.nav-cta:hover {
    background: #d8b25a;
    color: #000;
}

/* MOBILE */
@media (max-width: 900px) {
    .clean-nav {
        gap: 30px;   /* reduced for mobile */
        flex-wrap: wrap;
    }

    .nav-tab {
        font-size: 14px;
    }
}
