@charset "UTF-8";
/* ============================================================
   index.css — IKANIKON HOME PAGE
   ============================================================ */

/* Base imports */
@import url("global-tokens.css");

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--burgundy);
  font-size: 18px;
  margin: 0;
  background: var(--reiki);
}

/* ===================== LINKS ===================== */
a {
  color: var(--turquoise);
  font-weight: 700;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--sienna);
}

/* ===================== HEADER ===================== */
header.primary-header {
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.primary-header-top {
  width: 100%;
  padding: .6rem 1.5rem;
  border-bottom: 1px solid rgba(255, 249, 208, 0.25);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0px solid var(--reiki);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================== HERO + BREADCRUMB ===================== */
.page-hero {
  background-color: var(--burgundy);
  width: 100%;
}

.page-hero-breadcrumb {
  background: var(--burgundy);
  color: var(--canvas);
  padding: 30px;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

.page-hero-breadcrumb h1 {
  font-size: 2.2rem;
  font-weight: 900;
}

/* ===================== MAIN LAYOUT ===================== */
main.primary-main {
  background: var(--burgundy);
  width: 100%;
}

/* All primary sections share the same shell */
.primary-section {
  width: 100%;
  padding: 50px 50px 50px 50px;
  color: var(--charcoal);
  background-color: var(--reiki);
}

/* Optional alt background if you use it */
.primary-section.primary-section-alt {
  background-color: var(--reiki);
}

/* Constrain inner content so nothing hugs the edges on big screens */
.primary-section > .primary-grid,
.primary-section > .creator-showcase,
.primary-section > .gradient-hero-inner,
.primary-section > p,
.primary-section > h2 {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================== CARDS (SNAPSHOT SECTION) ===================== */
.primary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-content: center;
}

@media (max-width: 700px) {
  .primary-grid {
    grid-template-columns: 1fr;
  }
}

.primary-card {
  background: var(--burgundy);
  color: var(--reiki);
  border: 1px solid rgba(255, 249, 208, 0.15);
  border-radius: var(--radius);
  padding: 20px 20px 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

/* Snapshot image container */
.primary-card-item {
  width: 100%;
  max-width: 40%;          /* make this larger or smaller, keeps them from stretching too wide */
  border-radius: 14px;
  overflow: hidden;
  background: var(--canvas);
  display: block;
  margin-bottom: 16px;
}

/* The image inside the card */
.primary-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  padding: 0.7rem 1.4rem;
  font-weight: 900;
  border-radius: 999px;
  transition: all .2s ease;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--burgundy);
}

/* ===================== CREATOR SHOWCASE COLLAGE ===================== */

.creator-showcase {
  max-width: 100%;
  margin: 0 auto;
}

.creator-showcase-collage {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--reiki);
}

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Each collage item */
.collage-item {
  width: 100%;  /* width of images across */
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--canvas);
  display: flex;
}

/* The images inside */
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption under the collage */
.collage-caption {
  max-width: 100%;  /* text under the top images */
  font-family: var(--font-primary);
  color: var(--ink);
  font-size: 13px;
}

/* ===================== ADDITIONAL SECTIONS ===================== */

.collage-two {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--burgundy);
    padding: 20px 20px 20px 20px;   /* breathing room */
  gap: 20px;
}

.caption-two {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--canvas);
  font-size: var(--font-size-base);
}

.collage-two-inner {
    width: 80%;        /* safe, responsive breathing room */
    margin: 0 auto;    /* centers the content */
    padding: 20px 20px 20px 20px;   /* breathing room */
}

.collage-three {
  width: 100%;
  display: flex;
  background: var(--charcoal);
  padding: 20px 20px 20px 20px;
  gap: 20px;
}

.caption-three {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--reiki);
  font-size: var(--font-size-base);
}

.collage-three-inner {
    width: 80%;        /* safe, responsive breathing room */
    margin: 0 auto;    /* centers the content */
    padding: 20px 20px 20px 20px;   /* optional vertical breathing room */
}

/* ===================== FOOTER ===================== */
footer.primary-footer {
  background: var(--burgundy);
  padding: 3rem 1.5rem;
  color: var(--reiki);
}

.primary-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

.primary-footer-col strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

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

@media (max-width: 900px) {
  .primary-footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .primary-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp .6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Kill unused middle-nav remnants */
.middle-nav,
.middle-nav-inner,
.middle-submenu,
.middle-nav-group {
  display: none !important;
}
