body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

::selection {
    background: #dc3545;
    color: white;
}

/* HEADER */

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.nav-link.active {
    color: #dc3545 !important;
    border-bottom: 2px solid #dc3545;
}

.nav-link:hover {
    color: #dc3545 !important;
    transition: 0.3s;
}

/* INDEX */

.hero {
    background-image: url(../assets/index/hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 70vh;
}

.hero__members {
    transition: 0.3s;
}

.hero__members:hover {
    transform: scale(1.15);
}

.text-white {
    color: #ffffff;
    font-family: 'Inter', sans-serif; 
    text-transform: uppercase;
    letter-spacing: 2px;
}

iframe {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
}

@media (min-width:768px) {
    .hero {
        min-height: 80vh;
    }

    .spotify-section {
        padding: 30px 0;
    }
}

@media (min-width:992px) {
    .hero {
    min-height: 90vh;
    }
}

/* DRUNKER */

#flyerCarousel {
    border: 2px solid #333;
}

#flyerCarousel img {
    height: 500px;
    object-fit: fill;
    background-color: #111;
}

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* MEDIA */

body {
    background-color: #000;
}

.media-section-title {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 50px;
    margin-bottom: 25px;
    border-left: 6px solid #dc3545;
    padding-left: 20px;
    display: block;
    line-height: 1.2;
}

main.container h1 {
    font-weight: 900;
    letter-spacing: 8px;
    text-shadow: 3px 3px 0px #dc3545;
    margin-bottom: 60px;
}

/* .gallery-img se formatea igual que en drunker asi que no lo agrego */

.gallery-img:hover {
    filter: grayscale(0%) brightness(110%);
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
    border-color: #dc3545;
    z-index: 5;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid #333;
}

#lightboxImg {
    border: 2px solid #dc3545;
    box-shadow: 0 0 30px rgba(220, 53, 69, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.row.g-3 .col-6 {
    animation: fadeInUp 0.6s ease forwards;
}

/* TOUR */

.tour-container {
    max-width: 900px;
    margin: 0 auto;
}

.tour-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.tour-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #dc3545;
    transform: translateX(5px);
}

.tour-date {
    color: #dc3545;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn-tour {
    border-radius: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SCROLL */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #181818; 
}

::-webkit-scrollbar-thumb {
    background: #dc3545; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b02a37; 
}