@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --color-black: #050505;
  --color-white: #FFFFFF;
  --color-gold: #d4af37;
  --color-gray-50: #FAFAFA;
  --color-gray-800: #1f1f1f;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --spacing-4: 16px;
  --spacing-6: 24px;
  --spacing-8: 32px;
  --spacing-16: 64px;
  --spacing-24: 96px;
  --container-max: 1400px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--color-black); background: var(--color-white); padding-top: 100px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-serif); color: var(--color-black); margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 16px; }
p { line-height: 1.7; color: #444; margin-bottom: 16px; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; }
section.dark { background: var(--color-black); color: var(--color-white); }
section.dark h1, section.dark h2, section.dark h3 { color: var(--color-white); }
section.dark p { color: rgba(255,255,255,0.7); }

/* NAV */
nav { background: #000; padding: 24px 0; position: fixed; top: 0; width: 100%; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); }
nav .container { display: flex; justify-content: space-between; align-items: center; }
nav .logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: #fff; }
nav ul.nav-menu { display: flex; gap: 40px; margin: 0; padding: 0; list-style: none; }
nav a.nav-link { color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
nav a.nav-link:hover { color: var(--color-gold); }
nav .cta-link { border: 1px solid #fff; padding: 10px 24px; color: #fff !important; transition: var(--transition); }
nav .cta-link:hover { background: #fff; color: #000 !important; }
.mobile-menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero { 
  position: relative; 
  min-height: 600px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
  padding: 8rem 2rem 4rem;
}
.hero.has-image { 
  background-size: cover; 
  background-position: center; 
}
.hero.has-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
}
.hero-content { 
  position: relative; 
  z-index: 2; 
  max-width: 900px; 
}
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.3rem; margin-bottom: 2rem; }

/* BUTTONS */
.btn { 
  display: inline-block; 
  padding: 16px 32px; 
  font-weight: 600; 
  text-transform: uppercase; 
  background: #000; 
  color: #fff; 
  cursor: pointer; 
  border: none;
  transition: var(--transition);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.btn:hover { background: var(--color-gold); transform: translateY(-2px); }
.btn-primary { background: var(--color-gold); color: #000; }
.btn-primary:hover { background: #b8941f; }
.btn-outline-primary { background: transparent; border: 2px solid var(--color-gold); color: var(--color-gold); }
.btn-outline-primary:hover { background: var(--color-gold); color: #000; }

/* SECTIONS */
.section-header { 
  text-align: center; 
  margin-bottom: 4rem; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.1rem; color: #666; }
.section-cta { color: var(--color-gold); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; transition: var(--transition); }
.section-cta:hover { color: #fff; }
.dark .section-cta { color: rgba(255,255,255,0.8); }
.dark .section-cta:hover { color: var(--color-gold); }

/* CARDS */
.card-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card { 
  background: white; 
  border: 1px solid #eee; 
  transition: var(--transition);
  overflow: hidden;
  display: block;
}
.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
  border-color: var(--color-gold);
}
.card-image { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 0; background: #f5f5f5; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card:hover .card-image img { transform: scale(1.05); }
.card-content { padding: 2rem; background: white; }
.card-label { 
  display: inline-block; 
  background: var(--color-gold); 
  color: #000; 
  padding: 6px 14px; 
  font-size: 0.7rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.card-title { font-size: 1.5rem; margin-bottom: 0.75rem; color: #000; }
.card-meta { color: #777; font-size: 0.95rem; }

/* Dark section card styling */
.dark .card { 
  background: white;
  border: 1px solid rgba(255,255,255,0.1);
}
.dark .card-content {
  background: white;
}
.dark .card-title {
  color: #000;
}
.dark .card-meta {
  color: #666;
}

/* FEATURE CARD */
.feature-card { 
  display: grid; 
  gap: 3rem; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  background: white; 
  padding: 3rem;
  border: 1px solid #eee;
}
.feature-image { 
  aspect-ratio: 4/3; 
  overflow: hidden; 
  background: #f5f5f5; 
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-label { 
  display: inline-block; 
  background: var(--color-gold); 
  color: #000; 
  padding: 6px 16px; 
  font-size: 0.8rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  margin-bottom: 1rem;
}
.feature-title { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li { 
  padding: 0.75rem 0; 
  color: #555; 
  font-size: 1.05rem; 
}
.feature-list i { color: var(--color-gold); margin-right: 12px; width: 20px; }

/* BOOKING SECTION */
.booking-section { background: #fafafa; }
.booking-wrapper { display: flex; flex-direction: column; background: #fff; }
.booking-info { background: #000; color: #fff; padding: 4rem; flex: 1; }
.booking-info h3 { color: #fff; font-size: 2rem; margin-bottom: 1rem; }
.booking-info p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 2rem; }
.booking-features { list-style: none; padding: 0; margin: 2rem 0; }
.booking-features li { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.booking-features i { color: var(--color-gold); margin-right: 12px; }
.booking-address { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.booking-form-container { padding: 4rem; background: #fff; flex: 1; }

/* FORMS */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { 
  display: block; 
  margin-bottom: 0.5rem; 
  font-weight: 600; 
  color: #333; 
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input, .form-select, .form-textarea { 
  width: 100%; 
  padding: 1.25rem; 
  border: 1px solid #ddd; 
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { 
  outline: none; 
  border-color: var(--color-gold); 
}
.form-textarea { min-height: 150px; resize: vertical; }

/* FOOTER */
footer { 
  background: #000; 
  color: rgba(255,255,255,0.7); 
  padding: 4rem 0 2rem; 
}
footer h3 { color: #fff; font-size: 2rem; }
footer .section-subtitle { color: rgba(255,255,255,0.6); }
.footer-links { 
  display: flex; 
  gap: 2rem; 
  margin: 2rem 0; 
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { 
  color: rgba(255,255,255,0.7); 
  transition: var(--transition); 
}
.footer-links a:hover { color: var(--color-gold); }
.mt-lg { margin-top: 2rem; }

/* WHATSAPP BUTTON */
.whatsapp-float { 
  position: fixed; 
  width: 60px; 
  height: 60px; 
  bottom: 30px; 
  right: 30px; 
  background: #25d366; 
  color: #fff; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 30px; 
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.whatsapp-float:hover { 
  transform: scale(1.1); 
  background: #20ba5a; 
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  nav .logo { font-size: 1.2rem; max-width: 70%; }
  nav ul.nav-menu { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
  nav ul.nav-menu.active { display: flex; }
  .mobile-menu-toggle { display: block; }
  
  .hero { min-height: 500px; padding: 6rem 1.5rem 3rem; }
  .section-header { flex-direction: column; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; padding: 2rem; }
  .feature-title { font-size: 2rem; }
  .booking-wrapper { flex-direction: column; }
  .booking-info, .booking-form-container { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 901px) {
  .booking-wrapper { flex-direction: row; }
}
