:root {
    --jazul-yellow: #FFC107;
    --jazul-maroon: #800000;
}

/* ==============================
   Navbar Brand Text
   ============================== */
.jazul-brand-text {
    color: var(--jazul-yellow);
    font-weight: 800;
    letter-spacing: 1px;
    font-size: clamp(24px, 4vw, 40px); /* scales with screen */
    text-transform: uppercase;
}

/* ==============================
   Sidebar for Mobile
   ============================== */
#sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background-color: var(--jazul-maroon);
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
}

#sidebar a {
    display: block;
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

#sidebar a:hover {
    background-color: var(--jazul-yellow);
    color: var(--jazul-maroon);
    font-weight: 600;
}

/* Menu button (mobile only) */
.menu-btn {
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    position: relative;
    z-index: 1100;
    transition: transform 0.3s;
}

.menu-btn:hover {
    transform: scale(1.1);
}

/* ==============================
   Navbar
   ============================== */
.navbar {
    background-color: var(--jazul-maroon);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--jazul-yellow);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar-shrink {
    padding: 5px 20px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar .nav-link {
    color: var(--jazul-yellow);
    font-weight: 600;
    margin-left: 15px;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ==============================
   Hero Section
   ============================== */
.jazul-hero {
    background: linear-gradient(rgba(128,0,0,0.7), rgba(128,0,0,0.7)), 
                url('../assets/back.png') no-repeat center center; /* siguraduhin tama ang path mula css folder */
    background-size: cover;
    color: var(--jazul-yellow);
    min-height: 80vh;
    padding: 120px 20px;
    text-align: center;
    border-bottom: 6px solid var(--jazul-yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.jazul-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.jazul-hero p.lead {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-top: 10px;
    max-width: 700px;
}

/* ==============================
   Buttons
   ============================== */
.btn-jazul {
    background-color: var(--jazul-yellow);
    color: var(--jazul-maroon);
    font-weight: 700;
    border-radius: 8px;
    border: none;
    padding: 10px 22px;
    transition: 0.3s;
}

.btn-jazul:hover {
    background-color: var(--jazul-maroon);
    color: var(--jazul-yellow);
    transform: scale(1.05);
}

/* ==============================
   Service Cards
   ============================== */
.jazul-service-card {
    border: 2px solid #eee;
    padding: 2rem;
    border-radius: 12px;
    background-color: #fff;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.jazul-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--jazul-maroon);
}

.jazul-service-card i {
    font-size: 2.5rem;
    color: var(--jazul-maroon);
    margin-bottom: 10px;
}

.jazul-service-card a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

/* ==============================
   Main Content Shift for Sidebar
   ============================== */
#main {
    transition: margin-left 0.3s ease;
}

/* ==============================
   Footer
   ============================== */
footer {
    margin-top: 20px;
    background-color: var(--jazul-maroon);
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.95rem;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 991px) {
    .d-lg-flex {
        display: none !important;
    }
    .jazul-hero {
        padding: 80px 15px;
    }
    .jazul-service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .jazul-hero h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .jazul-hero p.lead {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }
    .btn-jazul {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}
:root {
    --jazul-yellow: #FFC107;
    --jazul-maroon: #800000;
}

/* GLOBAL */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--jazul-maroon);
    background-color: #fff;
}

.section-title {
    font-weight: 900;
    color: var(--jazul-maroon);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.text-maroon {
    color: var(--jazul-maroon);
}

/* HERO */
.jazul-hero {
    background: linear-gradient(rgba(128,0,0,0.7), rgba(128,0,0,0.7)), url('../assets/back.png') center/cover no-repeat;
    color: var(--jazul-yellow);
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.jazul-hero h1 {
    font-weight: 900;
}

.jazul-hero p.lead {
    font-size: 1.2rem;
}

/* BUTTONS */
.btn-jazul {
    background-color: var(--jazul-yellow);
    color: var(--jazul-maroon);
    font-weight: 700;
    border-radius: 8px;
    border: none;
    padding: 12px 25px;
    transition: 0.3s;
}

.btn-jazul:hover {
    background-color: var(--jazul-maroon);
    color: var(--jazul-yellow);
}

/* ABOUT IMAGES */
.about-image {
    border-radius: 12px;
}

/* PRESIDENT CARD */
.president-card {
    background-color: var(--jazul-yellow);
    color: var(--jazul-maroon);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

/* BOARD OF DIRECTORS */
.board-card {
    background-color: var(--jazul-yellow);
    color: var(--jazul-maroon);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.board-card img {
    border-radius: 50%;
    border: 4px solid var(--jazul-maroon);
    width: 150px;
    height: 150px;
}

.board-card:hover {
    transform: translateY(-6px);
}

/* FOOTER */
footer {
    background-color: var(--jazul-maroon);
    color: var(--jazul-yellow);
    text-align: center;
    padding: 25px 10px;
}


/* PERMITS SECTION */

.permit-card{
    border:none;
    border-radius:12px;
    overflow:hidden;
    transition:0.3s ease;
}

.permit-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.permit-img{
    width:100%;
    height:220px;
    object-fit:cover;
}
:root {
    --jazul-maroon: #800000;
    --jazul-yellow: #FFC107;
}

/* Navbar */
.navbar { background-color: var(--jazul-maroon); }
.navbar-brand { color: var(--jazul-yellow); font-weight: 700; }
.nav-link { color: var(--jazul-yellow); font-weight: 600; }
.nav-link:hover { color: #fff; text-decoration: underline; }

/* Hero */
.jazul-hero {
    background: linear-gradient(rgba(128,0,0,0.7), rgba(128,0,0,0.7)), url('assets/back.png') center/cover no-repeat;
    color: var(--jazul-yellow);
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 60px 15px;
}
.jazul-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 15px; }
.jazul-hero p { font-size: clamp(1rem, 2vw, 1.5rem); max-width: 700px; }

/* Section Titles */
.section-title {
    text-align: center;
    font-weight: 900;
    font-size: 2rem;
    margin: 40px 0 25px;
    color: var(--jazul-maroon);
}

/* Team Cards */
.team-card {
    background-color: #fff;
    border: 2px solid var(--jazul-maroon);
    color: var(--jazul-maroon);
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--jazul-maroon);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background-color: var(--jazul-maroon);
    color: var(--jazul-yellow);
    text-align: center;
    padding: 25px 10px;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .team-card img { width: 140px; height: 140px; }
}
@media (max-width: 576px) {
    .team-card img { width: 120px; height: 120px; }
    .jazul-hero h1 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
    .jazul-hero p { font-size: clamp(0.9rem, 2.5vw, 1.2rem); }
}

/* BIGGER TEAM IMAGE */
.team-img {
    width: 240px;        /* was 180px */
    height: 240px;       /* was 180px */
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
    border: 6px solid #800000; /* Jazul Red */
}

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

<!-- Leadership Section -->
<section class="py-5 bg-light">
  <div class="container">

    <!-- Section Title -->
    <div class="text-center mb-5">
      <h2 class="fw-bold">Our Leadership Team</h2>
      <p class="text-muted">
        Dedicated professionals driving Jazul Empire Distributors, Inc.
      </p>
    </div>

    <div class="row justify-content-center g-4">

      <!-- President -->
      <div class="col-lg-4 col-md-6">
        <div class="team-card text-center">
          <div class="team-img">
            <img src="assets/president.jpg" alt="President">
          </div>
          <h5 class="mt-4 mb-1">FRANKLIN R. JAZUL</h5>
          <p class="team-role">President / Chief Executive Officer</p>
        </div>
      </div>

      <!-- Corporate Secretary -->
      <div class="col-lg-4 col-md-6">
        <div class="team-card text-center">
          <div class="team-img">
            <img src="assets/corpsec.jpg" alt="Corporate Secretary">
          </div>
          <h5 class="mt-4 mb-1">ALLAN R. JAZUL</h5>
          <p class="team-role">Corporate Secretary</p>
        </div>
      </div>

    </div>

    <!-- SEE MORE BUTTON -->
    <div class="text-center mt-5">
      <a href="team.html" class="btn btn-jazul px-4 py-2">
        <i class="bi bi-people-fill me-2"></i> See Full Organization
      </a>
    </div>

  </div>
</section>
