/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  
}

/* HERO TEXT */
.hero {
  color: black;
  text-align: center;
  padding: 30px 10px;
    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://1200x500') center/cover;   padding: 100px 20px; */


/* HEADER */
/* HEADER */
/* HEADER url('https://1400x600')    <img src="../CUBC/light.jpg"> */
.header {
  background: url('../images/light.jpg') no-repeat center/cover;
  height: 100 px;
  color: white;
  position: relative;
}

.coach-photo {
    
    width: 100%;
    height: 100%;
	border-radius: 1%;
   
}
.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 */
}

/* TEXT Attributes */

h2 {
    color: #333;
    margin: 10;
    padding: 30;
}

h4 {
    color: #333;
   // margin: 10;
  // inline display fixed form padding: 30;
	display: inline;
}

h1, h3 {
    color: #333;
	position: center;
	display: inline;
}

p { 
  color: #000000;
  font-size: 20px;
  margin: 40px;  
  
}





/* CONTAINER */


.container {
    width: 100%;
    // width: 80%;
    margin: 0 auto;
//	display: flex;
  //    gap: 20px;
}

.containerf {
    display: flex;
      gap: 20px;
  margin: 50px;
	     left: 20;
	  }
	 
/* COLUMN effect */
.columnf {
     
	  width: 303px;
      height: 339px;
      perspective: 1000px;
}

.image-wrapper {
      width: 100%;
      height: 100%;
     position: relative;
      transform-style: preserve-3d;
      transition: transform 0.6s;
}

.columnf:hover .image-wrapper {
      transform: rotateY(180deg);
}

.image {

      width: 100%;
      height: 100%;
      position: absolute;
      backface-visibility: hidden;
}

.image-back {
      transform: rotateY(180deg);
    }
.donate-btn {
  background: #ff6b6b;
  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;
}


/* 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 */
.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;
  width: 100%;
}

.btn {
  color: green;
} 
.btn:hover {
  opacity: 1;
}

/* TEXT WRAP */
.content-col img {
  float: left;
  margin-right: 10px;
  width: 100px;
}

/* FORM TEXT  */
.form-col input, .form-col select {
    margin: 10px 0;
    padding: 10px;
    width: 80%;
 
  font-size: 16px;
 
    border-radius: 5px;

}

 

/* FOOTER    background: #222;*/
.footer {
 
background: #2c3e50;
  color: white;
  padding: 20px;
  text-align: center;
}

.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;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

