@font-face {
  font-family: 'rainyhearts';
  src: url('/testsite/FONTS/rainyhearts.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Delius Swash Caps';
  src: url('/testsite/FONTS/DeliusSwashCaps-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Pixelbasel';
  src: url('/testsite/FONTS/Pixelbasel.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ZCPSans';
  src: url('/fonts/zcpSans.ttf') format('truetype');
}


:root {
  --zcp-pink: #f8c8dc;
--zcp-blue: #6a7bc0; /* softened periwinkle */
  --zcp-yellow: #fffbe8;     /* slightly warmer, easier on the eyes */
  --zcp-green: #b8dff0;      /* softened for readability */
--zcp-purple: #a88acb; /* soft lavender-mauve */
--zcp-peach: #ffeae2; /* soft peach cream */
  --zcp-bg: #fffafc;
--zcp-shadow: rgba(248, 200, 220, 0.2); /* pink-tinted shadow */
--zcp-rainbow: linear-gradient(
  135deg,
  #f8c8dc,
  #fdf4c8,
  #d8f8d0,
  #c8e7f8,
  #e6d0f8);
  /* Optional additions */
  --zcp-text: #333333;       /* fallback body text color */
  --zcp-shadow: rgba(0, 0, 0, 0.1); /* soft shadow tone */
}

* {
  box-sizing: border-box;
}

html {
  background: linear-gradient(
    135deg,
    #f8c8dc,
    #c8e7f8,
    #fffdf0,
    #d8f8d0,
    #e6d0f8
  );
  background-size: 100% 100%;
  font-family: 'rainyhearts', Arial, Helvetica, sans-serif;
  color: var(--zcp-blue);
  height: 100%;
  line-height: 25px;
  font-size: 18px;
}

body {
  margin: 2rem;
  padding: 1rem;
}

/************ Layout Container ****************/

.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/************ Navigation ****************/

nav {
  background-color: var(--zcp-yellow);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  border: 4px dashed var(--zcp-purple);
  flex: 0 0 auto;
}

nav ul {
  list-style: none;
  margin: 1rem .2rem 1.5rem -1.6rem;
}

.main-nav li {
  margin-bottom: 1.5rem;
}

nav li:hover {
  filter: drop-shadow(0px 0px 8px var(--zcp-blue));
}

/* Tape corners for nav */
nav::before,
nav::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 20px;
  background: linear-gradient(90deg,
    #f8c8dc,
    #fdf4c8,
    #d8f8d0,
    #c8e7f8,
    #e6d0f8
  );
  opacity: 0.8;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

nav::before {
  top: -10px;
  left: -10px;
  transform: rotate(-10deg);
}

nav::after {
  bottom: -10px;
  right: -10px;
  transform: rotate(10deg);
}

/************ Main Content ****************/

.main-tape-wrapper {
  position: relative;
  width: 60%;
  flex: 1;
  max-width: 760px;
  margin: 1rem auto'
}

/* Tape corners for main */
.main-tape-wrapper::before,
.main-tape-wrapper::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 20px;
  background: linear-gradient(90deg,
    #f8c8dc,
    #fdf4c8,
    #d8f8d0,
    #c8e7f8,
    #e6d0f8
  );
  opacity: 0.8;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.main-tape-wrapper::before {
  top: -10px;
  left: -10px;
  transform: rotate(-10deg);
}

.main-tape-wrapper::after {
  bottom: -10px;
  right: -10px;
  transform: rotate(10deg);
}

.main-wrapper {
  transform: rotate(1.5deg);
  position: relative;
}

/************ Main Box ****************/

main {
  background-color: var(--zcp-yellow);
  border: 4px dashed var(--zcp-purple);
  border-radius: 10px;
  padding: 1rem 1rem;
  text-align: center;
  max-height: 770px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
main p, main h1, main h2 {
  text-shadow: 1px 1px 2px rgba(200, 200, 255, 0.2);
}
p {
  margin-bottom: 1rem;
}

/************ Scrollbar ****************/

main::-webkit-scrollbar {
  width: 10px;
}

main::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

main::-webkit-scrollbar-thumb {
  background-color: var(--zcp-blue);
}

/*********** Page Defaults ****************/

h1, h2 {
  font-family: 'Delius Swash Caps', cursive;
}

h1 {
  font-size: 20pt;
  letter-spacing: 2.5px;
}

h2 {
  font-size: 18pt;
  font-weight: normal;
  letter-spacing: 1px;
}

a {
  font-family: 'Delius Swash Caps', cursive;
  color: black;
  font-weight: bold;
  text-decoration: none;
  background-color: transparent;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #ff69b4; /* hot pink */
  background-color: white;
  text-decoration: underline;
}


.button {
  font-family: 'Pixelbasel', monospace;
  padding: 0.4rem 0.8rem;
  font-size: 1rem;
  background-color: var(--zcp-green);
  color: #000000;
  border: 2px solid var(--zcp-purple);
  transition: background-color 0.2s ease-in-out;
}

.button:hover {
  background-color: white;
  color: #ff69b4;
  border-color: #ff69b4;
}
.infoflex {
  display: flex;
  flex-direction: column; /* ⬆⬇ stack cards vertically */
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}


.fulldiv3 {
  position: relative;
  padding: 3rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column; /* ⬅️ switch from row to column */
  align-items: center;
  gap: 1rem;
  border-radius: 12px;
  background-color: var(--zcp-yellow);
  max-width: 600px;
  margin-top: 2rem;
}


.imgdiv3 {
  padding: 6px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    #fffbe8,
    #b8dff0,
    #6a84d8
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(248, 200, 220, 0.3);
}

.imgdiv3-inner {
  background-image: url('/pfmagic/siteimgs/wehaverainbows.png');
  background-repeat: repeat;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.imgdiv3 img {
  display: block;
  max-width: none;
  height: auto;
  border-radius: 8px;
}

.infodiv {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 2;
  border: 6px dashed transparent;
  border-image: linear-gradient(
    90deg,
    #f8c8dc,
    #fdf4c8,
    #d8f8d0,
    #c8e7f8,
    #e6d0f8
  ) 1;
  max-height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(
 135deg,
  #f8c8dc 0%,
  #ffeae2 50%,
  #fffafc 100%
  );
  padding: 0.75rem;
  border-radius: 10px;
  border: 2px dashed var(--zcp-pink);
  font-family: 'ZCPSans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.3;
  width: 180px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
}

/* 📌 Pin Icon Styling - potentially use in future, keep here for now*/
.pin-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 24px;
  height: 24px;
  z-index: 3;
  pointer-events: none;
}


.infodiv::-webkit-scrollbar {
  width: 8px;
}

.infodiv::-webkit-scrollbar-track {
  background: #fdf4c8; /* light yellow */
  border-radius: 10px;
}

.infodiv::-webkit-scrollbar-thumb {
  background: #f8c8dc; /* soft pink */
  border-radius: 10px;
  border: 2px solid #fdf4c8; /* matches track */
}

.infodiv::-webkit-scrollbar-thumb:hover {
  background: #e6d0f8; /* lavender on hover */
}
.info-header {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--zcp-pink), var(--zcp-blue));
  color: var(--zcp-yellow);
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  border: 2px dashed var(--zcp-purple);
  text-align: center;
  font-family: 'Delius Swash Caps', cursive;
  font-size: 1rem;
  z-index: 2;
    min-height: 2.5rem; /* ensures consistent vertical space */
  display: flex;
  align-items: center;
  justify-content: center;
}
