/* ============================================================
   Frozen Fish Bait — Raffield Fisheries
   Mirroring design of raffieldfisheries.com/demo/
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:       #0d1f2d;
  --navy-deep:  #061a2e;
  --ocean:      #0a4f6d;
  --teal:       #1a6b8a;
  --gulf:       #2980b9;
  --gold:       #c8a84e;
  --gold-dark:  #a8852e;
  --gold-light: #e8c86e;
  --cream:      #f5e6c8;
  --cream-dark: #eedcb0;
  --sandy:      #d4b896;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-muted: #6c757d;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Open Sans', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cinzel Decorative', serif;

  --transition: all 0.35s ease;
  --shadow-gold: 0 8px 30px rgba(200, 168, 78, 0.25);
  --shadow-navy: 0 8px 30px rgba(13, 31, 45, 0.4);
}

/* ---- Base ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a { transition: var(--transition); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 1.2rem 0;
  z-index: 1050;
}

#mainNav.scrolled {
  background: rgba(13, 31, 45, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 0.6rem 0;
}

.nav-logo {
  height: 52px;
  width: auto;
  transition: var(--transition);
}

#mainNav.scrolled .nav-logo { height: 42px; }

#mainNav .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 1rem;
  position: relative;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 70%; }

#mainNav .nav-link:hover { color: var(--gold) !important; }

.navbar-toggler {
  border: 1px solid var(--gold);
  padding: 0.35rem 0.6rem;
}

.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='%23c8a84e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none;
  color: var(--navy-deep) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(200, 168, 78, 0.3);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 168, 78, 0.45);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy-deep) !important;
}

.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  color: var(--white) !important;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-xl { font-size: 1rem !important; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
section { position: relative; }

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.gold-divider-dark {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.text-gold { color: var(--gold) !important; }
.text-sandy { color: var(--sandy) !important; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--ocean) 45%, var(--teal) 75%, var(--gulf) 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 168, 78, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(41, 128, 185, 0.15) 0%, transparent 55%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 46, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   ABOUT / CREAM SECTION
   ============================================================ */
.section-cream {
  background-color: var(--cream);
  padding: 90px 0;
}

.lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 1.2rem;
}

.mission-quote {
  border-left: 4px solid var(--gold);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ocean);
  background: rgba(200, 168, 78, 0.08);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.about-img-wrap {
  position: relative;
  display: inline-block;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  box-shadow:
    0 0 0 2px var(--navy),
    0 0 0 5px var(--gold),
    var(--shadow-navy);
}

.about-logo-img {
  max-width: 260px;
  display: block;
  margin: 0 auto;
}

.about-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.1;
  box-shadow: var(--shadow-gold);
}

.badge-year { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-num  { font-size: 1.1rem; }

.stat-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--gold);
}

.stat-num {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--ocean);
  font-weight: 700;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* ============================================================
   BAIT CONTENT SECTION (dark)
   ============================================================ */
.section-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(41, 128, 185, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(200, 168, 78, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.section-dark .section-title { color: var(--white); }

.bait-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.bait-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 168, 78, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.bait-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.bait-card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.bait-card-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US (ocean)
   ============================================================ */
.section-ocean {
  background: linear-gradient(145deg, var(--ocean) 0%, var(--navy) 100%);
  padding: 90px 0;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(200, 168, 78, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.7rem;
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.why-card h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.section-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--ocean) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 168, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--navy-deep);
}

.contact-card h5 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-all;
}

.contact-link:hover { color: var(--gold-dark); }

.contact-addr {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.contact-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy-deep);
  position: relative;
}

.footer-wave {
  line-height: 0;
  background: var(--cream); /* matches the section above */
}

.footer-wave svg { width: 100%; display: block; }

.footer-body {
  padding: 70px 0 30px;
}

.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 168, 78, 0.3);
}

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

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  word-break: break-all;
}

.footer-contact-list a:hover { color: var(--gold); }

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.footer-copy,
.footer-credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer-credit a {
  color: rgba(200, 168, 78, 0.7);
  text-decoration: none;
}

.footer-credit a:hover { color: var(--gold); }

/* ============================================================
   SEO BLOG SECTION
   ============================================================ */
.section-blog {
  background: var(--white);
  padding: 90px 0;
}

/* --- Article --- */
.blog-article {
  background: var(--white);
  border: 1px solid #e8e0d0;
  border-radius: 14px;
  padding: 2.5rem 2.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.blog-article:last-child { margin-bottom: 0; }

.blog-article:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-article-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.blog-article-intro {
  font-size: 1.05rem;
  color: #3a4a5a;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e0d0;
}

/* Article body typography */
.blog-article-body { color: #2c3e50; line-height: 1.85; }

.blog-article-body p {
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}

.blog-article-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ocean);
  margin: 1.75rem 0 0.75rem;
}

.blog-article-body h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.4rem 0 0.6rem;
}

.blog-article-body ul,
.blog-article-body ol {
  padding-left: 1.4rem;
  margin-bottom: 1.1rem;
}

.blog-article-body li {
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}

.blog-article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(200, 168, 78, 0.07);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--ocean);
}

.blog-article-body strong { color: var(--navy); }

/* In-article CTA strip */
.blog-article-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e0d0;
}

.blog-article-cta p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* --- Sidebar --- */
.blog-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}

.sidebar-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
}

/* CTA card */
.sidebar-cta {
  background: linear-gradient(145deg, var(--navy) 0%, var(--ocean) 100%);
  box-shadow: var(--shadow-navy);
}

.sidebar-cta .sidebar-card-title {
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 168, 78, 0.3);
}

.sidebar-cta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

/* Quick facts card */
.sidebar-facts {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}

.sidebar-facts .sidebar-card-title {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
}

.sidebar-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-facts-list li:last-child { border-bottom: none; }

.sidebar-facts-list i {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact card */
.sidebar-contact {
  background: var(--white);
  border: 1px solid #e8e0d0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.sidebar-contact .sidebar-card-title {
  color: var(--navy);
  border-bottom: 1px solid #e8e0d0;
}

.sidebar-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.87rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0ebe0;
  line-height: 1.5;
}

.sidebar-contact-list li:last-child { border-bottom: none; }

.sidebar-contact-list i {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.sidebar-contact-list a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}

.sidebar-contact-list a:hover { color: var(--gold-dark); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-title { font-size: 2rem; }
  .hero-title    { font-size: 2.5rem; }
  .hero-content  { padding: 100px 0 60px; }

  #mainNav .navbar-collapse {
    background: rgba(13, 31, 45, 0.97);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(200, 168, 78, 0.2);
    margin-top: 0.5rem;
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 767.98px) {
  .section-cream,
  .section-dark,
  .section-ocean,
  .section-cta,
  .section-blog { padding: 60px 0; }

  .blog-sidebar { position: static; }
  .blog-article  { padding: 1.75rem 1.5rem; }

  .about-img-wrap { padding: 1.75rem 2rem; }
  .about-logo-img { max-width: 200px; }

  .hero-ctas .btn { width: 100%; justify-content: center; }

  .stat-num  { font-size: 1.1rem; }
  .stat-label { font-size: 0.65rem; }
}

@media (max-width: 575.98px) {
  .hero-title    { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .cta-title     { font-size: 1.6rem; }
}
