/* Pescado Roatan — Custom Stylesheet */
/* Framework: Bootstrap 5 | Theme: Tropical Caribbean Deep */

:root {
  --ocean-deep: #0d2b45;
  --ocean-mid: #1a4a72;
  --ocean-bright: #1a7fad;
  --ocean-light: #2ec4e8;
  --sand-gold: #d4a843;
  --sand-warm: #f0c06a;
  --coral-accent: #e05c3a;
  --reef-green: #2a7d5e;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --text-dark: #1a2633;
  --text-mid: #4a5f72;
  --text-light: #7a8fa0;
  --border-light: #dde8ef;
  --shadow-soft: 0 4px 24px rgba(13, 43, 69, 0.10);
  --shadow-card: 0 2px 12px rgba(13, 43, 69, 0.08);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ocean-deep);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; font-weight: 600; color: var(--ocean-mid); margin-top: 1.75rem; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.15rem; }

a { color: var(--ocean-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral-accent); text-decoration: underline; }

strong { color: var(--ocean-deep); }

/* ─── NAVBAR ────────────────────────────────────────────── */
.site-nav {
  background: var(--ocean-deep);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.site-nav .navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white) !important;
  padding: 1rem 0;
}

.site-nav .navbar-brand span {
  color: var(--sand-gold);
}

.site-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.2rem 1rem !important;
  transition: color 0.2s, background 0.2s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--sand-gold) !important;
  background: rgba(255,255,255,0.06);
}

.site-nav .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  padding: 4px 8px;
}

.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ocean-deep);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,69,0.90) 0%, rgba(13,43,69,0.35) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 4rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: var(--sand-gold);
  color: var(--ocean-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.hero p.lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,164,217,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p.lead {
  color: rgba(255,255,255,0.80);
  font-size: 1.1rem;
  max-width: 640px;
}

.breadcrumb-item, .breadcrumb-item a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.breadcrumb-item.active { color: var(--sand-gold); }

.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: rgba(255,255,255,0.4);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary-fish {
  background: var(--sand-gold);
  color: var(--ocean-deep);
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary-fish:hover {
  background: var(--sand-warm);
  color: var(--ocean-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.35);
  text-decoration: none;
}

.btn-outline-fish {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.75rem;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-fish:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

/* ─── SECTION LAYOUT ─────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--off-white); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean-bright);
  margin-bottom: 0.5rem;
}

/* ─── CARDS ──────────────────────────────────────────────── */
.fish-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
  border: 1px solid var(--border-light);
}

.fish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.fish-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.fish-card-body {
  padding: 1.5rem;
}

.fish-card-body h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--ocean-deep);
}

/* ─── SPECIES / CHARTER FEATURE BLOCKS ──────────────────── */
.species-badge {
  display: inline-flex;
  align-items: center;
  background: var(--ocean-deep);
  color: var(--sand-gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.charter-option {
  border-left: 4px solid var(--ocean-bright);
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.charter-option h3 {
  color: var(--ocean-mid);
  margin-top: 0;
  font-size: 1.25rem;
}

.price-tag {
  display: inline-block;
  background: var(--reef-green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

/* ─── STAT / HIGHLIGHT ROW ───────────────────────────────── */
.stat-row {
  background: var(--ocean-deep);
  color: var(--white);
  padding: 3.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--sand-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── GALLERY GRID ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ─── SEASON TABLE ───────────────────────────────────────── */
.season-table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.season-table th {
  background: var(--ocean-deep);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.season-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.season-table tr:nth-child(even) td {
  background: var(--off-white);
}

.season-table tr:last-child td {
  border-bottom: none;
}

/* ─── INLINE IMAGE ───────────────────────────────────────── */
.content-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  margin: 1.5rem 0 2rem;
  object-fit: cover;
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ocean-mid);
  margin-bottom: 0.4rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--ocean-bright);
  box-shadow: 0 0 0 3px rgba(26,127,173,0.15);
}

.btn-submit {
  background: var(--ocean-mid);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--ocean-bright);
  transform: translateY(-1px);
}

/* ─── PRICING TABLE ──────────────────────────────────────── */
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pricing-table th {
  background: var(--ocean-mid);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.pricing-table tr:nth-child(even) td { background: var(--off-white); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price { font-weight: 700; color: var(--reef-green); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.site-footer h5 {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--sand-gold);
  text-decoration: none;
}

.footer-tagline {
  color: var(--sand-gold);
  font-style: italic;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ─── IMAGES ─────────────────────────────────────────────── */
img { max-width: 100%; height: auto; }

.hero-img-inline {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  max-height: 420px;
}

/* ─── CONSERVATION CALLOUT ───────────────────────────────── */
.callout-box {
  background: linear-gradient(135deg, var(--reef-green), #1e5e48);
  color: var(--white);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}

.callout-box h3 { color: var(--white); margin-top: 0; }
.callout-box a { color: var(--sand-warm); }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-ocean { color: var(--ocean-bright) !important; }
.text-gold { color: var(--sand-gold) !important; }
.bg-ocean-deep { background: var(--ocean-deep) !important; }
.divider { border: none; border-top: 2px solid var(--border-light); margin: 2.5rem 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { min-height: 420px; }
  .section { padding: 3.5rem 0; }
  .stat-item .stat-number { font-size: 2.25rem; }
  .hero-content { padding: 2rem 0 3rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}
