

:root {
    --primary-color: #312727;
    --secondary-color: #8AAAE5;
    --text-color: 	#FFFFFF;
    --background-color:#00AAAA;
    --gradient: linear-gradient(135deg, #d3d3d3, #000000);
    --transparent-gradient: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0.7));
  }

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

body {
    font-family: "Helvetica", sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

.main-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideIn 1s ease forwards;
}

.header-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.animate-fade-in {
    animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* header {
    text-align: center;
    margin-bottom: 20px;
} */

.navbar {
    background: var(--gradient);
    height: 15vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 1.7);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 2.5); 
    font-size: 1.5em;
  }
  #logo {
    height: 140px;  
      width: auto;   
      max-width: 300px; 
      margin-left: -50px;
      padding-left: 4vw;
      padding-bottom: 5px;
  }
  
  
  .nav-link {
    font-size: 0.9em;
    color: var(--text-color);
    transition: transform 0.3s ease-in-out;
  }
  
  .nav-link:hover{
    transform: scale(1.1);
    color: white;
  }
  .nav-item{
    padding-right: 15px;
  }

  footer {
    background: var(--gradient);
    font-size: 0.8em;
    color: var(--text-color);
    padding: 20px 0;
  }
  
  /*edit*/
  .blockquote-footer{
    background: var(--primary-color);
    color: #FFFFFF;
  }
  
  .list-unstyled li a{
    text-decoration: none;
    color: var(--text-color);
  }
  
  .list-unstyled li a:hover{
   color: black;
  }

.main-container h1 {
    text-align: center;
    font-size: 2em;
    color: #3a3a3a;
    animation: fadeIn 2s ease forwards;
}

.main-container p {
    text-align: center;
    font-size: 1em;
    color: #555;
    animation: fadeIn 2s ease forwards 0.5s;
}

.donation-section {
    text-align: center;
}

.donation-section h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
    animation: fadeIn 2s ease forwards 1s;
}

.donation-section p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    animation: fadeIn 2s ease forwards 1.5s;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background-color: #eee;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.tab-button img.icon {
    width: 20px;
    margin-right: 8px;
}

.tab-button:hover {
    background-color: #ddd;
    transform: scale(1.05);
}

.tab-button.active {
    background-color: #00AAAA;
    color: white;
}

.tab-content {
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 1s ease forwards;
}

form {
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
    animation: fadeIn 2s ease forwards 2s;
}

label {
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

input[type="text"], select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, select:focus {
    border-color:#00AAAA;
}

button[type="submit"], .tab-content button {
    width: 100%;
    padding: 12px;
    background-color:#00AAAA;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease;
}

button[type="submit"]:hover, .tab-content button:hover {
    background-color:#00AAAA;
    transform: scale(1.05);
}

/* footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #999;
    animation: fadeIn 2s ease forwards 2.5s;
} */

@media (max-width: 992px) {
    *{
      text-align: center;
    }
    .navbar-brand {
      max-width: 80px; 
      height: auto;
      margin-left: 0; 
    }

    
    .navbar-toggler {
      color: white;
      border: none;
      border-radius: 5px;
    }
    
    .navbar-toggler-icon {
      background-color: white; 
    }
  
    .navbar {
      position: relative;
      display: flex;
      justify-content: space-between; 
      align-items: center; 
    }
  }
  
  /* Edit to right */
  @media (max-width: 992px) {
    .navbar {
      position: relative;
      display: flex;
      justify-content: space-between; 
      align-items: center; 
    }
   
    .navbar-collapse {
      position: absolute;
      top: 100%;
      right: 0; 
      width: 100%; 
      background: var(--gradient); 
      padding: 10px 20px;
      text-align: right; 
    }
  
    .navbar-nav {
      display: flex;
      flex-direction: column; 
      align-items: flex-end; 
      padding-right: 10px;
    }
    
  }