/* ═══════════════════════════════════════════════════
   DANNA VICTORIA — Design System
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Palette */
  --pink:          #F2A0ED;
  --pink-soft:     #F2BBE9;
  --pink-pale:     #FDF0FC;
  --pink-deep:     #D966D3;
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --gray-light:    #F0F0F0;
  --gray-mid:      #E0E0E0;
  --gray-dark:     #888;
  --black:         #0D0D0D;
  --black-soft:    #1A1A1A;

  /* Semantic */
  --text:           #0D0D0D;
  --text-secondary: #505050;
  --text-muted:     #909090;
  --surface:        #FFFFFF;
  --surface-alt:    #F7F3F7;
  --border:         rgba(0,0,0,0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Motion */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w:      1280px;
  --header-h:   72px;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  
  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY SCALE ──────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.t-headline {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}
.t-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--pink);
  flex-shrink: 0;
}

/* ── LAYOUT UTILS ──────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5vw;
}
section { width: 100%; }

/* ── LANGUAGE SYSTEM ───────────────────────────────── */
[data-lang]        { display: none; }
[data-lang-inline] { display: none; }

body.lang-es [data-lang="es"]             { display: block; }
body.lang-en [data-lang="en"]             { display: block; }
body.lang-es [data-lang-inline="es"]      { display: inline; }
body.lang-en [data-lang-inline="en"]      { display: inline; }

/* ── HEADER ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.site-header.dark-mode {
  background: transparent;
}
.site-header.dark-mode.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
.logo img {
  height: 56px; /* Increased for better visibility */
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.logo:hover img {
  transform: scale(1.05);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 500; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px 6px;
  transition: color var(--transition);
}
.lang-btn.active { color: var(--text); font-weight: 600; }
.lang-btn:hover  { color: var(--text); }
.lang-sep { color: var(--gray-mid); font-size: 12px; user-select: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  padding: 32px 5vw 48px;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu nav a:hover { color: var(--pink); padding-left: 8px; }
.mobile-menu .lang-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.mobile-menu .cta-btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* ── BUTTONS ───────────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pink);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.cta-btn:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(242,160,237,0.45);
}
.cta-btn:active { transform: translateY(0); box-shadow: none; }
.cta-btn.large  { font-size: 14px; padding: 18px 44px; letter-spacing: 0.1em; }
.cta-btn.ghost  {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: none;
}
.cta-btn.ghost:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(242,160,237,0.35);
}

/* Setmore override */
button.anywhere-book-now-button.cta-btn {
  background-color: var(--pink) !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  white-space: nowrap !important;
}
button.anywhere-book-now-button.cta-btn.large {
  font-size: 14px !important;
  padding: 18px 44px !important;
  letter-spacing: 0.1em !important;
}
button.anywhere-book-now-button.cta-btn:hover {
  background-color: var(--pink-soft) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(242,160,237,0.45) !important;
}

/* ── SECTION HEADERS ───────────────────────────────── */
.section-head { margin-bottom: 56px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 12px;
}
.section-title em { font-style: italic; }
.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 14px;
}

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); display: block; margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--pink); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links   { gap: 20px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .header-actions .cta-btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── CURSOR & SELECTION ────────────────────────────── */
::selection { background: rgba(242,160,237,0.3); }

/* ── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* ── GALLERY HOVER ─────────────────────────────────── */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item {
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(242,160,237,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ── REMOVE PLACEHOLDERS ──────────────────────────── */
/* Keeping classes for potential future use but images are now preferred */
.np-gradient { display: none; }
