/* Reset and base */
* {
  box-sizing: border-box;
}

/* Custom Fonts */
@font-face {
  font-family: 'FancyGloop-byCam-webfont';
  src: url('https://camcorder.neocities.org/Assets/fancygloop-bycam-webfont.woff2') format('woff2'),
       url('https://camcorder.neocities.org/Assets/fancygloop-bycam-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FancyGloop-byCam-webfont';
  src: url('https://camcorder.neocities.org/Assets/fancygloop-bycam-webfont-bold.woff2') format('woff2'),
       url('https://camcorder.neocities.org/Assets/fancygloop-bycam-webfont-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  background: #fef9f4 url('https://camcorder.neocities.org/Screen%20Shot%202025-09-30%20at%2011.59.26%20pm.png') center/cover no-repeat;
  color: #3d2b1f;
  margin: 0;
  padding: 2rem;
  font-family: 'FancyGloop-byCam-webfont', serif;
  font-weight: 400;
}

/* Headings and important text: force bold weight and font */
header h1,
.collage-section h2,
.collage-item h3 {
  font-family: 'FancyGloop-byCam-webfont', serif;
  font-weight: 700;
  margin: 0;
}

/* Subtitle */
header p {
  font-family: 'FancyGloop-byCam-webfont', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

header {
  font-family: 'FancyGloop-byCam-webfont', serif;  
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 3px dashed #7b5e43;
  padding-bottom: 1rem;
}

header h1 {
  font-family: 'FancyGloop-byCam-webfont', serif;
  font-weight: 200;
  font-size: 3rem;
  line-height: 1.2;
  text-shadow: 1px 1px 0 #dcc6ae;
}

/* Main collage container */
.collage-section {
  margin-bottom: 4rem;
}

.collage-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #a16e44;
  padding-left: 0.5rem;
  text-shadow: 1px 1px 0 #cbb197;
  font-family: 'FancyGloop-byCam-webfont', serif;
  font-weight: 400;
}

.collage-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  position: relative;
}

/* Each piece acts like a paper note with a messy rotation */
.collage-item {
  background: #fff8f0;
  border: 0px dashed #b4845f;
  border-radius: 8px 12px 1px 12px;
  box-shadow: 3px 7px 10px rgba(0,0,0,0.25);
  padding: 1rem;
  width: 250px;
  max-width: 90vw;
  position: relative;
  font-family: 'FancyGloop-byCam-webfont', serif;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.3;
}

.collage-item img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 2px 5px 8px rgba(0,0,0,0.2);
  margin-bottom: 0.8rem;
}

/* Imperfect hand-drawn underline for headings inside items */
.collage-item h3 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.collage-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 4px;
  background: #a16e44;
  border-radius: 2px;
  transform: rotate(-3deg);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

/* Paper textures as backgrounds for collage pieces */
/* Replace URLs with your own paper assets if needed */
.paper1 {
  background: url('https://camcorder.neocities.org/Assets/paper1.png') no-repeat center;
  background-size: cover;
  transform: rotate(-3deg);
  box-shadow: 3px 6px 7px rgba(0,0,0,0.3);
}
.paper2 {
  background: url('https://camcorder.neocities.org/Assets/single_paper_asset.png') no-repeat center;
  background-size: cover;
  transform: rotate(5deg);
  box-shadow: 2px 4px 5px rgba(0,0,0,0.3);
}
.paper3 {
  background: url('https://camcorder.neocities.org/Assets/single_paper_asset.png') no-repeat center;
  background-size: cover;
  transform: rotate(-7deg);
  box-shadow: 3px 7px 7px rgba(0,0,0,0.4);
}
.paper4 {
  background: url('https://camcorder.neocities.org/Assets/paper1.png') no-repeat center;
  background-size: cover;
  transform: rotate(6deg);
  box-shadow: 2px 5px 6px rgba(0,0,0,0.35);
}
.paper5 {
  background: url('https://camcorder.neocities.org/Assets/paper1.png') no-repeat center;
  background-size: cover;
  transform: rotate(-4deg);
  box-shadow: 3px 6px 7px rgba(0,0,0,0.3);
}
.paper6 {
  background: url('https://camcorder.neocities.org/Assets/paper1.png') no-repeat center;
  background-size: cover;
  transform: rotate(4deg);
  box-shadow: 2px 4px 5px rgba(0,0,0,0.3);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .collage-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .collage-item {
    width: 90vw;
  }
}