/*
Theme Name: Double DD Adventures
Theme URI: https://double-dd-adventures.example
Author: Double DD Adventures
Description: Aruba boat charter marketing theme with services gallery, interleaved reviews, and booking CTAs for WhatsApp/Instagram.
Version: 1.0
License: MIT
Text Domain: double-dd-adventures
*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #f8fafc;
  --bg-2: #eef2ff;
  --panel: #ffffff;
  --card: #ffffff;
  --accent: #10b981;
  --accent-2: #f97316;
  --muted: #475569;
  --text: #0f172a;
  --border: #e2e8f0;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.12), transparent 38%),
              radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.12), transparent 38%),
              linear-gradient(160deg, #ffffff, var(--bg-2) 60%, #e2f6ff 100%);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-2);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.wrap {
  width: min(1200px, 100% - 32px);
  margin: 0 auto;
}

.site-header {
  position: static;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button,
.button-ghost {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button:hover,
.button-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.28);
}

.button-ghost {
  background: rgba(15, 23, 42, 0.05);
  color: var(--text);
}

.icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: inline-block;
}

.hero {
  padding: 32px 0 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: var(--accent);
  font-weight: 700;
  width: fit-content;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hero p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 460px;
}

.badge-card {
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  gap: 6px;
}

.badge-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-visual {
  position: relative;
}

.hero-visual .panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.hero-visual .chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chip {
  padding: 8px 10px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  margin: 18px 0 32px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.section-header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.category-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.category-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.category-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.category-pill {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.category-top h3 {
  margin: 0;
  font-size: 1.2rem;
}

.category-top span {
  color: var(--muted);
  font-size: 0.95rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-item video {
  background: #000;
}

.media-item .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.review-highlight {
  margin: 18px 0;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(249, 115, 22, 0.12), rgba(16, 185, 129, 0.12));
  padding: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.review-highlight small {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c1c25;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  width: fit-content;
}

.review-highlight img {
  border: 1px solid var(--border);
  background: #fff;
  max-height: 320px;
  object-fit: contain;
}

.cta-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.1), rgba(249, 115, 22, 0.08));
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 16px 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.review-card img {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.subtle-text {
  color: var(--muted);
}

@media (min-width: 820px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
