* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 18px;
    font-family: system-ui, "Arial", sans-serif;
    color: #222;
    line-height: 1.6;
}

h1 {
    font-weight: 600;
}

/* NAVBAR */
.navbar {
    font-size: large;
    font-weight: 600;
    transition: color 0.3s, font-weight 0.3s; 
    margin: 0;
    padding: 0;
}

.navbar {
    font-size: large;
    font-weight: 600;
    transition: color 0.3s, font-weight 0.3s; 
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-link:hover {
    color: #2D3B92;
}

.btn-donate {  
    font-size: large;
    background-color: #2D3B92; 
    color: white; 
    border: 1px solid #2D3B92;
    font-weight: bolder;
    padding: 10px 25px; 
    border-radius: 30px; 
    box-sizing: border-box; 
}

.btn-donate:hover { 
    font-size: large;
    background-color: white;
    color: #2D3B92;
    border: 1px solid #2D3B92;
    padding: 10px 25px;
    border-radius: 30px;
}

/* NAVBAR END*/



/* Jumbotron Section */
.jumbotron {
    background: linear-gradient(to right,  #2D3B92, #50AAE3, #F09C11);

    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 90px;
}

.jumbotron h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #F09C11;
    color: white;
}

.jumbotron p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

/* Gallery Section */
.gallery {
    padding: 40px 20px;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 30px;
    object-position: center;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.gallery-caption {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
    font-weight: 500;
    color: #333;
}
/* Gallery Section end*/

.gallery img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

/* Center the donate button on small screens */
@media (max-width: 991.98px) {
    .center-donate {
      display: flex;
      justify-content: center; /* Horizontally center */
      margin-top: 10px; /* Optional: Add spacing */
      width: 100%; /* Take full width */
      margin-bottom: 10px;
    }
  }