* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}


body {
    background: #fffdf2;
    color: #111;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding: 15px 25px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,248,166,0.2);
}

.navbar img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff8a6;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff8a6;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff8a6;
    border-radius: 3px;
    display: block;
}

/* HERO */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(circle at center, rgba(255,248,166,0.12), rgba(0,0,0,0.9)),
        url("images/logo.png") center/700px no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff8a6;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #fff8a6;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
}

/* SECTIONS */
.section {
    padding: 140px 10%;
    text-align: center;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #000;
    margin: 15px auto 0;
}

.section p {
    max-width: 850px;
    margin: 0 auto 18px;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    color: #222;
}

.light-bg {
    background: #fff8a6;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}


/* GALLERY CAROUSEL */
.carousel {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.carousel-track img {
    min-width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Auto sliding animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel:hover .carousel-track {
    animation-play-state: paused;
}


/* LEADERS */
.leaders {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.leader-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    max-width: 260px;
}

.leader-card h3 {
    margin-top: 15px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.leader-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    border: 5px solid #fff8a6;
}

.leader-card p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    margin-top: 5px;
}


/* FOOTER */
footer {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}


/* MOBILE NAV */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-size: 420px;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: 320px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 100px 6%;
    }

    .section h2 {
        font-size: 2.1rem;
    }

    .section p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .values-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .carousel-track img {
        min-width: 260px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .carousel-track img {
        min-width: 220px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .leaders {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 0.9rem;
        padding: 18px;
    }
}



