/* 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: #333;
}

.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.8 represents 80% 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;
}

#menuButton {
    display: none; /* Hide the "Menu" button on large screens */
    position: fixed;
    top: -100px;
    right: -100px;
}

#menu {
    display: none; /* Hide the vertical menu on large screens */
}

.main-menu {
    position: absolute;
    text-wrap: nowrap;
    left: 50%;
    transform: translateX(-50%); /* Horizontally center the navigation */
}

.main-menu ul {
    list-style: none;
}

.main-menu ul li {
    display: inline;
    margin-right: 20px;
}

.main-menu a {
    text-decoration: none;
    color: #fff;
    position: relative; /* Required for the animation */
    transition: all 0.3s ease; /* Add a smooth transition effect */
}

.main-menu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Adjust the line height as needed */
    background-color: #cc33ff;
    transform: scaleX(0); /* Initially, the line has no width */
    transform-origin: right;
    transition: transform 0.3s ease; /* Transition for the line width */
}

.main-menu a:hover {
    color: #c35008; /* Change the text color on hover */
}

.main-menu a:hover::before {
    transform: scaleX(1); /* Expand the line width on hover */
    transform-origin: left;
}

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: 50px;
    padding-right: 50px;
    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 photos section */
    color: #fff;
    text-align: center;
}

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

#main-logo {
    position: absolute;
    left: 20px; /* Adjust the left position as needed */
    width: 336px;
    height: 100px;
}

#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;
    table-layout: fixed;
}

th, td {
    width: 33.33%;
    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); }
}
