        /* --- local Avenir font (relative) --- */
        @font-face {
        font-family: "AvenirLTStd-Black";
        src: url("../assets/fonts/AvenirLTStd-Black.ttf") format("truetype");
        font-weight: 500;
        font-style: normal;
        font-display: swap;
        }

    /* ====== RESET ====== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
      color: #222;
      background-color: #f5f5f5;
      overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
    }

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    
}

.logo img {
    height: 65px;
}

/* Navigation pane */

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: right;
      gap: 26px;
      padding: 10px 16px 12px;
      border-top: 1px solid #eee;
      font-size: 0.782rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-family: "AvenirLTStd-Black";
      float: right;
}

.nav a {
    text-decoration: none;
    color: #0a0a0a;
    font-weight: 500;
    font-family: "AvenirLTStd-Black"
}

/* Nav Link */
    .nav-link {
      position: relative;
      padding-bottom: 3px;
      white-space: nowrap;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: #f58a1f;
      transition: width 0.2s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }


.btn-donate {
    background: #f7941d;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 4px;
    transition: 0.8s ease-out;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
    border: none;
    letter-spacing: 0.06em;
    font-weight: 400;      
    text-transform: uppercase;
     font-size: 0.8rem;
}

    .btn-donate:hover {
      background: #e67605;
      
    }

/* ===== DROPDOWN MENU ===== */

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

/* Dropdown box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-radius: 4px;
    padding: 10px 0;
    display: none;
    z-index: 1000;
}

/* Dropdown links */
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #0a0a0a;
    text-decoration: none;
    font-family: "AvenirLTStd-Black";
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #f7941d;
}

/* Desktop hover */
@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile dropdown open */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        padding: 0;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 16px;
    }

    .dropdown-menu.show {
        display: block;
    }
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0a0a0a;
    margin: 4px 0;
}

   /* MOBILE MENU ICON */
.menu-container {
    display: none;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 3px;
    background-color: #0a0a0a;
    margin: 6px 0;
    transition: 0.4s;
}

/* Animation */
.menu-container.change .bar1 {
    transform: translate(0, 9px) rotate(-45deg);
}

.menu-container.change .bar2 {
    opacity: 0;
}

.menu-container.change .bar3 {
    transform: translate(0, -9px) rotate(45deg);
}

/* MOBILE NAV MENU */
@media (max-width: 768px) {

    .menu-container {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 25px;
        transition: right 0.35s ease;
        z-index: 999;
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        font-size: 18px;
    }
}




/* SLIDER */
.slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    bottom: 20%;
    left: 10%;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    color: #ffffff;
    border-radius: 5px;
}



