body {
  background-color: #E15744;
  margin: 0;
  font-family: Arial, sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@font-face {
  font-family: '2';
  src: url('fonts/BroadwayD.ttf') format('truetype');
}

.container {
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 30px;
}



.nav-center {
  flex: 1; /* take available space */
  display: flex;
  justify-content: center; /* center the menu */
}

.nav-center ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
    align-items: center;  
    
}

.nav-center ul li {
  list-style: none;
}

.nav-center ul li a {
  color: #ffe8b0;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.nav-center ul li a:hover {
  color: black;
}
.nav-left h1 {
    
  color: rgb(0, 0, 0);
  margin: 0;
  z-index: -1;
  font-weight: bolder;
}
.nav-right h1 {
   
   color: rgb(0, 0, 0);
 
  z-index: -1;
  font-weight: bolder;
}


.home {
  height: 100vh;               
 background: #E15744 url("img/1.png") no-repeat  bottom;
background-size:cover;
   background-position: center;    
  color: white;
  display: flex;
  flex-direction: column;
    
  
}

.home  h2{
  align-items: center;         
  text-align: center;
    font-family: '2';
    color: black;
    font-size: 60px;
          margin-bottom: 0;
  line-height: 1.2;
}
.home  p{
  align-items: center;         
  text-align: center;
    color: #ffe8b0;
    font-size: 25px;
     margin: 10px 0 0 0;      
  line-height: 1.4;
}


.albums {
  height: auto;
  min-height: 60vh;               
  background: #171717;
  color: white;
  display: flex;
  justify-content: start;
  align-items:center;
  text-align: center;
  flex-direction: column;
}
.albums h2{
    font-family: '2';
    font-weight: lighter;
    color: #ffe8b0;
    font-size: 40px;
    
}
 .albums .cover {
  display: flex;
  justify-content: start;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 0;
}

.albums figure {
  text-align: center;
  color: white;
}

.albums figure img {
  border-radius: 20px;
  width: 200px;
  transition: 0.3s ease;
}

.albums figure img:hover {
  opacity: 0.60;
  transform: scale(1.05);   
}

.albums figure p {
  margin-top: 5px;
  font-size: 13px;
  color: #fffefd;
  cursor:pointer ;
}
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  inset: 0; 
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #171717ee;
  padding: 20px;
  border-radius: 15px;
  max-height: 80vh; 
  overflow-y: auto; 
  width: 50%;
  text-align: center;
  color: #ffe8b0;
}

#songList {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}


#songList li {
  border: 1px solid #E15744;  
  border-radius: 8px;
  padding: 10px 15px;
  margin: 8px 0;
  color: #ffe8b0;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}


#songList li:hover {
  background: #E15744;
  font-weight:750;
  color: #171717;
}
.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


.music-player {
  display: none; 
  position: fixed;
  border-radius: 20px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: #171717ee;
  color: #ffe8b0;
    margin:  0 auto ;  
  padding: 20px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
  flex-direction: column;
   justify-content: center;  

 
   width: 50%;  
  z-index: 9999;
}

.music-player .player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
   margin: 0 0 0 0; 
}

.music-player .player-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 0 0; 
}
.music-player .player-body p {
   color: #ffe8b0;
    font-size: 25px;
     margin: 0 0 20px 0; 
}

.controls {
  display: flex;
  gap: 15px;
  margin: 10px 0;
  
}

button {
  background: none;
  border: none;
  color: #ffe8b0;
  font-size: 24px;
  cursor: pointer;

}


input[type="range"] {
  -webkit-appearance: none; 
  width: 100%;
  height: 6px;
  background: #E15744; 
  border-radius: 5px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffe8b0;  /* thumb color */
  cursor: pointer;
  border: none;
}

.volume {
  width: 100%;               /* take full width */
  display: flex;             /* flex container */
  justify-content: flex-start; /* align left */
  padding-left: 20px;        /* optional: add spacing from edge */
  margin-top: 10px; 
   margin: 0 0 20px 0;          /* spacing above */
}

.volume input[type="range"] {
  width: 20%;              /* keep slider small */
}


.songs {
   height: auto;
  min-height: 60vh; 
  background:#E15744 ;
  color: white;
   display: flex;
  justify-content: start;
  align-items:center;
  text-align: center;
  flex-direction: column;
 
}

.songs{
  background: #ffe8b0;
  padding: 20px;
  border: 2px solid black;
  position: relative;
  overflow: hidden;
}

#songs h2 {
    font-family: '2';
  color: #000000;
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 4%;
}

.songs-container {
  display: flex;
  justify-content: flex-start; /* keep songs left-aligned */
  width: 100%;
}

.song-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000000;
  padding: 15px 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;  
  width: 240px;
  box-sizing: border-box;
  text-align: center; 
}

.song-card:hover {
  background: #1a1a1a;       
  transform: scale(1.05);   
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6); 
}

.song-card img {
  width: 100%;
  max-width: 220  px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px; 
}

.songs-grid {
  display: grid;   
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px;
  width: 100%;
} 

