/* RESET & GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* UTILITY CLASSES */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 60px 0 40px 0;
    text-transform: uppercase;
    color: #ccc;
    position: relative;
}
.section-titlev {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 60px 0 40px 0;
    text-transform: uppercase;
    color: #ccc;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #444;
    margin: 20px auto 0;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #cc3737; /* Un dorado suave similar al de la imagen */
    color: #cc3737;
    padding: 12px 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-outline:hover {
    background-color:#cc3737;
    color: #000;
}

.btn-white {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-outline-small {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 7px 15px;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-outline-small:hover {
    background: #fff;
    color: #000;
}

/* HEADER & HERO */
.hero-section{
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
  }
  
  /* Para que nav y texto queden encima */
  .main-nav,
  .hero-content{
    position: relative;
    z-index: 2;
  }

.main-nav {
    width: 100%;
    padding: 20px 0;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #ccc;
}

.main-nav a:hover {
    color: #fff;
}

.logo-item img {
    height: 40px;
}

.hero-content {
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

.hero-content h2 {
    font-weight: 300;
    letter-spacing: 5px;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 30px;
}

/* TOUR SECTION */
.tour-section {
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tour-header-btn {
    text-align: center;
    margin-bottom: 30px;
}

.tour-header-btn .btn-small {
    border: 1px solid #444;
    padding: 5px 15px;
    font-size: 0.8rem;
    color: #fff;
}

.tour-filters {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.tour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.tour-date-info {
    display: flex;
    flex-direction: column;
}

.tour-date-info .date {
    font-weight: bold;
    font-size: 0.9rem;
    color: #fff;
}

.tour-date-info .location, .tour-date-info .venue {
    font-size: 0.8rem;
    color: #999;
}

.tour-actions {
    display: flex;
    gap: 10px;
}

.tour-footer {
    text-align: center;
    margin-top: 40px;
}

/* ABOUT SECTION */
.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

.about-text {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* GALLERY */
.gallery-section {
    width: 100%;
    margin-top: 50px;
}

.gallery-image {
    width: 100%;
    height: 1200px;
    background-size: cover;
    background-position: center;
}

.slider-dots {
    text-align: center;
    padding: 20px;
    background: #000;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #444;
    border-radius: 50%;
    margin: 0 5px;
}

.dot.active {
    background: #fff;
}

/* MUSIC & FOLLOW GRIDS */
.music-section, .follow-section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.album img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.album img:hover {
    transform: scale(1.05);
}

/* VIDEOS */
.videos-section {
    padding: 50px 0;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-wrapper img {
    width: 100%;
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #cfaa5f;
    cursor: pointer;
}

/* FOLLOW COLUMNS */
.social-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.social-col h3 {
    font-weight: 300;
    margin-bottom: 20px;
    color: #888;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.insta-item img {
    width: 100%;
    display: block;
}

/* FOOTER */
footer {
    padding: 40px 0;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid #222;
}

.social-icons a {
    margin: 0 15px;
    color: #666;
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tour-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .tour-actions {
        width: 100%;
        justify-content: space-between;
    }
    .social-columns {
        grid-template-columns: 1fr;
    }
}


/* GALLERY */
.gallery-section {
    width: 100%;
    margin-top: 50px;
    position: relative;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.gallery-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-image.active {
    opacity: 1;
}

/* DOTS */
.slider-dots {
    text-align: center;
    padding: 20px;
    background: #000;
}

.dot {
    width: 8px;
    height: 8px;
    background: #444;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.dot.active {
    background: #fff;
}