/* ============================================================
   WildAngler.pro — Main Stylesheet
   ============================================================ */

:root {
  --primary:   #0d6efd;
  --primary-dark: #0a58ca;
  --accent:    #20c997;
  --dark:      #0b1a2e;
  --dark2:     #112240;
  --mid:       #1a3558;
  --light-bg:  #f0f6ff;
  --text:      #e0eaf8;
  --text-muted:#8baac8;
  --white:     #ffffff;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #fff; text-decoration: underline; }

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

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,26,46,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(32,201,151,.2);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-logo img { width: 36px; height: 36px; border-radius: 6px; }

.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: var(--text); font-size: .95rem; font-weight: 500;
  text-decoration: none; transition: color .2s;
  padding: .3rem 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: .3s;
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.45);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: 1rem;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 1.15rem; max-width: 600px;
  color: #c8dff0; margin-bottom: 2rem;
}
.btn {
  display: inline-block; padding: .75rem 2rem;
  border-radius: var(--radius); font-weight: 700;
  font-size: 1rem; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.4); text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-accent  { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: #17a97e; color: var(--dark); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--dark); }

/* ── SECTIONS ── */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--white);
  margin-bottom: .5rem;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  color: var(--text-muted); font-size: 1.05rem;
  margin-bottom: 3rem; max-width: 700px;
}
.divider {
  width: 60px; height: 4px;
  background: var(--accent); border-radius: 2px;
  margin: .6rem 0 1.5rem;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--dark2); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.4rem; }
.card-badge {
  display: inline-block; font-size: .75rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 20px;
  background: rgba(32,201,151,.15); color: var(--accent);
  margin-bottom: .7rem; text-transform: uppercase; letter-spacing: .05em;
}
.card-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.card-text { color: var(--text-muted); font-size: .95rem; margin-bottom: 1rem; }
.card-meta { display: flex; gap: 1rem; font-size: .85rem; color: var(--text-muted); }
.stars { color: #f5c518; }

/* ── FEATURE LIST ── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.feature-item {
  background: var(--dark2); border-radius: var(--radius);
  padding: 1.5rem; text-align: center;
  border: 1px solid rgba(32,201,151,.1);
}
.feature-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.feature-item h3 { color: var(--white); margin-bottom: .4rem; }
.feature-item p { color: var(--text-muted); font-size: .9rem; }

/* ── WHEEL SECTION ── */
.wheel-section {
  background: var(--dark2);
  padding: 5rem 1.5rem;
}
.wheel-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.wheel-wrapper {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.wheel-bg-img {
  position: absolute; inset: -20px;
  background-size: cover; background-position: center;
  border-radius: 50%; filter: blur(4px) brightness(.3);
  z-index: 0;
}
#wheelCanvas {
  position: relative; z-index: 1;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(32,201,151,.3);
  max-width: 100%;
}
.wheel-pointer {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 30px solid var(--accent);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.wheel-info h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.wheel-info h2 span { color: var(--accent); }
.wheel-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
.wheel-result {
  background: var(--mid); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; margin-top: 1.5rem;
  min-height: 80px; display: flex; align-items: center;
  justify-content: center; text-align: center;
  border: 1px solid rgba(32,201,151,.2);
}
.wheel-result p { color: var(--text-muted); font-style: italic; }
.wheel-result .result-fish {
  font-size: 1.3rem; font-weight: 700; color: var(--accent);
}
.wheel-result .result-desc { color: var(--text-muted); font-size: .9rem; margin-top: .3rem; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--mid), var(--dark2));
  padding: 4rem 1.5rem; text-align: center;
}
.newsletter-section h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.newsletter-section p { color: var(--text-muted); margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; max-width: 520px; margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1; min-width: 220px; padding: .75rem 1.2rem;
  border-radius: var(--radius); border: 1px solid rgba(32,201,151,.3);
  background: rgba(255,255,255,.07); color: var(--white);
  font-size: 1rem; outline: none;
}
.newsletter-form input[type="email"]:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.contact-info h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: .8rem; margin-bottom: 1rem; align-items: flex-start; }
.contact-detail .icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-detail span { color: var(--text-muted); font-size: .95rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .9rem; color: var(--text-muted); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .75rem 1rem;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06); color: var(--white);
  font-size: 1rem; outline: none; font-family: inherit;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--dark2); }
.form-success {
  display: none; background: rgba(32,201,151,.15);
  border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 1rem 1.5rem; margin-top: 1rem; color: var(--accent);
  text-align: center;
}

/* ── REVIEWS PAGE ── */
.review-card {
  background: var(--dark2); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 320px 1fr;
  margin-bottom: 2.5rem;
}
.review-card-img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.review-card-body { padding: 2rem; }
.review-card-body h2 { font-size: 1.5rem; color: var(--white); margin-bottom: .4rem; }
.review-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.review-meta span { font-size: .85rem; color: var(--text-muted); }
.review-score {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(32,201,151,.15); color: var(--accent);
  padding: .3rem .9rem; border-radius: 20px; font-weight: 700;
  font-size: 1rem; margin-bottom: 1rem;
}
.review-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.tag {
  font-size: .78rem; padding: .25rem .7rem; border-radius: 20px;
  background: rgba(13,110,253,.15); color: var(--primary);
  border: 1px solid rgba(13,110,253,.3);
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-bottom: 4rem;
}
.about-img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-text h2 { font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

/* ── POLICY PAGES ── */
.policy-content {
  max-width: 860px; margin: 0 auto; padding: 4rem 1.5rem;
}
.policy-content h1 { font-size: 2.2rem; color: var(--white); margin-bottom: .5rem; }
.policy-content .updated { color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem; }
.policy-content h2 { font-size: 1.3rem; color: var(--accent); margin: 2rem 0 .7rem; }
.policy-content p, .policy-content li { color: var(--text-muted); margin-bottom: .8rem; line-height: 1.8; }
.policy-content ul, .policy-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content a { color: var(--accent); }

/* ── FOOTER ── */
.site-footer {
  background: #070f1c;
  border-top: 1px solid rgba(32,201,151,.1);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-brand p { color: var(--text-muted); font-size: .9rem; margin-top: .8rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: var(--text-muted); font-size: .9rem; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: var(--text-muted); font-size: .85rem;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark2);
  border-top: 2px solid var(--accent);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
#cookieBanner p { color: var(--text-muted); font-size: .9rem; flex: 1; min-width: 200px; }
#cookieBanner p a { color: var(--accent); }
.cookie-btns { display: flex; gap: .8rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--dark2); padding: .8rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: .5rem; align-items: center;
  font-size: .88rem; color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-inner .sep { color: rgba(255,255,255,.2); }
.breadcrumb-inner .current { color: var(--white); }

/* ── RATING BAR ── */
.rating-bar-wrap { margin-bottom: .6rem; }
.rating-bar-label { display: flex; justify-content: space-between; font-size: .85rem; color: var(--text-muted); margin-bottom: .25rem; }
.rating-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark2), var(--mid));
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(32,201,151,.15);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); font-weight: 800; }
.page-hero p { color: var(--text-muted); margin-top: .5rem; font-size: 1.05rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark2); padding: 1rem 1.5rem; gap: .5rem; border-bottom: 1px solid rgba(32,201,151,.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .wheel-container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .review-card { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}
