/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --gold: #d4af37;
  --gold-light: #f6e27a;
  --dark: #000;
  --dark-soft: #0b0b0b;
  --grey: #1a1a1a;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid #111;
  z-index: 1000;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 2px;
}

.logo span {
  color: #fff;
}

.nav a {
  color: #fff;
  margin: 0 14px;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

.lang-switch .chip {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 10px;
  margin-left: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s;
}

.lang-switch .chip:hover {
  background: var(--gold);
  color: #000;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: 62px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #ddd;
}

/* ================= DIVIDER ================= */
.gold-divider {
  height: 1px;
  width: 65%;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ================= SECTIONS ================= */
.section {
  padding: 110px 20px;
  text-align: center;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 30px;
}

/* ================= ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= ARTIST ================= */
.artist-layout {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.image-container img {
  max-width: 380px;
  border: 2px solid var(--gold);
  padding: 10px;
  border-radius: 6px;
}

.artist-info {
  max-width: 500px;
  text-align: left;
}

.artist-info p {
  color: #ccc;
  margin-bottom: 20px;
}

.services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.services li {
  padding: 10px;
  border: 1px solid #222;
  text-align: center;
  font-size: 14px;
}

/* ================= GALLERY ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #222;
  filter: grayscale(30%);
  transition: 0.4s;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
  border-color: var(--gold);
}

/* ================= CONTACT ================= */
.quote-form {
  max-width: 600px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  background: var(--dark-soft);
  border: 1px solid #333;
  padding: 15px;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.gold-btn {
  background: linear-gradient(45deg, #a47e1b, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  padding: 18px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.3s;
}

.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.contact-info-container {
  margin-top: 50px;
}

.info-line {
  height: 1px;
  width: 120px;
  background: var(--gold);
  margin: 20px auto;
}

.info-details p {
  margin: 12px 0;
  font-size: 17px;
  color: #ccc;
}

.info-details i {
  color: var(--gold);
  margin-right: 10px;
}

/* ================= MAP ================= */
.map {
  padding: 40px;
}

.map iframe {
  width: 100%;
  height: 420px;
  border: 2px solid var(--gold);
  filter: invert(90%) grayscale(100%);
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #a47e1b, var(--gold));
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 2000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ================= FOOTER ================= */
.footer {
  padding: 40px 20px;
  border-top: 1px solid #111;
  text-align: center;
}

.footer p {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--gold);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .artist-info {
    text-align: center;
  }
}
.images-grid {
  margin-bottom: 60px;
}

.videos-grid video {
  background: #000;
}
.file-label {
  border: 1px dashed var(--gold);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 14px;
  transition: 0.3s;
}

.file-label:hover {
  background: rgba(212, 175, 55, 0.1);
}

.file-label input {
  display: none;
}

.file-label span {
  display: block;
}
/* LOGO CON IMAGEN */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 2px;
}

.logo-text span {
  color: #fff;
}
