/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #222;
    line-height: 1.6;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0d0d;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #fff;
    font-size: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f0c040;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/WhatsApp\ Image\ 2026-03-29\ at\ 19.42.45.jpeg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    background-size: cover;
    height: 70vh;
    object-position: 50% 20%;
    background-position: top;
    padding: 100px 20px;
    object-fit: cover;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* SECTIONS */
section {
    padding: 50px 20px;
    margin: 20px;
    background: #fff;
    border-radius: 10px;
}

h2 {
    margin-bottom: 15px;
    color: #111;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #0d0d0d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #f0c040;
    color: #000;
}

/* POSTS */
.post {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #0d0d0d;
    background: #fafafa;
    border-radius: 5px;
}

/* OUTREACH */
.outreach-box {
    margin-bottom: 15px;
    padding: 15px;
    background: #fafafa;
    border-left: 4px solid #f0c040;
    border-radius: 5px;
}

/* GALLERY */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: 32%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* CONTACT */
.contact-preview p {
    margin: 5px 0;
}

footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #f0c040;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* RESPONSIVE (VERY IMPORTANT) */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .gallery img {
        width: 100%;
    }

    section {
        margin: 10px;
    }
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #111;
    color: #fff;
    position: relative;
}

.logo {
    font-weight: 600;
    font-size: 18px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}