/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  "Roboto", sans-serif;
}

body {
    background-color: #f5f5f5;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: rgb(0, 0, 0);
    color: #fff;
    /* flex-wrap: wrap; */

}

.left {
    display: flex;
    align-items: center;
}

.left .email {
    margin-bottom: 5px;
}

.left a:hover{
    text-decoration: underline;
}

.contact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0px 15px;
}

.contact i{
    padding-right: 4px;
}

.contact a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.email i{
    padding-right: 4px;
}

.email a {
    color: white;
    text-decoration: none;
    font-size: 17px;
}


.contact .phone::after {
    content: ", ";
}

.contact .phone:last-child::after {
    content: "";
}

.right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.right .register {
    display: flex;
    margin-left: 10px;
    padding: 7px 16px; 
    border: none;
    background-color: rgb(113, 89, 14);
    color: white;
    box-shadow: 0 5px 0 rgb(44, 35, 10);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all .1s linear;
    animation: colorAnimation 0.5s infinite alternate ease-in-out 0s forwards running;
}

@keyframes colorAnimation {
    from{
        background-color: rgb(113, 89, 14);
        text-decoration: none;
    }
    to{
        background-color: rgb(174, 132, 63);
        text-decoration: underline;
    }
}

.right .register:active {
  box-shadow: 0 2px 0 rgb(44, 35, 10);
  transform: translateY(3px);
}

button i{
    padding-left: 5px;
}

.right .donate {
    display: flex;
    margin-left: 10px;
    padding: 7px 15px;
    border: none;
    background-color: rgb(5, 57, 57);
    color: white;
    box-shadow: 0 5px 0 rgb(3, 33, 33);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all .1s linear;
    animation: colorAnimation2 0.5s infinite alternate ease-in-out 0s forwards running;
} 

@keyframes colorAnimation2 {
    from{
        background-color: rgb(5, 57, 57);
    }
    to{
        background-color: rgb(6, 66, 88);
    }
}


.right .donate {
    display: inline-block;
} 

.right .donate:active {
  box-shadow: 0 2px 0 rgb(3, 33, 33);
  transform: translateY(3px);
}

/*Responsive styles */
@media (max-width: 768px) {
    .topbar {
        flex-direction: row;
        align-items: stretch;
    }

    .left .email {
        display: none;
    }

    .left {
        width: 57%;
    }
   .contact {
        margin-left: -5px;
        /* flex-direction: column; */
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    #no2{
        margin-left: 10px;
    }

    /* .contact .phone::after {
        content: ""; 
    } */

    .right {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: auto;
    }  


    .right .register {
        padding: 7px 7px;
    }

    .right .donate {
        display: none;
    }
}



.navbar {
  background-color: #ffffff;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 70px;
  height: 70px;
  margin: 0px 10px 0px -5px;
}

.club-name h1 {
  font-size: 30px;
  margin: 0;
  color: rgb(101, 39, 6);
}

.club-name p {
  font-size: 11px;
  font-weight: bold;
  margin: 0;
  color:black;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  color: black;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.05rem;
  /* text-decoration: underline; */
}

.nav-links a:hover {
  background-color: #e5dbdb;
  text-decoration: none;
  color: rgb(107, 57, 7);
  border-radius: 4px;
}

a i{
  font-size: 0.9rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgb(255, 255, 255);
  min-width: 180px;
  z-index: 1000;
  flex-direction: column;
  list-style-type: none; 
}

.dropdown-menu li a {
  padding: 10px;
  display: block;
  text-decoration: none;
}

.dropdown.active .dropdown-menu {
  display: flex;
}

.toggle-btn {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: black;
  border: 1px solid gray;
  padding: 2px 8px 0 8px;
  border-radius: 3px;
}

@media (max-width: 878px) {
  .toggle-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background-color:rgb(240, 237, 237);
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
  }

  .nav-links li {
    width: 100%;
  }
}


/* Contact Section Styles */
.contact-section {
    position: relative;
    width: 100%;
    height: 35vh; 
    background: linear-gradient(rgba(1, 48, 23, 0.7)), url("logo&img/activityhead.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 40px;
  }
  
  /* Inner content */
  .contact-content {
    color: white;
  }
  
  /* Heading */
  .contact-content h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
  
  /* Links container */
  .contact-links {
    display: flex;
    gap: 20px;
  }
  
  /* Individual Links */
  .contact-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  .contact-links a:hover {
    border-bottom: 2px solid rgb(255, 255, 255);
  }
  
  /* Responsive Media Queries */
  @media (max-width: 768px) {
    .contact-section {
      height: 30vh;
      padding: 40px;
    }
  
    .contact-content h1 {
      font-size: 2.2rem;
    }
  
    .contact-links a {
      font-size: 1rem;
      font-weight: bold;
    }
  }
  
  @media (max-width: 480px) {
    .contact-section {
      height: 30vh;
      padding: 40px;
    }
  
    .contact-content h1 {
      font-size: 2rem;
    }
  
    .contact-links a {
      font-size: 1rem;
      font-weight: bold;
    }
  }
  
 

/* Activity Section */
.activity-section {
  padding: 50px 0px;
}

.activity-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap; /* for responsive shifting */
}

