/* ==============================
   GOOGLE FONTS
============================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');

/* ==============================
   ROOT VARIABLES
============================== */
:root {
    --yellow: #f8b317;
    --green: #236c37;
    --gray: #ededed;
    --black: #000000;
    --white: #ffffff;
}

/* ==============================
   GLOBAL RESET
============================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

section {
    padding: 6rem 0 4rem;
}

@media (max-width: 1024px) { section { padding: 4rem 0; } }
@media (max-width: 768px)  { section { padding: 3rem 0; } }

/* ==============================
   TYPOGRAPHY
============================== */
h1 { font-weight: 700; font-size: clamp(24px, 5vw, 44px); line-height: clamp(30px, 6vw, 52px); color: var(--black); }
h2 { font-weight: 700; font-size: clamp(18px, 2.5vw, 30px); line-height: clamp(24px, 3.5vw, 38px); color: var(--black); }
h3 { font-weight: 500; font-size: clamp(17px, 2vw, 26px); line-height: clamp(20px, 3vw, 30px); color: var(--black); }
h4 { font-weight: 450; font-size: clamp(22px, 3vw, 32px); line-height: clamp(26px, 4vw, 38px); color: var(--green); }
h5 { font-weight: 540; font-size: clamp(26px, 5vw, 42px); line-height: clamp(30px, 6vw, 50px); color: var(--black); }
p  { font-weight: 450; font-size: clamp(18px, 3vw, 28px); line-height: clamp(24px, 4vw, 36px); color: var(--black); }

.text-white { color: #ffffff !important; }

/* ==============================
   HERO SECTION
============================== */
.hero-video, .hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.hero-video-bg, .hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-center-overlay {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-inner {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 2px var(--green);
    margin: 0;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    margin-top: 10px;
    text-shadow: 2px 2px 2px var(--green);
}

@media (max-width: 576px) {
    .hero-title   { font-size: 2.2rem; line-height: 2.6rem; }
    .hero-subtitle{ font-size: 1.2rem; line-height: 1.6rem; }
}

/* ==============================
   NAVBAR
============================== */
.navbar-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.25rem 10%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1030;
    transition: background-color 0.3s ease;
}

.navbar-brand img {
    height: 48px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar .container-fluid { justify-content: space-between; }
.navbar-collapse { flex-grow: 1; justify-content: right; padding: 0 1rem; }
.navbar-nav { gap: 2rem; }
.navbar-right { margin-left: auto; display: flex; align-items: center; gap: 1.5rem; }

.navbar-toggler { border: none; padding: 0.25rem 0.5rem; color: var(--green) !important; }

.menu-text, .navbar-overlay .nav-link {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.menu-text:hover, .navbar-overlay .nav-link:hover { color: var(--green); }

@media (max-width: 1200px){ .navbar-overlay { padding: 0.25rem 5%; } }
@media (max-width: 992px){
    .navbar-overlay { padding: 0.25rem 3%; }
    .navbar-brand img { height: 45px; }
    .navbar-collapse { justify-content: flex-start !important; }
    .navbar-nav { gap: 1rem; }
    .menu-text { display: block; padding: 0.5rem 0; }
    .navbar-right { gap: 1.25rem; }
}
@media (max-width: 768px){
    .navbar-brand img { height: 40px; }
    .navbar-right { gap: 0.75rem; }
}
@media (max-width: 576px){
    .navbar-brand img { height: 40px; }
    .navbar-right { gap: 0.5rem; }
}

/* ==============================
   BUTTONS
============================== */
.btn {
    all: unset;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--green);
    color: var(--white);
    font-size: 1.3rem;
}
.btn-primary:hover { background-color: var(--green); transform: translateY(-1px); }

.btn-secondary {
    background-color: var(--yellow);
    color: var(--black);
}
.btn-secondary:hover { background-color: #fab638; transform: translateY(-1px); }

@media (max-width: 768px){
    .btn-secondary { font-size: 0.85rem; padding: 0.4rem 0.9rem; }
}
@media (max-width: 576px){
    .btn-secondary { font-size: 0.7rem; padding: 0.2rem 0.7rem; }
}

.btn-success {
    background-color: var(--green) !important;  /* normal green */
    border-color: var(--green) !important;
    color: #ffffff !important;
}

.btn-danger {
    background-color: #dc3545 !important;
    /* Bootstrap default red */
    border-color: #dc3545 !important;
    color: #ffffff !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: #b52c3a !important;
    /* Keep red on hover/focus/active */
    border-color: #b52c3a !important;
    color: #ffffff !important;
}

/* ==============================
   STATEMENT SECTION
============================== */
.statement-divider {
    width: 120px;
    height: 6px;
    background: var(--yellow);
    border-radius: 3px;
    margin: 20px 0;
}

/* ==============================
   FOOTER
============================== */
footer {
    background-color: var(--gray);
    color: var(--black);
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ==============================
   UTILITY CLASSES
============================== */
.wide-container { width: 100%; max-width: 80%; margin: 0 auto; padding: 0 30px; }
@media (max-width: 1024px){ .wide-container { max-width: 90%; padding: 0 20px; } }
@media (max-width: 768px) { .wide-container { max-width: 90%; padding: 0 15px; } }
@media (max-width: 480px) { .wide-container { max-width: 90%; padding: 0 10px; } }

.small-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.small-card h3, .small-card h4 { font-weight: 700; margin-bottom: 8px; font-size: clamp(1rem,2vw,2rem); color: var(--green); }
.small-card p { font-weight: 500; font-size: clamp(0.8rem,1.2vw,1.4rem); margin:0; line-height:1.4; color: var(--black); }

.workshops-grid { display: grid; gap: 20px; }
@media (max-width: 992px){ .workshops-grid { grid-template-columns: repeat(2,1fr); gap:15px; } }
@media (max-width: 576px){ .workshops-grid { grid-template-columns: 1fr; gap:10px; } }

.bg-alt-light { background-color: var(--gray); }
.grey { background-color: #ededed; }

.important-list {
    display: inline-block;
    text-align: left;
    padding-left: 20px;
    margin: 0 auto;
}

.important-list li { margin-bottom: 8px; font-weight: 500; }
