/* VIVillaMan shared stylesheet */
:root {
  --turquoise: #00B8C8;
  --coral: #FF6F61;
  --sand: #F4E1C1;
  --sand-light: #fbf3e2;
  --sand-warm: #ede0c0;
  --deep-blue: #004E64;
  --deep-blue-soft: #0a6580;
  --slate: #4A4A4A;
  --slate-soft: #6b6b6b;
  --white: #FFFFFF;
  --line: rgba(74, 74, 74, 0.14);
  --line-strong: rgba(74, 74, 74, 0.22);
  --shadow-sm: 0 1px 2px rgba(0, 78, 100, 0.05), 0 2px 8px rgba(0, 78, 100, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 78, 100, 0.1), 0 12px 32px rgba(0, 78, 100, 0.07);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--sand-light);
  color: var(--slate);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0, 184, 200, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 111, 97, 0.04) 0%, transparent 45%);
  z-index: 0;
}
.app { position: relative; z-index: 1; }

/* ===== HEADER + NAV ===== */
header.site-header {
  padding: 18px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 2px rgba(0, 78, 100, 0.04);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-icon { width: 38px; height: 38px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400; font-size: 22px;
  color: var(--deep-blue); line-height: 1;
  letter-spacing: -0.005em;
}
.brand-tag { font-size: 11px; color: var(--slate-soft); margin-top: 3px; }

nav.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
nav.main-nav a {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
nav.main-nav a:hover {
  background: var(--sand-light);
  color: var(--deep-blue);
}
nav.main-nav a.active {
  background: var(--deep-blue);
  color: var(--white);
}
nav.main-nav a.external::after {
  content: '↗';
  font-size: 11px;
  opacity: 0.6;
  margin-left: 2px;
}
nav.main-nav .call-cta {
  background: var(--turquoise);
  color: var(--deep-blue) !important;
  margin-left: 6px;
  font-weight: 700;
}
nav.main-nav .call-cta:hover {
  background: var(--deep-blue);
  color: var(--white) !important;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--deep-blue);
  padding: 4px 8px;
}

/* ===== GENERIC PAGE HERO (for non-home pages) ===== */
.page-hero {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-soft));
  color: var(--white);
  border-bottom: 4px solid var(--turquoise);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--turquoise);
  font-weight: 600;
  margin-bottom: 8px;
}
.page-hero h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  max-width: 780px;
}
.page-hero h1 .accent { color: var(--turquoise); font-style: italic; }
.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px;
  max-width: 640px;
  line-height: 1.6;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 28px;
}
.section-header h2 {
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--deep-blue);
  font-weight: 400;
  margin-bottom: 6px;
}
.section-header h2 .accent { color: var(--turquoise); font-style: italic; }
.section-header p {
  color: var(--slate-soft);
  font-size: 14px;
  max-width: 620px;
}

