:root {
  --color-bg-main: #F2EADF;
  --color-bg-soft: #F8E1CF;
  --color-accent-light: #DEB8B7;
  --color-accent: #BB766F;
  --color-primary: #A03F3E;
  --color-text-dark: #3a2a2a;
  --color-text-light: #ffffff;
}

body {
  padding-top: 70px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  background-color: var(--color-bg-main);
  color: var(--color-text-dark);
  line-height: 1.6;
}

.hero {
  height: 90vh;
  background:
    linear-gradient(
      rgba(160, 63, 62, 0.65),
      rgba(160, 63, 62, 0.65)
    ),
    url('../img/hero.jpg') center/cover no-repeat;
  color: var(--color-text-light);
}

.hero h1 {
  letter-spacing: 0.5px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto;
}

.hero .btn-primary {
  background-color: var(--color-accent-light);
  color: var(--color-primary);
  border: none;
}

.hero .btn-primary:hover {
  background-color: var(--color-bg-soft);
}

.nav-link {
  font-weight: 500;
}

footer small {
  opacity: 0.8;
}

.navbar {
  padding: 0.8rem 0;
  background-color: var(--color-bg-main);
}

.navbar-brand {
  font-weight: 700;
  color: var(--color-primary);
}

.navbar-brand:hover {
  color: var(--color-accent);
}

.nav-link {
  font-weight: 500;
  color: var(--color-text-dark);
}

.nav-link:hover {
  color: var(--color-primary);
}


.navbar .btn-primary {
  background-color: var(--color-primary);
  border: none;
}

.navbar .btn-primary:hover {
  background-color: var(--color-accent);
}

section {
  padding: 4rem 0;
}

section h2 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.bg-soft {
  background-color: var(--color-bg-soft);
}

.card {
  background-color: var(--color-bg-main);
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.15);
}

.card-title {
  color: var(--color-primary);
  font-weight: 600;
}

.btn {
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--color-primary);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(160, 63, 62, 0.25);
  background-color: var(--color-accent);
}

.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  color: white;
}


footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

footer small {
  opacity: 0.85;
}

.hero-small {
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-small h1 {
  font-weight: 700;
}

.hero-small p {
  opacity: 0.95;
}

/* PLAYLIST YOUTUBE */

.ratio iframe {
  border-radius: 12px;
  border: none;
}


/* MENSAJES */

.card iframe {
  border: none;
}

a,
button,
.btn {
  transition: all 0.3s ease;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.hero h1,
.hero p,
.hero .btn {
  animation: fadeHero 1.2s ease forwards;
}

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

.logo {
  height: 48px;
  width: auto;
}

@media (max-width: 768px) {
  .logo {
    height: 40px;
  }
}

.social-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  padding: 0;
  justify-items: center;
}

.social-list li {
  margin: 0;
}

.social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #A03F3E;
  font-weight: 500;
  transition: color 0.3s ease;
  justify-content: center;
}

.card-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-center .btn {
  margin-top: 10px;
}

.social-list a:hover {
  color: #BB766F;
}

.social-list i {
  font-size: 1.4rem;
}

.social-list a:hover .bi-facebook {
  color: #1877F2;
}

.social-list a:hover .bi-youtube {
  color: #FF0000;
}

.social-list a:hover .bi-instagram {
  color: #E4405F;
}

.social-list a:hover .bi-whatsapp {
  color: #25D366;
}

.social-list a:hover .bi-spotify {
  color: #1DB954;
}

.social-list a:hover .bi-tiktok {
  color: #000000;
}

.map-container {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* SPOTIFY */

.spotify-section {
  background-color: var(--color-bg-soft);
}

.spotify-player {
  max-width: 650px;
  margin: auto;
}

.spotify-player iframe {
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {

  .hero {
    height: 70vh;
  }

  .hero-small {
    height: 40vh;
  }

  section {
    padding: 3rem 0;
  }

}

.event-card img {
  height: 180px;
  object-fit: cover;
}

.event-date {
  font-size: 0.9rem;
  color: #A03F3E;
  font-weight: 500;
  margin-bottom: 10px;
}

.event-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.event-tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #BB766F;
  font-weight: 600;
  margin-bottom: 6px;
}