<style>
    :root {
      --cream: #fdfaf6;
      --text: #1f1f1f;
      --accent: #d94f4f;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--text);
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 2rem;
      border-bottom: 1px solid #e0dcd3;
      background-color: #fff;
    }

    header img {
      height: 40px;
    }

    nav a {
      margin-left: 1.5rem;
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      font-size: 0.95rem;
    }

    nav a:hover {
      color: var(--accent);
    }


a {
  color: orangered;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px dashed transparent;
}

a:hover {
  color: #a13a3a;
  border-bottom: 1px dashed #a13a3a;
}


    .hero {
      text-align: center;
      padding: 4rem 1rem 2rem;
      max-width: 800px;
      margin: 0 auto;
    }
      
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.2s;
}

.hero .tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #6a645f;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 1s;
}

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero p {
      font-size: 1.05rem;
      color: #555;
      margin-top: 1.5rem;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding: 3rem 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .zine {
      background: #fff;
      border: 1px solid #e0dcd3;
      padding: 1rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-align: center;
    }

    .zine:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
      border-color: var(--accent);
    }

    .zine img {
      max-width: 100%;
      height: auto;
    }

    .zine h3 {
      margin-top: 0.8rem;
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--text);
    }

    .zine .desc {
      font-size: 0.95rem;
      color: #444;
      margin: 0.4rem 0;
    }

    .zine .difficulty {
      font-size: 0.85rem;
      color: #888;
    }

    .zine a {
      text-decoration: none;
      color: inherit;
      display: block;
    }
      
.testimonials {
  background-color: #fdfbf8;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  height: auto;
  min-height: 6rem;
}

.carousel-item {
  opacity: 0;
  transition: opacity 2s ease-in-out;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #5a5651;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;    
}
      
.carousel-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}      

.carousel-item.active {
  opacity: 1;
  position: relative;
}      

.author {
  font-size: 0.95rem;
  color: #888;
  font-variant: small-caps;
  letter-spacing: 0.05em;
}
      
.quote {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: #5a5651;
  font-size: 1.25rem;
}      
      
    footer {
      text-align: center;
      padding: 2rem 1rem;
      border-top: 1px solid #e0dcd3;
      font-size: 0.9rem;
      color: #888;
      background: #fff;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        margin-top: 0.5rem;
      }

      nav a {
        margin-left: 0;
        margin-right: 1rem;
      }

      .hero h1 {
        font-size: 2.3rem;
      }

      .hero .tagline {
        font-size: 1.2rem;
      }
    }
      
      
  </style>