/* ===========================
   CELEBRATO EVENTS — global.css
   =========================== */

/* 1. Reset + Box Sizing */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. CSS Custom Properties */
:root {
  --bg-primary:    #080808;
  --bg-secondary:  #0E0E0E;
  --bg-card:       #141414;
  --bg-elevated:   #1A1A1A;
  --gold:          #C9A84C;
  --gold-light:    #E2C472;
  --gold-dim:      #A07830;
  --gold-glow:     rgba(201,168,76,0.15);
  --text-primary:  #F5F0E8;
  --text-secondary:#9A9080;
  --text-dim:      #5A5550;
  --rose:          #B76E79;
  --border:        rgba(201,168,76,0.2);
  --border-hover:  rgba(201,168,76,0.6);
  --font-display: 'Playfair Display', serif;
  --font-body:    'Outfit', sans-serif;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;
}

/* 3. Base */
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* 4. Film Grain */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* 5. Bokeh Blobs */
.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.bokeh-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.bokeh-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  bottom: 100px; left: -80px;
}

/* 6. Custom Cursor */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.3s;
}
.cursor.cursor-hover { width: 16px; height: 16px; background: var(--gold-light); }

/* 7. Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.logo-text em { font-style: italic; color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.btn-book {
  font-size: 0.82rem;
  font-weight: 600;
  color: #080808;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 18px;
  background: none; border: none;
  cursor: pointer; padding: 0;
}
.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--text-primary);
  transition: all 0.35s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.4s, transform 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  transition: color 0.3s;
}
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-book {
  font-size: 1rem;
  font-weight: 600;
  color: #080808;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 1rem 2.5rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

/* 8. Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 0;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .logo-text {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.social-icons { display: flex; gap: 1rem; }
.social-icons a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.social-icons a svg { width: 18px; height: 18px; }
.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-services ul li { color: var(--text-secondary); font-size: 0.9rem; }
.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.whatsapp-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #25D366;
  color: #fff;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
}
.whatsapp-cta:hover { background: #128C7E; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  text-align: center;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.85rem; }

/* 9. Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse-wa 2.5s ease-in-out infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 35px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* 10. Section Shared */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: var(--space-md); }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle {
  margin-left: auto; margin-right: auto;
}

/* 11. Shared Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #080808;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.4);
}
.btn-primary:hover::after { left: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  background: transparent;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--gold);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.2);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: #080808;
  background: linear-gradient(135deg, var(--gold), var(--gold-light) 50%, var(--gold));
  background-size: 200% auto;
  padding: 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.08em;
  animation: shimmer 3s linear infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.4);
}

/* 12. Page Hero */
.page-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 9rem 2rem 4rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.96) 0%, rgba(20,14,5,0.92) 50%, rgba(8,8,8,0.96) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 0.5rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* 13. Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* 14. Selection */
::selection { background: var(--gold); color: #080808; }

/* 15. Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
@keyframes bounce {
  0%,100% { transform: translateY(0) translateX(-50%); }
  50%      { transform: translateY(10px) translateX(-50%); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links, .btn-book { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .page-hero { min-height: 50vh; }
}