/* ===== CARD GRIDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-image {
  aspect-ratio: 16/10;
  background: var(--sand-warm);
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-image img { transform: scale(1.06); }
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--coral);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card-badge.sand { background: var(--sand); color: var(--deep-blue); }
.card-badge.turquoise { background: var(--turquoise); color: var(--deep-blue); }
.card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--deep-blue);
  font-weight: 400;
  margin-bottom: 4px;
}
.card-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-soft);
  font-weight: 600;
  margin-bottom: 10px;
}
.card-desc {
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.55;
  flex: 1;
}
.card-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.card-price {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--turquoise);
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  border-radius: 7px;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 9px 16px;
  font-size: 13px;
}
.btn-primary { background: var(--deep-blue); color: var(--white); }
.btn-primary:hover { background: var(--turquoise); color: var(--deep-blue); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: #e85a4d; }
.btn-ghost {
  background: transparent;
  color: var(--deep-blue);
  border: 1px solid var(--deep-blue);
}
.btn-ghost:hover { background: var(--deep-blue); color: var(--white); }

/* ===== CALL BANNER ===== */
.call-banner {
  background: var(--sand);
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--deep-blue);
  border-bottom: 1px solid var(--line);
}
.call-banner strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}
.call-banner a {
  background: var(--coral);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.call-banner a:hover { background: #e85a4d; }

/* ===== FOOTER ===== */
footer.site-footer {
  background: var(--deep-blue);
  color: var(--sand);
  padding: 32px 40px;
  margin-top: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.footer-brand-block { display: flex; flex-direction: column; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-icon { width: 32px; height: 32px; }
.footer-text-name { font-family: Georgia, serif; font-size: 20px; }
.footer-text-tag {
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--turquoise);
  margin-top: 2px;
}
.footer-contact { font-size: 13px; opacity: 0.85; line-height: 1.7; }
.footer-contact a { color: var(--sand); text-decoration: none; }
.footer-contact a:hover { color: var(--turquoise); }

.footer-col h4 {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--turquoise);
  margin-bottom: 12px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; font-size: 13px; }
.footer-col ul li a { color: var(--sand); text-decoration: none; opacity: 0.85; }
.footer-col ul li a:hover { color: var(--turquoise); opacity: 1; }

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 225, 193, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== WHATSAPP BANNER + FLOATING HYBRID ===== */
.whatsapp-banner {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.whatsapp-banner-text {
  font-weight: 500;
  letter-spacing: 0.01em;
}
.whatsapp-banner-text strong {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  margin-right: 6px;
}
.whatsapp-banner-btn {
  background: white;
  color: #128C7E;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.whatsapp-banner-btn:hover {
  background: #f0fdf7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.whatsapp-banner-btn svg { width: 16px; height: 16px; }

/* Subtle floating button — hidden initially, fades in on scroll */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  background: #25D366;
  color: white;
  border-radius: 999px;
  width: 52px;
  height: 52px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.22s ease, box-shadow 0.22s ease;
  border: 2px solid white;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.whatsapp-float.visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.whatsapp-float:hover {
  background: #1ebe5b;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 3px 8px rgba(0, 0, 0, 0.15);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

/* ===== HOMEPAGE SEO CONTENT SECTION ===== */
.seo-content {
  background: var(--white);
  padding: 56px 40px;
  border-top: 1px solid var(--line);
}
.seo-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.seo-header {
  text-align: center;
  margin-bottom: 40px;
}
.seo-header h2 {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--deep-blue);
  font-weight: 400;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto;
}
.seo-header h2 .accent { color: var(--turquoise); font-style: italic; }
.seo-header p {
  color: var(--slate-soft);
  font-size: 15px;
  margin-top: 10px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.seo-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}
.seo-col h3 {
  font-family: Georgia, serif;
  font-size: 19px;
  color: var(--deep-blue);
  font-weight: 400;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--turquoise);
  display: inline-block;
}
.seo-col p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.seo-col p:last-child { margin-bottom: 0; }
.seo-col p strong { color: var(--deep-blue); font-weight: 600; }
.seo-footer-note {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 4px solid var(--turquoise);
}
.seo-footer-note h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--deep-blue);
  font-weight: 400;
  margin-bottom: 8px;
}
.seo-footer-note p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}
.seo-footer-note p a {
  color: var(--deep-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--turquoise);
}
.seo-footer-note p a:hover { color: var(--turquoise); }
@media (max-width: 600px) {
  .seo-content { padding: 32px 20px; }
  .seo-cols { gap: 24px; }
}


/* ===== GUIDE/LIST PAGES (restaurants) ===== */
.guide-intro {
  background: var(--white);
  padding: 32px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.guide-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 780px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header.site-header { padding: 14px 20px; }
  nav.main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a {
    width: 100%;
    justify-content: flex-start;
  }
  .mobile-nav-toggle { display: block; }
  .page-hero, .content-section, .call-banner { padding-left: 20px; padding-right: 20px; }
  .page-hero { padding-top: 40px; padding-bottom: 40px; }
  footer.site-footer { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
