/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */
/* HEADER */
/* HEADER url('https://via.placeholder.com/1400x600')    <img src="../CUBC/light.jpg"> */
.header {
  background:   url(light.jpg) no-repeat center/cover;
  height: 100 px;
  color: white;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: black;
  text-decoration: none;
}

.nav-links a {
  color: blue;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover effect */
.nav-links a:hover {
  color: #ff6b6b; /* highlight color */
}
.donate-btn {

  background: #01E0FE; /* highlight color  #ff6b6b - RED */
  padding: 8px 15px;
  border-radius: 5px;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  color: black;
  list-style: none;
  padding: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 5px 0;
}

.dropdown-menu a {
  color: black;
}

.hero {
  color: black;
  text-align: center;
  padding: 50px 20px;
    background: #f4f4f4;
  
}

/* HERO TEXT */
/* HERO bac.hero-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
   color: black;
  text-align: center;
  padding: 50px 20px;
}

kground: url('https://via.placeholder.com/1200x500') center/cover;   padding: 100px 20px; */


/* SECTION 2  background: #3498db; - blue  background: #2c3e50;dark teal */
.two-column {
  display: flex;
  padding: 50px;
  gap: 30px;
 background: #dfe6e9;
}

.two-column img {
  width: 100%;
}

.text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SECTION 3   display: flex;  ,  flex:  1 1 30%; */
.three-column {
  display: flex;
 
  padding: 50px;
  gap: 20px;
  background: #ecf0f1;
  
}

.form-col input,
.form-col textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

.form-col button {
  padding: 10px;
  background: #333;
  color: white;
  border: none;
}

/* TEXT WRAP */
.content-col img {
  float: left;
  margin-right: 10px;
  width: 100px;
}

/* FOOTER    background: #222;   */
.footer {
 
background: #2c3e50;
  color: white;
  padding: 20px;
  text-align: center;
}

/*  lINKS Stacket  .footer-links {  flex-direction: column;  gap: 10px; }  */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer a {
  color: white;
  text-decoration: none;
}


/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* RESPONSIVE   background: rgba(0,0,0,0.9);  */
@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
	background: #2c3e50;
   
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .two-column,
  .three-column {
    flex-direction: column;
  }

  .content-col img {
    float: none;
    display: block;
    margin: 0 auto 10px;
  }

}

