:root {
  --primary: #fed201;
  --dark: #030200;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
}

/* SECCIONES */
.section {
  padding: 60px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 60px;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(3,2,0,.6), rgba(3,2,0,.6)),
              url(FAlbarran1.webp) center/cover no-repeat;
  color: white;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3.5rem;
}

/* BOTONES */
.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border: none;
  transition: all .3s ease;
}

.btn-primary:hover {
  background: var(--dark);
  color: var(--primary);
  transform: translateY(-3px);
}

/* NAVBAR LATERAL */
.side-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(3,2,0,.9);
  border-radius: 30px;
  padding: 10px;
  z-index: 999;
}

.side-nav a {
  display: block;
  color: var(--primary);
  font-size: 1.3rem;
  padding: 12px;
  transition: all .3s ease;
}

.side-nav a:hover {
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(254,210,1,.6);
}

/* GALERÍA */
.gallery {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .3s ease;
}

.gallery:hover {
  transform: scale(1.05);
}

/* MAPAS */
.map {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  border: none;
}

/* LINKS */
a {
  color: var(--dark);
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: var(--primary);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #25d366;
  color: white;
  font-size: 1.8rem;
  padding: 14px 16px;
  border-radius: 50%;
  z-index: 999;
  transition: transform .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #fed201;
  text-align: center;
  padding: 25px;
}
