/* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}


    body {
      background-color: #fff;
      color: #003366;
    }

    header {
      width: 100%;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(113, 231, 97, 0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 40px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      animation: fadeIn 1s ease;
    }

/* ====== Logo Container ====== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* space between logo and text */
    opacity: 0;
    animation: slideFromLeft 0.7s ease forwards;
    animation-delay: 0.2s;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo img {
    width: 200px;         /* rectangular dimensions */
    height: 80px;
    border-radius: 8px;  /* slight rounding for corners instead of circle */
    object-fit: cover;
    
    transition: transform 0.3s ease;
    
}

.logo img:hover {
    transform: scale(1.05);
}

/* ====== MCDP Text Below Logo ====== */
.logo-abbreviation {
    font-size: 0.9rem;
    font-weight: 700;
    color: red;
    text-align: center;
    margin-top: 2px;
}

/* ====== Logo Text ====== */
.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #003366;
    letter-spacing: 1px;
    text-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}
@media (max-width: 768px) {
    .logo img {
        width: 50px;
        height: 50px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
}


    /* ====== Navigation ====== */
    nav {
      flex: 1;
      text-align: center;
      display: flex;
      justify-content: center;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li {
      opacity: 0;
      transform: translateY(-20px);
      animation: slideInNav 0.6s ease forwards;
    }

    /* Staggered animation delays for nav links */
    nav ul li:nth-child(1) { animation-delay: 0.6s; }
    nav ul li:nth-child(2) { animation-delay: 0.8s; }
    nav ul li:nth-child(3) { animation-delay: 1s; }
    nav ul li:nth-child(4) { animation-delay: 1.2s; }
    nav ul li:nth-child(5) { animation-delay: 1.4s; }

    nav a {
      text-decoration: none;
      color: #003366;
      font-weight: 500;
      position: relative;
      transition: all 0.3s ease;
      text-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    }

    nav a {
  position: relative;
  text-decoration: none; /* remove default underline */
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;       /* space below text */
  width: 0;
  height: 2px;
  background-color: #003366;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;         /* underline expands on hover or active */
}


    
    /* ====== Burger Menu ====== */
    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background-color: #003366;
      transition: all 0.3s ease;
    }

    /* ====== Responsive ====== */
    @media (max-width: 900px) {
      nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
        text-align: center;
      }

      nav ul.active {
        display: flex;
      }

      .burger {
        display: flex;
      }

      header {
        padding: 10px 20px;
      }

      .donate-btn {
        padding: 8px 16px;
        font-size: 14px;
      }

      .lang-switch {
        font-size: 14px;
      }
    }

    /* ====== Animations ====== */
    @keyframes slideFromLeft {
      from {
        transform: translateX(-40px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideFromRight {
      from {
        transform: translateX(40px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideInNav {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* ====== Active Burger Animation ====== */
    .burger.toggle div:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }

    .burger.toggle div:nth-child(2) {
      opacity: 0;
    }

    .burger.toggle div:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }
    .footer-column.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.footer-column.contact p i {
    color: #fdfffe; /* green accent */
    min-width: 20px; /* aligns icons nicely */
}