.see-all-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to left, #000000, #00000000);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.see-all-overlay button {
  background:transparent;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 60px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.see-all-overlay:hover {
   background: linear-gradient(to left, #000000, #17171700);
  width: 40%;
}

.seeAllBtnMobile {
  display: none;
}


.contact {
  position: relative;
  height: 100vh;
  background: #171717;
  color: #ffe8b0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("img/vinyl-side.png") no-repeat center;
  background-size: contain;
  width: 100%;   
  height: 80%;
  z-index: 2; 
  background-position: right center;     
}



.contact {
  background-color: #111;   /* Dark background */
  color: #f8e6b8;
  text-align: center;
  padding: 0;

  display: flex;
  flex-direction: column;
   
 
}


.contact-header {
  background-color: #e74c3c;

  color:#ffe8b0;
  padding: 40px 20px;
  width: 100%;
  margin-top: 10%;
  
}

.contact-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 1rem;
  max-width: 700px;
  margin: 10px auto;
  line-height: 1.6;
}

/* Footer part */
.contact-footer {
  margin-top: 5%;
  padding: 30px 20px;
  z-index: 999;
}


.contact-footer .logo {
    width: 300px;
}

.contact-footer .links {
  font-size: larger;
  margin: 15px 0;
}

.contact-footer .links a {
  color: #f8e6b8;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.95rem;
}



.contact-footer .socials a i{
   
  color: #f8e6b8;
  margin: 0 8px;
  cursor: pointer;
  font-size: 20px;
  margin-bottom: 30px;
}
.contact-footer .socials a i:hover{
  color: #ffb700;
  
}

.contact-footer .copy {
  margin-top: 40px;
  align-items: center;
  font-size: 15px;
  color: #696969;
}
.contact-footer .copy:hover{
  color: #ffffff;
}





/* Mobile Responsive Styles */
@media (max-width: 768px) {

  /* General */
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 10px;
  }

  /* Navbar */
  nav {
    flex-direction: column;
   
  }

  .nav-center ul {
   display: none;
  }

  .nav-left h1 {
    font-size: 36px;
    margin-bottom: 0;
  }
 .nav-right h1 {
  margin-top: 0;
    font-size: 34px;
    font-weight: 900;
  }
  /* Home */
  .home {
    height:90vh;
    padding: 40px 15px;
    background: #E15744 url("img/2.png") no-repeat center bottom;
    background-size: cover; /* make sure vinyl fits */
  }

  .home h2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .home p {
    font-size: 16px;
  }

  /* Albums */
  .albums {
    height: auto;
    padding: 30px 0;
  }

   .albums .cover {
    display: grid;  
    grid-template-columns: repeat(2, minmax(140px, 1fr)); /* bigger tiles */
    gap: 2px;  
    justify-items: center; 
    width: 100%;
  }

  .albums figure img {
    width: 180px;
    
    
    margin-right: 0;
    margin-left: 0;
  }

  .albums figure p {
    font-size: 16px;
  }



  /* Modal */
  .modal-content {
    width: 90%;
    padding: 15px;
  }

  #songList li {
    font-size: 14px;
    padding: 8px 10px;
  }

  /* Music player */
  .music-player {
    width: 95%;
    height: auto;
    padding: 15px;
  }

  .music-player .player-body p {
    font-size: 18px;
  }

  .controls button {
    font-size: 20px;
  }

  .volume input[type="range"] {
    width: 30%;
  }

  /* Songs section */
  .songs {
    height: auto;
    padding: 30px 10px;
  }

  #songs h2 {
    font-size: 28px;
  }

  .songs-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
  }

  .song-card {
    width: 100%;
    padding: 10px;
  }

  .song-card img {
    height: 160px;
  }
  .seeAllBtn {
    display: none;
  }


  .see-all-overlay {
    position: absolute;
    bottom: 0;              
    left: 0;
    top: auto;            
    width: 100%;
    height: 25%;            
    background: linear-gradient(to top, #000000, #00000000);
    display: flex;
    align-items: flex-end;  
    justify-content: center;
    padding-bottom: 15px;   
    transition: opacity 0.3s ease;
  }


  .seeAllBtnMobile {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }

 .see-all-overlay:hover {
   background: linear-gradient(to left, #000000, #17171700);
  width: 100%;
  height: 40%;
}

  /* Contact */
  .contact {
    height: auto;
    padding: 30px 10px;
    text-align: center;
  }
  .contact::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("img/3.png") no-repeat center;
  background-size: contain;
  width: 100%;   
  height: 80%;
  z-index: 2; 
  background-position: right center;     
}

  .contact-header {
    margin-top: 20%;
    padding: 20px 10px;
    
  }

  .contact-header h2 {
     position: relative;
  z-index: 5;
    font-size: 24px;
  }

  .contact-header p {
    font-size: 14px;
     position: relative;
  z-index: 5;
  }

  .contact-footer .logo {
    width: 200px;
  }

  .contact-footer .links {
    font-size: 14px;
  }

  .contact-footer .socials a i {
    font-size: 18px;
  }

  .contact-footer .copy {
    font-size: 12px;
  }
}
