:root {
    --gold: #D4AF37;
    --black: #050505;
    --dark-grey: #121212;
    --light-grey: #a0a0a0;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

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

/* NAVEGACIÓN */
header {
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--white); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }

/* HERO SECTION */
/* .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: url('images/Ana-Luisa-5.jpg') center/cover no-repeat;
} */
 .hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;

  /* separa la propiedad para poder override */
  background-image: url('images/Ana-Luisa-5.jpg');
  background-size: cover;
  background-repeat: no-repeat;

  /* MOBILE: prioriza el lado derecho (la persona) */
  background-position: right center !important;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(5,5,5,1) 10%, rgba(5,5,5,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.eyebrow { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; }
.hero h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem, 10vw, 6rem); line-height: 0.9; margin: 20px 0; }
.gold-text { color: var(--gold); }
.hero p { color: var(--light-grey); font-size: 1.2rem; margin-bottom: 30px; }

/* BOTONES */
.btn-main {
    background: var(--gold);
    color: black;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-main:hover { transform: scale(1.05); background: #f0c94d; }
.full-width { width: 100%; }

/* GRID DE HITS */
.section-container { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
.section-title { font-family: 'Bebas Neue', cursive; font-size: 3rem; margin-bottom: 50px; }
.dot { color: var(--gold); }

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

.hit-card {
    background: var(--dark-grey);
    text-decoration: none;
    color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #222;
}

.hit-card:hover { border-color: var(--gold); transform: translateY(-10px); }

.hit-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 60px; height: 60px; background: rgba(212, 175, 55, 0.9);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: black; font-size: 1.5rem; opacity: 0; transition: var(--transition);
}

.hit-card:hover .play-icon { opacity: 1; }
.hit-body { padding: 25px; }
.hit-body h3 { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }

/* CONTACTO */
.bg-darker { background-color: #080808; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.contact-stats { display: flex; gap: 30px; margin-top: 30px; }
.stat strong { display: block; font-size: 2rem; color: var(--gold); font-family: 'Bebas Neue'; }
.stat span { color: var(--light-grey); font-size: 0.8rem; text-transform: uppercase; }

.form-container { background: var(--dark-grey); padding: 40px; border-radius: 15px; }
form { display: flex; flex-direction: column; gap: 20px; }
input, textarea {
    padding: 15px; background: #000; border: 1px solid #333; color: white;
    font-family: inherit; border-radius: 5px;
}
input:focus, textarea:focus { outline: none; border-color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .contact-wrapper { grid-template-columns: 1fr; text-align: center; }
    .contact-stats { justify-content: center; }
    /* .hero h1 { font-size: 3.5rem; }
     */
     .hero {
    background-position: center center;
  }
}