html{
  background-image: url(https://i.postimg.cc/pX8Zcrk2/laufey-background.png);
}
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap);

body{
  margin:0;
  font-family: 'Poppins', sans-serif;
}

header{
    width: 100%;
    height: 150;
}

.banner{
    object-position: center;
    object-fit:cover;
    width: 100%;
    height: 100%;
    

}

header {
  position: relative;
}

nav {
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav a {
  background: #fff8dc;
  border: 2px solid #001B2D;
  border-radius: 8px 8px; 
  padding: 8px 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav a:hover {
  background: #ffe066;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2)
}

.contenedor {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 20px;
}



.caja_0 {
  flex: 1;               
  background: #fff8dc;
  border: 2px solid #d4a017;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.caja_contenido {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


.caja_0 p {
  color: #333;
  line-height: 1.5;
  font-size: 16px;
}

.caja_0 .titulo {
  background: #f4c542;              
  margin: -15px -15px 15px -15px;  
  padding: 10px;
  border-radius: 8px 8px 0 0;
  font-size: 20px;
  text-align: center;
}

.caja_0, .social {
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.imagen_0 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
}

.imagen_0 img {
  max-width: 200px;
  border-radius: 8px;
}


.caja_1 {            
  padding: 10px;
  margin-bottom: 10px;
  flex: 2;
}

.caja_1 h3 {
  margin-top: 0;
  font-size: 16px;
  color: #333;
}


.social {
  width: 220px;
  background: #fff8dc;        
  border: 2px solid #d4a017;
  border-radius: 10px;
  padding: 15px;
  backdrop-filter: blur(4px);
}

.social h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
  background: #f4c542;
  padding: 8px;
  border-radius: 6px;
}

.social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social li {
  margin: 10px 0;
}

.social a {
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  color: #333; 
}


.social a[href*="instagram"] i { color: #E4405F; }
.social a[href*="instagram"]:hover {
  background: #E4405F22; 
  color: #E4405F;
}


.social a[href*="twitter"] i { color: #1DA1F2; }
.social a[href*="twitter"]:hover {
  background: #1DA1F222;
  color: #1DA1F2;
}


.social a[href*="tiktok"] i { color: #000000; }
.social a[href*="tiktok"]:hover {
  background: #00000022;
  color: #000000;
}


.social a[href*="youtube"] i { color: #FF0000; }
.social a[href*="youtube"]:hover {
  background: #FF000022;
  color: #FF0000;
}


.social a[href*="spotify"] i { color: #1DB954; }
.social a[href*="spotify"]:hover {
  background: #1DB95422;
  color: #1DB954;
}


.social a:hover {
  color: #d4a017;
  background: rgba(255, 215, 0, 0.1);
  padding-left: 5px;
  border-radius: 4px;
  transition: 0.3s;
}


.discografias {
  background: #fff8dc;
  border: 2px solid #d4a017;
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.discografias h4 {
  font-size: 22px;
  background: #f4c542;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.album-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.album-card {
  position: relative;
  width: 220px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.album-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: filter 0.3s;
}

.album-card:hover {
  transform: scale(1.05) rotate(-1.5deg);
}

.album-card:hover img {
  filter: brightness(60%);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s;
}

.album-card:hover .overlay {
  opacity: 1;
}


footer {
  text-align: center;
  background: #001B2D;
  color: white;
  padding: 15px;
  margin-top: 30px;
  border-top: 3px solid #d4a017;
}

.album-canciones {
  background: #fff8dc;
  border: 2px solid #d4a017;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  max-width: 1100px;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
}

.album-canciones h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 35px;
  background: #f4c542;
  padding: 12px;
  border-radius: 8px;
  color: #001B2D;
}

.cancion {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cancion:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.cancion h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #4a2c2a;
}

.cancion p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.cancion iframe {
  border-radius: 8px;
  width: 100%;
  height: 80px;
}


.album-canciones .cancion {
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .album-canciones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}


.album-header {
  text-align: center;
  padding: 20px 20px;
  background: linear-gradient(135deg, #f4c542, #ffd966);
  border-bottom: 4px solid #d4a017;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.album-header h1 {
  font-size: 42px;
  margin: 0 0 15px;
  color: #001B2D;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
  background-color: #f4c542; 
  display: inline-block;     
  padding: 0.3em 0.6em;
  border-radius: 8px;        
}

.album-header p {
  text-align: justify;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #333;
}


.cancion {
  background: #fff8dc;
  border: 2px solid #d4a017;
  border-radius: 10px;
  margin: 20px auto;
  padding: 0;
  max-width: 800px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  overflow: hidden;
}


.cancion-titulo {
  background: #f4c542;
  margin: 0;
  padding: 12px;
  font-size: 20px;
  text-align: center;
  border-bottom: 2px solid #d4a017;
}


.cancion-contenido {
  padding: 15px;
}

.cancion-contenido p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 16px;
  color: #333;
}

.cancion iframe {
  border-radius: 8px;
}

@media (max-width: 768px) {
  .contenedor {
    flex-direction: column;
  }
}







