/* Reset y Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #1a1a1a;
    --dark-gray: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: var(--black);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

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

.logo {
    height: 24px;
    width: auto;
}

.streaming-icons {
    display: flex;
    gap: 20px;
}

.streaming-icons a {
    color: var(--white);
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.8)), url('assets/Fondosomeday.jpg') center/cover no-repeat;
    padding-top: 60px;
}

.countdown-section {
    width: 100%;
}

.countdown-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    ;
}

.time-box span:first-child {
    font-size: 3rem;
    font-weight: 300;
}

.time-box .label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 20;
    line-height: 1.8;
}

/* Music Section */
.music {
    padding: 80px 0;
    background-color: var(--black);
}

.music h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 400;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.track {
    background-color: var(--gray);
    border-radius: 5px;
    overflow: hidden;
}

.track img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.track-info {
    padding: 20px;
    text-align: center;
}

.track-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.stream-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stream-links a {
    color: var(--white);
    font-size: 1.5rem;
}

.coming-soon {
    font-size: 0.9rem;
    color: #666;
}

/* Comentarios */
.coments {
    text-align: center;
    padding: 80px 0;
    background-color: var(--black);
}

.coments h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
}
.coments p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 20;
    line-height: 1.8;
}

.black-comments {
    background-color: #000;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .comment-img-container {
    overflow: hidden;
    border-radius: 8px;
  }
  
  .comment-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .comment-img-container:hover img {
    transform: scale(1.01);
  }



/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo {
    height: 24px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.3rem;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

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


    .countdown-section h1 {
        font-size: 2.5rem;
    }
    
    .time-box {
        min-width: 70px;
    }
    
    .time-box span:first-child {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }

    .track img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    .black-comments {
        background-color: #000;
        padding: 0px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
}

/*CSS para Lanzamientos */

.released-message {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

/* Botón base */
.released-message a {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s ease-in-out;
}

.released-message a:hover {
    transform: scale(1.05);
}

/* Íconos Font Awesome */
.released-message i {
    font-size: 20px;
    margin-right: 10px;
}

/* Botón "Ir a escuchar" */
.listen-btn a {
    background-color: #D9B174; /* rojo llamativo */
    color: white;
}
/* Margen entre botones */
.listen-btn{
    margin-top: 90px;

}

@media (max-width: 480px) {
    /* .header-content {
        flex-direction: column;
        gap: 15px;
    } */


    .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.4)), url('assets/Fondosomeday.jpg') center/cover no-repeat;
    background-attachment: scroll;
    }
    
    .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .countdown {
        gap: 10px;
    }
    
    .time-box {
        min-width: 60px;
    }
    
    .time-box span:first-child {
        font-size: 2rem;
    }
    
    .time-box .label {
        font-size: 0.8rem;
    }
    
    .countdown-section h1 {
        font-size: 2rem;
    }

    .about-content h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 400;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .track img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    .black-comments {
        background-color: #000;
        padding: 0px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
    
}