.activity-box {
  background: rgb(252, 252, 252);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 45%;
  max-width: 650px;
}

.activity-box h2 {
  font-size: 1.5rem;
  color: rgb(5, 78, 78);
  margin-bottom: 20px;
  text-align: center;
}

.activity-box .big-para {
  font-size: 1.3rem; /* same as heading */
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  color: rgb(88, 40, 5);
}

.activity-box ul {
  list-style-type: disc;
  margin: 20px 0;
  padding-left: 20px;
}

.activity-box ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: rgb(88, 40, 5);
  list-style-type: none; 
}

.activity-box ul li i {
  color: #04450e;
  margin-right: 5px;
  font-size: 1.3rem;
}

.activity-box p:last-of-type {
  margin-top: 20px;
  font-size: 1rem;
  color: rgb(88, 40, 5);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .activity-container {
    flex-direction: column;
    align-items: center;
  }
  
  .activity-box {
    width: 90%;
    max-width: none;
  }

  .activity-box h2{
    font-size: 1.5rem;
  }

  .activity-box .big-para {
    font-size: 1.3rem;
  }

  .activity-box ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .activity-box h2,
  .activity-box .big-para {
    font-size: 1.2rem;
  }

  .activity-box ul li {
    font-size: 0.9rem;
  }
}

 
/*activity second section */
.info-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 10px 20px 50px;
  flex-wrap: wrap;
}

.info-box {
  background-color: #f9f9f9;
  padding: 20px;
  width: 43%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.info-box h2 {
  font-size: 1.3rem;
  color: rgb(88, 40, 5);
  margin-bottom: 15px;
}

.big-para {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: rgb(5, 78, 78);
}

.medium-para {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: rgb(88, 40, 5);
}

.medium-para i {
  margin-right: 5px;
  font-size: 1.3rem;
  color: #087a06;
}

.bold-para {
  font-weight: bold;
  font-size: 1rem;
  color: rgb(88, 40, 5);
}

/* 📱 Responsive design */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    align-items: center;
  }
  
  .info-box {
    width: 90%;
  }

  .info-box h2 {
    font-size: 1.2rem;
  }

  .big-para {
    font-size: 1.3rem;
  }

  .medium-para {
    font-size: 1rem;
  }

  .bold-para {
    font-size: 1rem;
  }
}



/* footer section */
.footer-section {
    background-color: rgba(6, 43, 51, 0.975);
    color: white;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1 1 22%;
    min-width: 230px;
  }
  
  .footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  
  .footer-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
  }
  
  .footer-name h3 {
    font-size: 22px;
    margin: 0;
    color: rgb(209, 128, 15);
  }
  
  .footer-name p {
    font-size: 10px;
    margin: 0;
  }
  
  .footer-subheading {
    margin-top: 10px;
    font-size: 27px;
    font-weight: bold;
    max-width: fit-content;
  }
  
  .footer-heading {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column li {
    margin: 5px 0;
    font-size: 17px;
  }
  
  .footer-column li i {
    padding: 5px;
  }
  
  .footer-column a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .footer-column a:hover {
    color:rgb(154, 80, 27);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(236, 232, 232, 0.766);
    padding-top: 10px;
  }
  
  .footer-copy {
    margin: 0;
    font-size: 14px;
    /* text-decoration: overline; */
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-column {
      width: 100%;
      max-width: 400px;
      text-align: center;
      margin: 10px;
    }
  
    .footer-logo-section {
      justify-content: center;
    }
  
    .footer-subheading {
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  
  
  /* Basic styles for both buttons */
  #registerNowBtn, #scrollUpBtn {
    position: fixed;
    z-index: 999;
    background-color: rgb(122, 97, 22);
    color: white;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.4s ease;
  }
  
  /* Register Now Button Specific Styles */
  #registerNowBtn {
    top: 50%;
    right: -43px;
    rotate: 90deg;
    transform-origin: center;
    transition: all .1s linear;
    animation: colorAnimation 0.5s infinite alternate ease-in-out 0s forwards running;
  }
  
  
  
  @keyframes colorAnimation {
  from{
      background-color: rgb(122, 97, 22);
      text-decoration: none;
  }
  to{
      background-color: rgb(160, 115, 23);
      text-decoration: underline;
  }
  }
  
  #registerNowBtn:active {
  box-shadow: 0 2px 0 rgb(102, 78, 14);
  transform: translatex(3px);
  }
  
  
  
  /* Scroll Up Button Specific Styles */
  #scrollUpBtn {
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    padding: 10px 14px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #registerNowBtn {
      font-size: 14px;
      padding: 10px 14px;
      right: -40px;
    }
  
    #scrollUpBtn {
      font-size: 18px;
      padding: 8px 12px;
    }
  }
  