
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 1.1rem;
}
.main {
  width: 80%; /* Consistent width */
  margin: 20px auto;
  padding: 20px;
  box-sizing: border-box;
  text-align: justify;
}
.header {
  background-color: #004680;
  color: white;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
}
.header a {
   color: rgba(140, 140, 211, 0.998); 
   text-decoration: none; 
   font-weight: bold; 
   transition: color 0.3s ease, opacity 0.3s ease; 
   opacity: 0.8; 
   padding: 0px 5px;
}
.header p{
   line-height: 2.3;
}
.header a:hover {
   color: #011d39; 
   opacity: 1; 
}
.btn-submit {
  display: block;
  width: fit-content;
  padding: 15px 30px; 
  margin: 20px 0 50px 0;  
  font-size: 1.3rem;
  background-color: #005f98;
  border-color: #004f7f;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  transition: background-color 0.3s ease; 
}
.btn-submit:hover {
  background-color: #011d39; 
}
h3{
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
b{
  font-size: 0.9rem;
}
em{
  text-decoration: underline;
}
ul {
  padding: 0;
  line-height: 1.6; 
  margin-left: 2rem;
}
li {
  margin-bottom: 10px; 
  font-size: 1rem; 
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}
.list li:hover{
  transform: translateX(10px);
}

/* Patrons Styles */
.patrons-title, .organizers-title{
   margin-top: 5rem;
}
.patrons, .organizers{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 20px; 
   padding: 20px;
   justify-content: center;
   align-items: center;
 }
 
 .patron img, .organizer img {
   max-width: 200px; 
   height: auto; 
   display: block; 
   border-radius: 15px;
   transition: transform 0.3s ease;
   box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
 }

 .patron img:hover, .organizer img:hover{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 
 }

/* Footer Styles */
.container{
  max-width: 1170px;
  margin:auto;
}
.row{
  display: flex;
  flex-wrap: wrap;
}
.footer{
  background-color: #24262b;
  padding: 70px 0 10px 0;
}
.footer-col{
  width: 30%;
  padding: 0 15px;
}
.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #005f98;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li{
  list-style: none !important;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #24262b;
  background-color: #ffffff;
}
.copyright {
   text-align: center;
   color: #ffffff;
   margin-top: 50px;
   opacity: 0.5;
 }

/*responsive*/
@media(max-width: 768px){
  .footer-col{
     width: 50%;
     margin-bottom: 30px;
  }
}

@media(max-width: 480px){
  .footer-col{
     width: 100%;
     margin-bottom: 30px;
     text-align: center; 
  }
}

