/* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
   
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}/* ====== FOOTER STYLES ====== */
.mcdp-footer {
    background-color: #003366;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0;                /* remove auto centering */
    justify-content: start;   /* align grid to the left */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
}

.footer-column h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;       /* needed for ::after positioning */
  display: inline-block;    /* ensures underline width matches text */
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;             /* slightly below text */
  width: 50%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

/* About */
.footer-logo { width: 120px; margin-bottom: 15px; }
.about p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 10px; }
.read-more-link { color: #003366; text-decoration: none; font-weight: 600; }
.read-more-link:hover { text-decoration: underline; }

/* Links */
.links ul { list-style: none; padding: 0; }
.links ul li { margin-bottom: 10px; }
.links ul li a { color: #fff; text-decoration: none; transition: all 0.3s ease; }
.links ul li a:hover { color: #003366; }
.donate-btn {
  display: inline-block;
  padding: 6px 15px;
  background-color: #003366;
  color: #fff;
  border-radius: 25px;
  margin-top: 5px;
  animation: pulse 1.5s infinite;
}

.donate-btn:hover {
  background-color: #003366;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 10px 5px rgba(0, 123, 255, 0.4);
    transform: scale(1.05);
  }
}

/* Contact */
.contact p, .contact a { font-size: 0.95rem; color: #fff; text-decoration: none; margin-bottom: 10px; }

/* Social Icons */
.social-icons-large a { display: inline-block; margin-right: 15px; transition: all 0.3s ease; }
.social-icons-large a:hover { transform: scale(1.3); fill: #003366; }
.social-icons-large svg { width: 32px; height: 32px; }

/* Bottom Bar */
.footer-bottom { text-align: center; padding: 15px 0; font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.2); margin-top: 40px; }
.footer-bottom a { color: #e6d710; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 992px) { .footer-container { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (max-width: 600px) { .footer-container { grid-template-columns: 1fr; gap: 20px; } }

/* Animations */
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.logo-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* move content toward left */
    text-align: left;        /* left-align text */
    gap: 15px;
    padding: 20px;           /* reduce padding to move it closer to corner */
    background-color: #003366;
    color: #f1f5f9;
    border-radius: 10px;     /* optional: slightly rounded corners */
}

/* Rectangle logo */
.logo-footer img {
    width: 150px;            /* wider width for rectangle */
    height: 90px;            /* rectangular shape */
    border-radius: 8px;      /* slightly rounded corners */
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.logo-footer img:hover {
    transform: scale(1.05);
}

.logo-footer p {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    max-width: 350px;        /* slightly smaller width to fit in corner */
    margin: 0;
    color: #e2e8f0;
}

.logo-footer .read-more-link {
    display: inline-block;
    margin-top: 5px;
    font-family: "Syne", sans-serif;
    font-weight: 600;
    color: #f6f7f6ff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.logo-footer .read-more-link:hover {
    color: #fcfcfcff;
    transform: translateX(5px);
}
   
.footer-column.contact p {
    margin: 6px 0;
    font-size: 0.95rem;
}
