/* Fishtelizer static site — shared styles */

:root {
  --deep-teal: #0e3b3e;
  --ocean-blue: #14586b;
  --seafoam: #4fa39a;
  --sand: #f6f1e7;
  --coral: #e0673f;
  --ink: #1c2624;
  --muted: #5b6866;
  --white: #ffffff;
  --radius: 10px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--deep-teal);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

a { color: var(--ocean-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top announcement bar */
.announce {
  background: var(--deep-teal);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 12px;
  letter-spacing: 0.02em;
}

/* Header / nav */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid #e4ddcb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 20px;
}

.logo {
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--deep-teal);
  white-space: nowrap;
}
.logo span { color: var(--coral); }

nav.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
}
nav.main-nav a { color: var(--ink); }
nav.main-nav .dropdown { position: relative; }
nav.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #e4ddcb;
  border-radius: var(--radius);
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
nav.main-nav .dropdown:hover .dropdown-menu { display: block; }
nav.main-nav .dropdown-menu a {
  display: block;
  padding: 8px 18px;
  font-weight: 500;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.hero img { border-radius: var(--radius); }
.btn {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn:hover { background: #c95530; text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--deep-teal);
  color: var(--deep-teal);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  padding: 40px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.feature-grid figure { margin: 0; }
.feature-grid img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 10px; }
.feature-grid h4 { font-size: 0.95rem; margin: 0; color: var(--ink); }

section.block {
  padding: 50px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
section.block.alt { background: var(--white); max-width: 100%; }
section.block.alt > .container { max-width: var(--max-width); margin: 0 auto; padding: 50px 24px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* Products grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e4ddcb;
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-card .pc-body { padding: 16px 18px 22px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.price {
  font-weight: 700;
  color: var(--coral);
}
.price s { color: var(--muted); font-weight: 400; margin-left: 8px; }

/* Stat strip */
.stat-strip {
  background: var(--ocean-blue);
  color: var(--white);
  text-align: center;
  padding: 40px 24px;
}
.stat-strip .stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Footer */
footer.site-footer {
  background: var(--deep-teal);
  color: #d9e6e2;
  padding: 50px 24px 20px;
  margin-top: 40px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto 30px;
}
footer h5 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: #cfe3de; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 18px;
  font-size: 0.8rem;
  color: #a9c2bc;
}

/* Product page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.product-detail img.main-shot { border-radius: var(--radius); }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.spec-table td, .spec-table th {
  border: 1px solid #e4ddcb;
  padding: 8px 12px;
  font-size: 0.9rem;
  text-align: left;
}
.spec-table th { background: #f0ead9; }

.faq-item { border-bottom: 1px solid #e4ddcb; padding: 18px 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.badge {
  background: #eef4f0;
  color: var(--deep-teal);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 780px) {
  .hero, .two-col, .product-detail { grid-template-columns: 1fr; }
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  nav.main-nav { gap: 14px; }
}
