/* ============================================================
   MIXIES — Global Stylesheet
   mixiesdrinks@gmail.com | 571-255-9150
   ============================================================ */

/* ── FONTS ── */
@font-face {
  font-family: 'Bounded';
  src: url('fonts/Bounded-ExtraLight.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Bounded';
  src: url('fonts/Bounded-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Bounded';
  src: url('fonts/Bounded-Black.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

/* ── BRAND COLORS ── */
:root {
  --sunday-morning: #deac35;
  --pottery-class:  #ce776d;
  --park-lake:      #016277;
  --new-denim:      #054d77;
  --no-yolk:        #f7f1e5;
  --pancakes:       #ebd9c4;
  --font: 'Bounded', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--pancakes);
  color: var(--new-denim);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--sunday-morning);
  border-bottom: 3px solid var(--new-denim);
  padding: 0.75rem 1.5rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.nav-logo { height: 36px; width: 36px; display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 100%; width: 100%; }
.nav-links { display: flex; gap: 0.2rem; list-style: none; align-items: center; }
.nav-link {
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--new-denim);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.nav-link:hover { background: var(--new-denim); color: var(--no-yolk); }
.nav-link.active { background: var(--new-denim); color: var(--no-yolk); }
.nav-cta { background: var(--pottery-class) !important; color: var(--no-yolk) !important; font-weight: 800; }
.nav-cta:hover { background: var(--new-denim) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 2px solid var(--new-denim);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span { width: 14px; height: 2px; background: var(--new-denim); display: block; }

@media (max-width: 640px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 2px);
    right: 1rem;
    background: var(--sunday-morning);
    border: 3px solid var(--new-denim);
    border-radius: 14px;
    padding: 0.75rem;
    min-width: 180px;
    box-shadow: 4px 4px 0 var(--new-denim);
  }
  .nav-links.open { display: flex; }
  .nav-link { text-align: center; font-size: 0.85rem; padding: 0.6rem 1rem; }
}
@media (max-width: 860px) and (min-width: 641px) {
  .nav-link { font-size: 0.7rem; padding: 0.35rem 0.6rem; }
}

/* ── SWOOP DIVIDERS ── */
.swoop { display: block; width: 100%; overflow: hidden; line-height: 0; position: relative; z-index: 3; }
.swoop svg { display: block; width: 100%; height: 90px; }
@media (max-width: 600px) { .swoop svg { height: 55px; } }

/* ── SHARED SECTION LAYOUT ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.section-label {
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 1.25rem;
  display: block;
}
.section-heading {
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: .88;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.section-body {
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 1.1rem;
}
.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
@media (max-width: 400px) {
  .btn-row { flex-direction: column; }
  .btn-row .btn { text-align: center; justify-content: center; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .2s var(--bounce), box-shadow .2s var(--ease);
  box-shadow: 4px 4px 0 var(--new-denim);
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--new-denim); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--new-denim); }
.btn-cream   { background: var(--no-yolk);        color: var(--new-denim); }
.btn-navy    { background: var(--new-denim);       color: var(--no-yolk);  box-shadow: 4px 4px 0 var(--pottery-class); }
.btn-navy:hover { box-shadow: 6px 6px 0 var(--pottery-class); }
.btn-gold    { background: var(--sunday-morning);  color: var(--new-denim); }
.btn-teal    { background: var(--park-lake);        color: var(--no-yolk); }
.btn-red     { background: var(--pottery-class);   color: var(--no-yolk); }
.btn-outline-navy  { background: transparent; color: var(--new-denim); border: 2.5px solid var(--new-denim); box-shadow: 4px 4px 0 var(--new-denim); }
.btn-outline-cream { background: transparent; color: var(--no-yolk);  border: 2.5px solid var(--no-yolk);  box-shadow: 4px 4px 0 var(--park-lake); }

/* ── FOOTER ── */
.footer {
  background: var(--new-denim);
  color: var(--no-yolk);
  padding: 4rem 1.5rem 2rem;
  position: relative;
  z-index: 3;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.footer-logo { height: 38px; margin-bottom: 1rem; }
.footer-logo img { height: 100%; width: auto; }
.footer-col h4 {
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--no-yolk);
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--park-lake);
  padding-bottom: .4rem;
}
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: .45rem; }
.footer-col a { font-weight: 300; font-size: 0.85rem; color: var(--no-yolk); opacity: .75; transition: opacity .2s; }
.footer-col a:hover { opacity: 1; }
.footer-social { display: flex; gap: .6rem; margin-top: 0.85rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--park-lake);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .22s var(--bounce);
}
.social-btn svg { width: 15px; height: 15px; fill: var(--no-yolk); }
.social-btn:hover { background: var(--sunday-morning); border-color: var(--sunday-morning); transform: translateY(-3px) rotate(-8deg); }
.social-btn:hover svg { fill: var(--new-denim); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--park-lake);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--no-yolk);
  opacity: 0.5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .footer-inner { grid-template-columns: 1fr; } }

/* ── YIN-YANG BACKGROUND DECORATION ── */
.yy-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ── ANIMATIONS ── */
.pop { opacity: 0; }
.pop.visible { animation: pop-in .6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
@keyframes pop-in {
  0%   { opacity: 0; transform: scale(.94) translateY(18px); }
  60%  { transform: scale(1.02) translateY(-3px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes word-rise {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
