/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('images/backgrounds/body-bg.png'); 
    background-size: 100% auto; /* This makes the image cover the entire width and maintain its aspect ratio for height */
    background-repeat: repeat-y; /* This repeats the image vertically */
    background-color: #000;
    color: #fff;
}

.fixed-header {
    display: flex;
    align-items: center;
    background-image: url('images/backgrounds/header-bg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(4, 10, 29, 0.9); /* 0.9 represents 90% opacity (from 0 to 1) */
    background-blend-mode: overlay; /* Helps maintain the opacity effect */
    font-size: 24px; /* Adjust the font size to your preference */
    position: fixed;
    top: 0;
    left: 0;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
    height: 150px;
    width: 100%;
    z-index: 100;
}


.main-menu {
    display: none; /* Hide the horizontal menu on small screens */
}

#menuButton {
    padding: 0px;
    position: absolute;
    right: 10%;
    cursor: pointer;
}

.menu {
    position: fixed;
    top: 0;
    right: 0; /* Adjust the side position for your navigation */
    height: 100%;
    width: 0;
    background-color: #041849;
    overflow-x: hidden;
    transition: 0.5s;
}

.menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column; /* Arrange menu items vertically */
}

.menu li {
    padding-top: 2;
    padding-bottom: 2;
    height: 40px;
}
    

.menu a {
    text-decoration: none;
    display: block;
}

.menu img.hover-image {
    display: none; /* Initially, the hover images are hidden */
}

.menu a:hover img.hover-image {
    display: block; /* Show the hover image on link hover */
}

.menu a:hover img {
    display: none; /* Hide the default image on link hover */
}

.overlay {
    display: none;
    position: fixed;
    width: 48px;
    height: 40px;
    top: 0;
    right: 0;
    z-index: 1;
}

#special-li {
    background-image: url('images/backgrounds/mainMenu-bg.png');
    background-repeat: no-repeat;
    list-style-type: none;
  }

section {
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
}

.musicSection-title {
    font-size: 40px; /* Adjust font size as needed */
    background: linear-gradient(45deg, #ff6600, #ffcc00, #cc33ff, #3366cc);
    background-clip: text;
    -webkit-background-clip: text; /* For cross-browser compatibility */
    color: transparent; /* Make the text color transparent */
    text-align: center; /* Horizontally center the text */
    margin-top: 0; /* Remove any top margin to center vertically */
    margin-bottom: 20px; /* Add some bottom margin for spacing (you can adjust this as needed) */
  }

  .videoSection-title {
    font-size: 40px; /* Adjust font size as needed */
    background: linear-gradient(45deg, #ff6600, #ffcc00, #cc33ff, #3366cc);
    background-clip: text;
    -webkit-background-clip: text; /* For cross-browser compatibility */
    color: transparent; /* Make the text color transparent */
    text-align: center; /* Horizontally center the text */
    margin-top: 0; /* Remove any top margin to center vertically */
    margin-bottom: 20px; /* Add some bottom margin for spacing (you can adjust this as needed) */
  }
  
  .liveSection-title {
    font-size: 40px; /* Adjust font size as needed */
    background: linear-gradient(45deg, #ff6600, #ffcc00, #cc33ff, #3366cc);
    background-clip: text;
    -webkit-background-clip: text; /* For cross-browser compatibility */
    color: transparent; /* Make the text color transparent */
    text-align: center; /* Horizontally center the text */
    margin-top: 0; /* Remove any top margin to center vertically */
    margin-bottom: 20px; /* Add some bottom margin for spacing (you can adjust this as needed) */
  }

  .techtalkSection-title {
    font-size: 40px; /* Adjust font size as needed */
    background: linear-gradient(45deg, #ff6600, #ffcc00, #cc33ff, #3366cc);
    background-clip: text;
    -webkit-background-clip: text; /* For cross-browser compatibility */
    color: transparent; /* Make the text color transparent */
    text-align: center; /* Horizontally center the text */
    margin-top: 0; /* Remove any top margin to center vertically */
    margin-bottom: 20px; /* Add some bottom margin for spacing (you can adjust this as needed) */
  }

  footer {
    text-align: center;
    background-color: #000;
    color: #fff;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    width: 100%;
}

.footer-content {
    display: inline-block; /* Makes the content center horizontally */
}

.socialHeader {
    color: #fff;
}

.contactLinks {
    color: #fff;
}

.contactLinks a {
    color: #e90ae9;
}

/* Add specific styling for each section as needed */

#splash {
    /* Custom styles for the main section */
    margin-top: 150px;
    width: 100%; /* Set the width to 100% of the viewport height */
    height: auto; /* Set the height to 100% of the viewport height */
}

#tech-splash {
    /* Custom styles for the main section */
    width: 100%; /* Set the width to 100% of the viewport height */
}

#music {
    /* Custom styles for the music section */
}

#videos {
    /* Custom styles for the videos section */
}

#live {
    /* Custom styles for the blog section */
    color: #fff;
    text-align: center;
}

#techtalk {
    /* Custom styles for the contact section */
    color: #fff;
    text-align: center;
}

#main-logo {
    position: absolute;
    left: 10px; /* Adjust the left position as needed */
    width: 252px;
    height: 75px;
}

#musicTable {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
}

@media (max-width: 600px) {
    th, td {
        display: block;
        width: 100%;
    }

    th::before {
        content: attr(data-title);
    }
}

#videoTable {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
}

@media (max-width: 600px) {
    th, td {
        display: block;
        width: 100%;
    }

    th::before {
        content: attr(data-title);
    }
}

#footerTable {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
    vertical-align: top; /* Align content to the top of each cell */
}

@media (max-width: 600px) {
    th, td {
        display: block;
        width: 100%;
    }

    th::before {
        content: attr(data-title);
    }
}

.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #06102a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Make sure it appears above everything else */
}

.loader {
    border: 5px solid #3498db;
    border-top: 5px solid #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}