
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
header {
    background-color: #01264d;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
}
header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo h1{
    font-size: 1.8rem;
}
.logo span{
    color: #3498db;
}
nav ul{
    display: flex;
    list-style: none;
}
nav li{
    margin-left: 20px;
}
nav a{
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.5s;

}
nav a:hover{
    color: #3498db;
}
section{
    padding: 80px 0;
}
.section-title{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #173052;
}
.about-content{
    display: flex;
    flex-wrap: wrap;
}
.about-text{
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}
.event-details{
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
}
.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.detail{
    background: #f9f9f9;
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
    border-radius: 5px;
}
.detail h3{
    color: #3498db;
    margin-bottom: 10px;
}
#hero{
    background: linear-gradient(rgba(44, 62, 80, .7 ), rgba(44, 62, 80, .7)), url("images/spiderworkshop.jpg");
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color:#fff;
}
.hero-content h2{
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero-content p{
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.hero-content .event-date{
    font-size: 1rem;
    margin-bottom: 30px;
}
.btn{
    background: #3498db;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.5s;
}
.btn:hover{
    background: #2980b9;
}
#schedule{
    background-color: #f9f9f9;
}
.day{
    margin-bottom: 40px;
}
.day h3{
    font-size: 1.7rem;
    margin-bottom: 30px;
    color: #2c3e50;
}
.schedule-table{
    width: 100%; 
    border-collapse: collapse;
}
.schedule-table th{
    background-color: #1978b7;
    color: #f3f3f3;
}
.schedule-table th, .schedule-table td{
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.schedule-table tr:nth-child(even){
    background-color: #f2f2f2;
}
.schedule-table tr:hover{
    background-color: #e9e9e9;
}
.form-container{
    background: #fff;
    box-shadow: 0 0 20px rgb(0, 0, 0,0.1);
    max-width: 700px;
    padding: 30px;
    border-radius: 8px;
    margin: 0 auto;
}
.form-group{
    margin-bottom: 20px;
}
label{
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea{
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}
select{
    height: 45px;
}
.checkbox-group label{
    display: inline;
    font-weight: normal;
    margin-left: 8px;
}
.checkbox-group{
    margin-bottom: 10px;
}
button[type="submit"]{
    width: 100%;
    cursor: pointer;
    border: none;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 20px;
}
.footer-content {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.footer-content p{
    margin-bottom: 2px;
}
.footer-logo, .footer-links, .footer-contact {
  flex:1;
  min-width: 250px;
  margin-bottom: 20px;
}
.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.footer-logo span{
    color: #3498db;
}
.footer-links h4 , .footer-contact h4{
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #3498db;
}
.footer-links ul{
    list-style: none;
}
.footer-links li{
    margin-bottom: 10px;
}
.footer-links li a{
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}
.footer-links li a:hover {
  color: #3498db;
}
.social-icons {
  margin-top: 15px;
}
.social-icon{
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    font-weight: bold;
    transition: background-color 0.5s;
}
.social-icon:hover{
    background-color: #3498db;
    color: #fff;
}
.footer-bottom{
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgb(255, 255, 0,0.1);
}
@media (max-width: 768px){
    header .container{
        flex-direction: column;   
    }

    .logo{
        margin-bottom: 15px;
    }
    nav ul{
        flex-direction: column;
        text-align: center;
    }
    nav li{
        margin: 10px;
    }
    .hero-content{
        padding-top: 200px;
    }
    .hero-content h2{
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .about-text{
        margin-right: 0;
        margin-bottom: 30px;
    }
    .schedule-table{
        font-size: 0.9rem;
    }
    .schedule-table th, .schedule-table td{
        padding: 8px;
    }
    .footer-content {
    flex-direction: column;
  }

  .footer-logo, .footer-links, .footer-contact {
      margin-bottom: 30px;
  }
}
@media(max-width: 480px){
    .section-title{
        font-size: 2rem;
    }
    .hero-content h2{
        font-size: 1.8rem;
    }
    .schedule-table{
        font-size: 0.8rem;
    }
    .schedule-table th, .schedule-table td{
        padding: 6px;
    }
}