* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      color: white;
      overflow-x: hidden;
      overflow-y: auto;
    }
    ul {
  list-style-type:none;
  margin: 0;
  padding: 0;
  background-color: #801212;
  display: flex;
  justify-content: center;
  color:white;
}


ul li {
  float: left;
  
}
  
.location:link, .location:visited
{
    color:red;
}
  
ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
    /* Background */
    .bg {
      position: fixed;
      inset: 0;
      background-image: url("fwsf-background.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -2;
    }

    /* Dark overlay for readability */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: -1;
    }

    /* Main content */
    .content {
      min-height: 100vh;

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      text-align: center;
      padding: 20px;
    }
    .logo
  {
   width:300px;
   height:200px;
    
  }

  .logo:hover
  {
 transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
  }
    .insta-ico
  {
    object-position:left ;
    width:100px;
    height:100px;
  }
  .schedule-box{
      background: rgba(0, 0, 0, 0.72);
      border: 2px solid white;
      border-radius: 20px;

      padding: 35px;

      backdrop-filter: blur(5px);
      box-shadow: 0 0 25px rgba(0,0,0,0.4);

      display: inline-block;
      max-width: 700px;
      width: 100%;
    }
  .schedule-box:hover
  {
transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
  }
    h1 {
      font-size: 60px;
      margin-bottom: 15px;
      text-shadow: 2px 2px 10px black;
    }

    .subtitle {
      font-size: 20px;
      margin-bottom: 40px;
      color: #e0e0e0;
    }

    /* Social links */
    .socials {
      margin-bottom: 40px;
    }

    .socials p {
      margin: 10px 0;
      font-size: 18px;
    }

    .socials a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s ease;
    }

    .socials a:hover {
      color: #cfcfcf;
    }

    /* Buttons container */
    .button-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* Shared button styles */
    .btn {
      padding: 14px 34px;

      background: rgba(0, 0, 0, 0.75);
      color: white;

      border: 2px solid white;
      border-radius: 12px;

      text-decoration: none;
      font-size: 18px;
      font-weight: bold;

      transition: all 0.3s ease;

      backdrop-filter: blur(4px);
    }

    .btn:hover {
      background: white;
      color: black;
      transform: translateY(-3px);
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
  .content {
    justify-content: flex-start;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .schedule-layout {
    flex-direction: column;
    gap: 20px;
  }

  .side-button {
    width: 100%;
  }

  .btn {
    width: 200px;
    text-align: center;
  }

  
}