/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fefefe;
    line-height: 1.6;
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #848282cc;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333333;
}

.logo-img {
    width: 60px;
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text p {
    font-size: 0.85rem;
    color: #120000;
}

.nav-desktop {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #cfa900;
}

.btn-primary {
    background-color: #cfa900;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #b08f00;
}

.btn-secondary {
    border: 2px solid #cfa900;
    color: #cfa900;
    padding: 6px 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #cfa900;
    color: #fff;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    width: 100%;
    left: 0;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-mobile a {
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}

.nav-mobile a.btn-primary {
    margin: 10px 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: absolute;
    color: #fff;
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-badge {
    background-color: #cfa900;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gold {
    color: #cfa900;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-weight: 600;
}

.hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg img.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg img.hero-image.active {
  opacity: 1;
  z-index: 1;
}


/* ===== WELCOME SECTION ===== */
.welcome-section {
    margin: 100px 0 60px;
}

.welcome-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.welcome-image {
    flex: 1;
    position: relative;
}

.welcome-image img {
    width: 100%;
    border-radius: 10px;
}

.welcome-quote {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 10px;
    font-style: italic;
}

.floating-badge {
    position: absolute;
    top: 7px;
    left: 2px;
    background-color: #cfa900;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-content {
    flex: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.program-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.learn-more {
    text-decoration: none;
    color: #cfa900;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    margin: 80px 0;
    color: #fff;
    text-align: center;
}

.cta-bg {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 700px;
}

.cta-buttons {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-contact a {
    display: inline-block;
    margin: 10px;
    color: #fff;
    text-decoration: none;
}

/* ===== MAP SECTION ===== */
.map-section {
    margin: 80px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1b1b1b;
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand img {
    width: 50px;
    margin-bottom: 10px;
}

.footer-links h4 {
    margin-bottom: 10px;
}

.footer-links div a {
    display: block;
    text-decoration: none;
    color: #fff;
    margin: 3px 0;
    transition: color 0.3s;
}

.footer-links div a:hover {
    color: #cfa900;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #bbb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .welcome-grid {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .cta-content h2 {
        font-size: 1.5rem;
    }
    .program-card {
        padding: 15px;
    }
}
