/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fullscreen Background Image */
body, html {
    height: 100%;
    margin: 0;
}

.container {
    display: flex;               /* Use Flexbox */
    justify-content: center;     /* Horizontally center the content */
    align-items: center;         /* Vertically center the content */
    height: 100%;                /* Full viewport height */
  }
  
  /* Logo styling (make it responsive) */
  .logo {
    max-width: 40%;             /* Ensures it scales responsively */
    height: auto;                    /* Maintain aspect ratio */
  }

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('skootish.jpg'); /* Replace with your own image URL */
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.background-image::before {
    content: '';                  /* Empty content for the overlay */
    position: absolute;           /* Position the overlay on top of the background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark color with transparency */
    z-index: 1;                   /* Ensure overlay is above the background but below the content */
  }

.footer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 15px;
    z-index: 10;
    color: #fff;
}

/* Styling for Social Media Links */
.social-media {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

@media screen and (max-width: 940px) {
    .social-media {
      max-width: 90%;
      display: inline;

    }

    .social-media a {
       display: block;
       margin-bottom: 10px;
    }
}
.fa-youtube {
    color: #c3232a !important;
}
.fa-twitter {
    color: #0487f3 !important;
}
.fa-twitch,.fa-discord {
    color: #b304f3 !important;
}
.fa-instagram {
    color: #da066d !important;
}

.social-icon {
    color: rgb(203, 203, 203);
    font-size: 16px;
    text-decoration: none;
    padding: 5px 10px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(113, 113, 113, 0.3);
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.hamburger-icon {
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Menu Links */
.menu-links {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    width: 190px;
}

.menu-links.show {
    display: block;
}

.menu-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.menu-links a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Adjust the width as needed */
  max-width: 500px;
  border-radius: 8px;
}

/* Close button styles */
.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modalFont {
    font-size: 28px;
    
}