/* =====================================================
   notFishe — Design Tokens & Global Styles
   ===================================================== */

:root {
  --ocean-indigo:   #3046B3;
  --cream-foam:     #F8F2E8;
  --taiyaki-orange: #F29A2E;
  --ink-navy:       #1F2552;
  --sky-pop-blue:   #39B5E8;
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream-foam);
  color: var(--ink-navy);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Fredoka', sans-serif;
}

h4, h5, h6 { 
  font-family: 'Fredoka', sans-serif; 
}

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

a { 
  text-decoration: none; 
  color: inherit; 
}

/* --- GLOBAL NAV --- */
.notfishe-nav {
  position: sticky; top: 0; width: 100%; z-index: 100;
  background-color: var(--cream-foam);
  border-bottom: 1px solid rgba(31, 37, 82, 0.1);
  transition: transform 250ms ease;
}
.notfishe-nav.nav-hidden { transform: translateY(-100%); }

.nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 90px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-link { font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--ink-navy); font-size: 1rem; transition: color 0.2s ease; }
.nav-link:hover { color: var(--ocean-indigo); }
.nav-link.active { color: var(--ocean-indigo); font-weight: 700; }

.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-hamburger { display: block; width: 24px; height: 2px; background-color: var(--ink-navy); position: relative; }
.nav-hamburger::before, .nav-hamburger::after { content: ''; position: absolute; width: 24px; height: 2px; background-color: var(--ink-navy); left: 0; }
.nav-hamburger::before { top: -6px; }
.nav-hamburger::after  { top:  6px; }
.nav-mobile-dropdown { display: none; flex-direction: column; background-color: var(--cream-foam); border-top: 1px solid rgba(31, 37, 82, 0.1); position: absolute; top: 100%; left: 0; width: 100%; list-style: none; }
.nav-mobile-dropdown.open { display: flex; }
.nav-mobile-dropdown .nav-link { display: block; padding: 1rem 2rem; border-bottom: 1px solid rgba(31, 37, 82, 0.05); }

@media (max-width: 768px) { 
  .nav-links { display: none; } 
  .nav-mobile-toggle { display: block; } 
  .nav-container { padding: 1rem; } 
  .nav-logo-img { height: 65px; } 
}

/* --- COMMON UI ELEMENTS --- */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ocean-indigo); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--ocean-indigo); border-radius: 2px; }

.divider { border: none; border-top: 1px solid rgba(31, 37, 82, 0.1); margin: 3rem 0; }

.card-pill {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--ocean-indigo);
  color: var(--cream-foam);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

/* --- BUTTONS --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--taiyaki-orange);
  color: var(--ink-navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  border: 2px solid var(--taiyaki-orange);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.btn-cta:hover {
  transform: scale(1.02);
  background-color: #d98a28;
  border-color: #d98a28;
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 2px solid var(--ocean-indigo);
  color: var(--ocean-indigo);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 1rem 2.5rem; border-radius: 9999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn-outline:hover { 
  background-color: var(--ocean-indigo); 
  color: var(--cream-foam); 
  transform: scale(1.02);
}

/* --- FOOTER --- */
.site-footer { 
  background: var(--ocean-indigo); 
  color: var(--cream-foam); 
  font-family: 'DM Sans', sans-serif; 
  padding: 24px 48px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  font-size: 0.9rem; 
}
.site-footer a { color: var(--cream-foam); text-decoration: none; opacity: 0.9; transition: opacity 0.2s; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }
.footer-links { display: flex; gap: 1.25rem; }

@media (max-width: 768px) { 
  .site-footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; } 
}
