/* == ICONIX FONTS == */
@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Quicksand:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* == RESET == */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* == GLOBAL TEXT == */
body {
  font-family: "Poppins", sans-serif;
  background: #FFF9FD;
  color: #4a3e4f;
  line-height: 1.6;
}

h1 {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 2.7rem;
  color: #4a3e4f;
}

h2,
h3,
h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #4a3e4f;
}

p,
li,
span,
a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #4a3e4f;
}

/* == HEADER & NAV == */
.header {
  background: #FFEFF9;
  border-bottom: 2px solid #F4CBEA;
  padding: 14px 0 18px;
  text-align: center;
  min-height: 90px;
}

.site-logo {
  height: 68px;
  margin: 0 auto 8px;
  transition: 0.3s;
}

.site-logo:hover {
  filter: drop-shadow(0 0 6px rgba(214, 168, 255, 0.6));
}

.header ul.mod-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.header ul.mod-menu > li > a {
  font-size: 1rem;
  font-weight: 600;
  color: #7A4D87;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 22px;
  transition: 0.35s;
}

.header ul.mod-menu > li > a:hover {
  background: linear-gradient(135deg, #FFD9F2, #DAB7FF);
  color: #ffffff;
  box-shadow: 0 0 6px rgba(214, 168, 255, 0.55);
}

.header ul.mod-menu > li.current > a,
.header ul.mod-menu > li.active > a {
  background: #D6A8FF;
  color: #ffffff;
}

/* == HERO == */
.hero {
  background: linear-gradient(135deg, #FFD9F2, #E2D4FF);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 50px;
}

.hero-title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3rem;
  color: #4a3e4f;
  margin-bottom: 6px;
}

.hero-tagline {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.7px;
  color: #4a3e4f;
  margin-top: 6px;
}

/* == PAGE SECTIONS == */
.section {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 45px 40px;
  background: rgba(255, 230, 250, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  border: 1px solid rgba(255, 200, 255, 0.45);
  box-shadow: 0 8px 20px rgba(150, 110, 180, 0.13);
}

.section h1,
.section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.section p {
  font-size: 1.12rem;
  line-height: 1.7;
}

/* == BUTTONS == */
/* == BUTTONS == */
.btn {
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  font-weight: 600;
  color: #4b2e67;
  text-decoration: none;

  /* pill shape */
  border-radius: 999px;

  /* solid inside color */
  background: #d6a8ff;

  /* no real border, we fake it with ::before */
  border: none;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.25s ease;
}

/* Gradient border layer */
.btn::before {
  content: "";
  position: absolute;
  inset: -3px;                 /* thickness of the “border” */
  border-radius: inherit;      /* same pill shape */
  background: linear-gradient(
    90deg,
    #ffb7d6,
    #ffd98e,
    #c5ffdd,
    #b6c8ff,
    #e0a6ff
  );
  z-index: -1;
}

/* Gloss sheen effect */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  transform: skewX(-25deg);
  transition: left 0.45s ease;
}

/* Hover effect */
.btn:hover {
  transform: translateY(-3px);
}

/* Sheen slide on hover */
.btn:hover::after {
  left: 120%;
}

/* Click/active press animation */
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}

/* == FOOTER == */
.footer {
  text-align: center;
  padding: 30px;
  background: #FFEFF9;
  border-top: 2px solid #F4CBEA;
  font-size: 0.9rem;
  color: #6E4A76;
}

/* == CONTACT FORM == */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #4a3e4f;
  display: block;
  margin: 18px 0 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: #FFF9FD;
  border: 2px solid #F2D9FF;
  border-radius: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #4a3e4f;
  transition: 0.25s ease;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ad8ebe;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d6a8ff;
  box-shadow: 0 0 8px rgba(214, 168, 255, 0.55);
  background: #ffffff;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
}

/* Form button already styled by .btn */
.contact-form .btn {
  margin-top: 24px;
}

/* Home Images */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;  /* space between categories */
  margin-top: 40px;
}

.feature-card {
  text-align: center;
  max-width: 700px;
}

.feature-card h3 {
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.feature-images-row {
  display: flex;
  justify-content: center;
  gap: 32px; /* space between the two images */
  margin-bottom: 14px;
}

.feature-images-row img {
  width: 260px;      /* big but aesthetic */
  height: auto;      /* keeps aspect ratio — hoodie FIXED */
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.feature-images-row img:hover {
  transform: scale(1.04);
}

/* Make all apparel images same general scale */
.feature-images-row img {
  width: 260px;
  height: auto;
  border-radius: 14px; /* rounded corners for consistency */
  transition: transform 0.25s ease;
}

/* Slight visual correction only for the black hoodie */
.hoodie-img {
  width: 280px;
  max-height: 480px;
  object-fit: contain;
}

/* Catolog Page */
.catalog-page {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.catalog-page h1 {
  text-align: center;
  margin-bottom: 8px;
}

.catalog-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #7d6c8f;
}

.catalog-intro-block {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: left;
}

.catalog-intro-block h2 {
  margin-bottom: 6px;
}

.catalog-section {
  text-align: center;
  margin-bottom: 70px;
}

.catalog-section h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.catalog-subtitle {
  margin-bottom: 24px;
  color: #8a739f;
}

/* CAROUSEL SHELL */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-item {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

/* Carousel images – no squish, all rounded */
.carousel-item img {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* ARROW BUTTONS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  pointer-events: auto;
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-btn:hover {
  background: #f8e4ff;
}

/* --- ICONIX Merch carousel – prevent squish / stretch --- */
#merch-catalog .carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

#merch-catalog .carousel-item img {
  width: auto;
  max-width: 420px;
  max-height: 460px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.product-info {
  margin-top: 18px;
  text-align: center;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.product-desc {
  color: #7d6c8f;
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}


.about-page {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

/* Top about card */
.about-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-text h1 {
  margin-bottom: 14px;
}

.about-intro {
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-logo-card {
  background: #fff9fd;
  border-radius: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 168, 255, 0.4);
  text-align: center;
}

.about-logo-card img {
  max-width: 180px;
  height: auto;
  margin-bottom: 8px;
}

.about-tagline {
  font-size: 0.95rem;
  color: #7d6c8f;
}

.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.about-mini-grid img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Pillars section */
.about-section h2 {
  margin-bottom: 18px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-pillars .pillar {
  background: rgba(255, 249, 253, 0.8);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(242, 217, 255, 0.8);
}

.about-pillars .pillar h3 {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 850px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .carousel-item img {
    width: 260px;
  }
}

/* == RESPONSIVE == */
@media (max-width: 700px) {
  .hero {
    text-align: left;
    padding: 45px 20px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-tagline {
    font-size: 1.15rem;
  }

  .section {
    padding: 35px 25px;
  }

  .header ul.mod-menu {
    gap: 12px 10px;
    flex-wrap: wrap;
  }

  .header ul.mod-menu > li > a {
    padding: 9px 18px;
  }
}