/* ─── CATALINA DEL MAR · Shared Styles ─── */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Raleway:wght@300;400;500;600&family=Lato:wght@300;400&display=swap');

:root {
  --teal:       #2e7571;
  --teal-mid:   #4d9285;
  --teal-sec:   #4a8870;
  --teal-light: #e8f3f1;
  --white:      #ffffff;
  --offwhite:   #f9fefe;
  --text:       #2a2a2a;
  --text-mid:   #555;
  --script:     'Great Vibes', cursive;
  --sans:       'Raleway', sans-serif;
  --body:       'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ─── LOGO HEADER ─── */
.logo-header {
  background: var(--white);
  text-align: center;
  padding: 1.25rem 1rem 1rem;
  border-bottom: 1px solid #eaf4f3;
}
.logo-header a { display: inline-block; text-decoration: none; }
.logo-header img {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto;
}
/* fallback if logo image fails */
.logo-fallback {
  display: none;
  font-family: var(--script);
  font-size: 2.6rem;
  color: var(--teal);
  line-height: 1;
}

/* ─── NAV ─── */
nav {
  background: var(--teal-mid);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-inner a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 1.3rem;
  display: block;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-inner a:hover,
.nav-inner a.active { background: rgba(0,0,0,0.15); }
.nav-inner a.vip-link {
  color: #ffd89b;
  font-weight: 500;
}
.nav-inner a.vip-link:hover { background: rgba(0,0,0,0.2); }

/* mobile hamburger */
.hamburger {
  display: none;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--teal-mid);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.mobile-nav a:hover { background: rgba(0,0,0,0.12); }
.mobile-nav a.vip-link { color: #ffd89b; }

/* ─── PAGE HERO BANNER ─── */
.page-hero {
  background: var(--teal-sec);
  text-align: center;
  padding: 3.5rem 2rem;
}
.page-hero h1 {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.page-hero p {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

/* ─── MAIN CONTENT ─── */
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.page-content h2 {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-family: var(--body);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.page-content ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}
.page-content li {
  font-family: var(--body);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

/* ─── BUTTONS ─── */
.btn-teal {
  display: inline-block;
  background: var(--teal-mid);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  border-radius: 3px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-teal:hover { background: var(--teal); }
.btn-outline-teal {
  display: inline-block;
  border: 2px solid var(--teal-mid);
  color: var(--teal-mid);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.4rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-teal:hover { background: var(--teal-mid); color: var(--white); }

/* ─── FORMS ─── */
.form-wrap {
  background: var(--teal-light);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 680px;
  margin-top: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid #c8e0dc;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal-mid); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 0.25rem;
}
.radio-group label {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.radio-group input[type="radio"] { accent-color: var(--teal-mid); }
.form-success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success-msg .check {
  font-size: 2.5rem;
  color: var(--teal-mid);
  display: block;
  margin-bottom: 0.75rem;
}
.form-success-msg p {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--teal);
}

/* ─── FOOTER ─── */
footer {
  background: var(--teal);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--white); color: var(--white); }
.footer-bottom {
  max-width: 1000px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-inner { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Footer logo as image */
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer-logo-link img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  display: block;
}
