/**
 * Header & Footer CSS
 * Extracted from style.css
 * Non-responsive base styles for header and footer components
 */

/* --- HEADER STYLES --- */

@import url("https://use.typekit.net/ucp2dpp.css");

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Lexend:wght@300;400;500;600;700&display=swap");

:root {
  /* --- Core Palette (9 Key Colors) --- */

  --clr-navy-primary: #1c3f95;

  --clr-red-accent: #e63946;

  --clr-gold-highlight: #ffd700;

  --clr-text-main: #102b4e;

  --clr-text-slate: #4a5565;

  --clr-bg-soft-blue: #e3eef9;

  --clr-bg-neutral: #f9fafb;

  --clr-bg-white: #ffffff;

  --clr-medium-blue: #5c77b5;

  --clr-header-link: #504d43;

  --clr-grey: #6c85bd;

  /* --- Typography Families --- */

  --ff-heading: "peachy-keen-jf", sans-serif;

  --ff-body: "Open Sans", sans-serif;

  /* --- Font Sizes (Tokens) --- */

  --fs-display: 78px;

  --fs-h1: 48px;

  --fs-h2: 32px;

  --fs-h3: 20px;

  --fs-h4: 18px;

  --fs-body: 17px;

  --fs-base: 16px;

  --fs-sm: 14px;

  /* --- Spacing & Layout --- */

  --container: 1220px;

  --radius-full: 50px;

  --radius-lg: 16px;

  --radius-md: 8px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;
}

/* Scroll offset for fixed header on anchor navigation */

section[id] {
  scroll-margin-top: 20px;
}

body {
  width: 100%;

  background-color: var(--clr-bg-white);

  color: var(--clr-text-slate);

  font-family: var(--ff-body);

  font-size: var(--fs-body);

  -webkit-font-smoothing: antialiased;

  overflow-x: hidden;
}

p,
ul,
ol {
  margin: 0;

  padding: 0;

  list-style: none;
}

a {
  text-decoration: none;

  color: inherit;

  transition: var(--transition);
}

a:focus-visible {
  outline: none !important;
}

/* 

   --- LAYOUT UTILITIES --- 

*/

.tt-container {
  width: 100%;

  max-width: var(--container);

  margin: 0 auto;
}

.row {
  display: flex;

  flex-wrap: wrap;

  margin: 0;
}

.row > * {
  padding-left: 0;

  padding-right: 0;
}

.post,
.page {
  margin: 0;
}

/* 

   --- TYPOGRAPHY --- 

*/

h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);

  color: var(--clr-text-main);

  font-weight: 400;

  margin: 0;
}

.main-header {
  background-color: var(--clr-bg-white);
  padding: 29px 0;
  transition: all 0.4s ease;
  z-index: 1050;
  border-bottom: 2px solid var(--clr-bg-soft-blue);
}

.header-logo {
  width: auto;
  transition: var(--transition);
}

.navbar-nav li {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--clr-header-link);
  position: relative;
  transition: var(--transition);
  padding: 0;
}

/* --- PLAYFUL MOBILE MENU --- */

.tt-toggler-icon {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.tt-toggler-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--clr-navy-primary);
  border-radius: 10px;
  transition: var(--transition);
}

/* Toggler animation on open */

.navbar-toggler[aria-expanded="true"] .tt-toggler-icon span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .tt-toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .tt-toggler-icon span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- FOOTER STYLES --- */

.main-footer {
  background-color: var(--clr-navy-primary);
  padding: 80px 0 60px;
  color: var(--clr-bg-white);
  font-family: var(--ff-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-grid h2 {
  color: var(--clr-gold-highlight);
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  margin-bottom: 20px;
}

.footer-grid h3 {
  color: var(--clr-gold-highlight);
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  margin-bottom: 25px;
}

.footer-grid p {
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 530px;
  opacity: 0.8;
  color: #ffffffcc;
}

.footer-grid ul {
  list-style: disc;
  padding-left: 0;
  margin-left: 20px;
}

.footer-grid li {
  margin-bottom: 6px;
  font-size: var(--fs-body);
  opacity: 0.9;
}

.footer-grid li a {
  color: #ffffffcc;
  transition: color 0.3s ease;
}

.footer-grid li a:hover {
  color: var(--clr-gold-highlight);
}

/* Yellow dot markers for ul li as requested */

.footer-grid li::marker {
  color: var(--clr-red-accent);
  font-size: 1.2em;
}

.main-footer hr {
  border: 0;
  background-color: var(--clr-gold-highlight);
  margin: 40px 0;
  opacity: 1;
    height: 1px;
}

.footer-bottom p {
  font-size: var(--fs-sm);
  opacity: 0.6;
  color: var(--clr-bg-white);
}

/* --- HEADER NAVIGATION ICONS --- */

.flexrow {
  display: flex;

  grid-gap: 10px;

  margin-left: 30px;
}

.iconlink {
  display: flex;
  align-items: center;
}

.iconlink a {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.iconlink a:hover {
  transform: scale(1.1);
}

.iconlink img {
  max-width: 24px;
  height: auto;
}

.shoplink {
  display: flex;
  align-items: center;
}

.shoplink a {
  transition: all 0.3s ease;
}

.button-shop {
  background-color: var(--clr-red-accent);
  color: var(--clr-bg-white);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-shop:hover {
  background-color: var(--clr-navy-primary);
}
.flexrow {
    display: flex;
    grid-gap: 10px;
    margin-left: 30px;
}
.iconlink a {
    border-radius: 30px;
    background: var(--clr-bg-soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
a.button-shop {
    background-color: var(--clr-red-accent);
 
  color: var(--clr-bg-white);
  font-family: var(--ff-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  padding: 6px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: none;
  position: relative;
  overflow: hidden;
}

a.button-shop::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--clr-bg-white);
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.3s ease;
}

a.button-shop:hover {
 background-color: var(--clr-navy-primary);
  color: var(--clr-bg-white);
}

a.button-shop:hover::after {
  transform: translateX(5px);
}