/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #3f0101;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background-color: #e74c3c;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

section {
    padding: 100px 0;
}

/* Header y navegación */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(10, 10, 10, 0.9);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 1px;
    border: 2px solid #e74c3c;
    padding: 5px 10px;
}

.logo a {
    color: #ffffff;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    list-style: none;
    margin-left: 30px;
}

.nav-menu li a {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.nav-menu li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e74c3c;
    transition: all 0.3s ease;
}

.nav-menu li a:hover:before {
    width: 100%;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section y Slider */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Oculta partes del slider que se salgan */
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Transición de difuminado */
}

.slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative; /* Para que esté por encima del overlay */
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* About Section */
.about {
    background-color: #0f0f0f;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    padding-right: 50px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border: 5px solid #e74c3c;
}

/* Discography Section */
.discography {
    background-color: #0a0a0a;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.album {
    position: relative;
    overflow: hidden;
    border: 3px solid #1a1a1a;
    transition: all 0.3s ease;
}

.album:hover {
    transform: translateY(-10px);
    border-color: #e74c3c;
}

.album img {
    width: 100%;
    display: block;
}

.album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.album-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.album-year {
    font-size: 0.9rem;
    color: #e74c3c;
}

.album-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.album:hover .album-link {
    opacity: 1;
}

/* Latest Album Section */
.latest-album {
    background-color: #0f0f0f;
}

.album-details {
    display: flex;
    align-items: center;
}

.album-cover {
    flex: 1;
    padding-right: 50px;
}

.album-cover img {
    width: 100%;
    border: 5px solid #e74c3c;
}

.album-info-details {
    flex: 1;
}

.album-info-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

.album-meta {
    margin-bottom: 30px;
}

.album-meta-item {
    display: flex;
    margin-bottom: 10px;
}

.meta-title {
    width: 120px;
    text-transform: uppercase;
    font-weight: 600;
    color: #e74c3c;
}

.meta-info {
    flex: 1;
}

.track-list {
    margin-top: 30px;
}

.track {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
}

.track-number {
    width: 30px;
    font-weight: 600;
}

.track-title {
    flex: 1;
}

.track-duration {
    width: 50px;
    text-align: right;
    color: #999;
}

.track-actions {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.track-btn {
    background-color: transparent;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-btn:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

/* Tours Section */
.tours {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/backgrounds/tour-bg.jpg') no-repeat center center/cover;
}

.tour-card {
    background-color: rgba(26, 26, 26, 0.8);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 5px solid #e74c3c;
}

.tour-date {
    width: 100px;
    text-align: center;
}

.tour-day {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}

.tour-month {
    font-size: 1rem;
    text-transform: uppercase;
}

.tour-info {
    flex: 1;
    padding: 0 30px;
}

.tour-city {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tour-venue {
    color: #999;
}

.tour-action {
    width: 150px;
}

/* Band Section */
.band {
    background-color: #0a0a0a;
}

.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.member {
    position: relative;
    overflow: hidden;
}

.member img {
    width: 100%;
    display: block;
    transition: all 0.3s ease;
}

.member:hover img {
    transform: scale(1.05);
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.member-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-role {
    color: #e74c3c;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background-color: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(231, 76, 60, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: #ffffff;
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/backgrounds/contact-bg.jpg') no-repeat center center/cover;
}

.contact-content {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    padding-right: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e74c3c;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    border: 2px solid #e74c3c;
    padding: 5px 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e74c3c;
    transform: translateY(-5px);
}

.copyright {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content, .album-details, .contact-content {
        flex-direction: column;
    }
    
    .about-text, .album-cover, .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .tour-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tour-date, .tour-info, .tour-action {
        width: 100%;
        padding: 10px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}