/* General Styles */
body {
  color: black;
  font-family: Comic Sans MS, Arial, sans-serif;
  background-image: url('../img/bg.gif');
  background-attachment: fixed;
  background-size: cover;
  background-position: center; 
  text-align: center;
  margin: 0; /* Remove default margin */
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
#logo {
  max-width: 100%; /* Make the logo responsive */
  margin-top: 20px; /* Adjust margin for smaller screens */
}

/* Adjust margin for all rows */
#more-music-container #row,
#links-container .row {
  margin: 0 10px; /* Adjust margin for smaller screens */
}

/* Social Links */
ul {
  padding: 0;
  margin: 0;
  list-style-type: none; /* Remove bullets */
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
  background-color: #ffc0cb; /* Light pink */
  border: 2px solid #000;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #888888;
}

ul li {
  padding: 8px 16px;
  border-bottom: 1px solid #000;
}

ul li:last-child {
  border-bottom: none;
}

ul li a {
  text-decoration: none;
  color: #000;
}

ul li a:hover {
  color: #ff0000; /* Red */
}


/*Socials container*/

#socials-container {
  display: flex;
}

#socials-container ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#socials-container ul li {
  margin-bottom: 10px; /* Adjust spacing between items */
  /* Additional styling for list items */
}

/* Music Container */
#music-container {
  display: flex;
  justify-content: center; /* Center items along the main axis */
  gap: 0px; /* Adjust this value to set the desired space between the elements */
}

#more-music-container {
  flex: 2; /* Let this container take up equal space */
  background-image: url('../img/face.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 20px;
  border: 2px solid #ff1493; /* Deep pink */
}

#play-music-container {
  flex: 1; /* Let this container take up equal space */
  background-image: url('../img/Math-01.gif');
  color: #fff;
  padding: 20px;
  border: 2px solid #ff8c00; /* Dark Orange */
}


.album-image {
  height: auto; /* Maintain aspect ratio */
}



/* Contact Container */
#contact-container {
  background-image: url('../img/spc1.gif');
  background-attachment: fixed;
  background-size: 800px;
  background-position: center; /* Center the background image */
  padding: 20px;
  margin: 20px auto; /* Center contact container */
  max-width: 800px; /* Limit width for smaller screens */
  border: 2px solid #00ccff; /* Light blue */
  border-radius: 10px;
  font-family: 'Arial Black', sans-serif;
  display: flex; /* Use Flexbox */
  justify-content: space-between; /* Horizontally align child elements */
}


#contact-container-right{
}

#contact-container-left{
  
}

/* Links Container */
#links-container {
  background-color: #00ff00; /* Bright green */
  color: #000;
  padding: 20px;
  margin: 20px auto; /* Center links container */
  max-width: 800px; /* Limit width for smaller screens */
  border: 2px solid #ff00ff; /* Magenta */
  border-radius: 10px;
  font-family: 'Verdana', sans-serif;
}

#links-container span {
  font-size: 10px;
}

/* Footer */
footer {
  color: #fff;
  padding: 10px;
  width: 100%;
}

/*NEWS*/

#top-section {
  display: flex; /* Use Flexbox */
  justify-content: center; /* Horizontally align child elements */
}

#top-right-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#news-container {
    border: 2px solid #008CBA; /* Blue border */
    padding: 0px; /* Padding inside the box */
    width: 500px; /* Width of the box */
    height: 450px;
    background-image: url('../img/events.gif');
    background-attachment: fixed;
    background-size: 400px;
    background-position: left;
    position: relative; /* Set position to relative */
}

.scroll-box {
    width: 80%; /* Set the width of the scrollable box */
    max-width: 400px; /* Limit the maximum width */
    height: 80%; /* Set the height of the scrollable box */
    max-height: 350px; /* Limit the maximum height */
    overflow: auto; /* Enable vertical and horizontal scrolling */
    border: 1px solid #ccc; /* Add a border for visualization */
    padding: 10px; /* Add padding to the content inside the scrollable box */
    background: #fff;
    position: absolute; /* Set position to absolute */
    top: 50%; /* Set top position to 50% */
    left: 50%; /* Set left position to 50% */
    transform: translate(-50%, -50%); /* Translate to center */
}



/*MODALS*/

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  
}

/* Modal Content */
.modal-content {
  background-image: url(../img/modalbg.gif); /* Corrected background image syntax */
  background-repeat: no-repeat; /* Prevent background image from repeating */
  background-size: cover; /* Stretch background image to cover the entire container */
  margin: 0.2% auto; 
  padding: 30px;
  border: 1px solid #888;
  width: 90%; /* Could be more or less, depending on screen size */
}

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

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

/* Small devices (landscape phones, 576px and up) */
/*@media (min-width: 576px) { */
/*  #container, #socials-container, #music-container, #contact-container, #links-container {*/
/*    flex-direction: row;*/
/*  }*/
/*}*/

/* Medium devices (tablets, 768px and up) */
/*@media (min-width: 768px) { */
/*  #container, #socials-container, #music-container, #contact-container, #links-container {*/
/*    flex-direction: row;*/
/*  }*/
/*}*/

/* Large devices (desktops, 992px and up) */
/*@media (min-width: 992px) { */
/*  #container, #socials-container, #music-container, #contact-container, #links-container {*/
/*    flex-direction: row;*/
/*  }*/
/*}*/

/* Extra large devices (large desktops, 1200px and up) */
/*@media (min-width: 1200px) { */
/*  #container, #socials-container, #music-container, #contact-container, #links-container {*/
/*    flex-direction: row;*/
/*  }*/
/*}*/



