@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --gold: #cca627;
  --gold-dark: #ffffff;
  --gold-light: #94833a;
  --black: #0a0a0a;
  --gray: #000000;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--white);
  background: linear-gradient(180deg, var(--gold) 0%, var(--gray) 100%);
  line-height: 1.6;
}

.brand-display {
  font-family: "Playfair Display", serif;
}

.topbar {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.topbar a {
  color: var(--black);
  text-decoration: none;
}

.navbar {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar.sticky-top {
  top: 48px;
}

body {
  padding-top: 96px;
}

.navbar .nav-link {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold);
}

.btn-gold {
  background: var(--white);
  color: var(--black);
  border: none;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--black);
}

.outline-gold {
  border: 1px solid var(--gold);
}

.hero {
  position: relative;
}

.hero .carousel-item img {
  height: 60vh;
  object-fit: contain;
  background-color: var(--black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.65) 100%);
}

.section {
  padding: 60px 0;
}

.section-title {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card {
  background-color: var(--gold);
  color: var(--black);
  border: 1px solid rgb(214, 176, 49);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.card-title {
  color: var(--white);
}

.caption {
  color: #000000;
  font-size: 0.95rem;
}

.video-wrap {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  overflow: hidden;
}

.video-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.85) 100%);
  color: var(--gold-light);
  padding: 10px 14px;
  font-weight: 600;
}

.footer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border-top: none;
}

.footer a {
  color: var(--black);
  text-decoration: none;
}

.footer a:hover {
  color: var(--black);
  text-decoration: underline;
}

.copyright {
  border-top: 1px solid rgb(255, 255, 255);
  font-size: 0.95rem;
  color: var(--black);
}

.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, rgba(212,175,55,0.2), rgba(212,175,55,0.75), rgba(212,175,55,0.2));
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.zoom-icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(212, 175, 55, 0.9);
  color: var(--black);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 6px 12px rgba(212, 175, 55, 0.2);
}

.subnav {
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.badge-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}

.whatsapp {
  color: #25d366;
}

.map-embed {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.fab {
  position: fixed;
  bottom: 22px;
  z-index: 1050;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
  font-weight: 700;
  font-size: 22px;
}

.fab-call {
  left: 22px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.15);
}

.fab-whatsapp {
  right: 22px;
  background: #25d366;
  color: #0a0a0a;
  border: 1px solid rgba(0,0,0,0.15);
}

.card-title {
  color: var(--gold);
  font-weight: 700;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.btn-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.2);
  text-decoration: none;
}

.btn-icon-call {
  background: var(--gold);
  color: var(--black);
}

.btn-icon-wa {
  background: #25d366;
  color: #0a0a0a;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}
