@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

/* CSS Reset & General Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --color-sage: #598d6c;
  --color-sage-rgb: 89, 141, 108;
  --color-mint: #bfd9d0;
  --color-mint-rgb: 191, 217, 208;
  --color-lavender: #d2d5fa;
  --color-lavender-rgb: 210, 213, 250;
  --color-cream: #fffcfa;
  --color-cream-rgb: 255, 252, 250;
  --color-dark: #203527;
  --color-dark-rgb: 32, 53, 39;
  --color-light-gray: #f0f4f2;
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadow & Blur */
  --glass-shadow: 0 8px 32px 0 rgba(89, 141, 108, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
  --card-shadow: 0 10px 30px rgba(32, 53, 39, 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Selection & Styling */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Header & Glassmorphic Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 2rem;
}

header.scrolled {
  background: rgba(255, 252, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(89, 141, 108, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sage);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-mint);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.logo-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--color-sage);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 8px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-dark);
  opacity: 0.8;
  position: relative;
  padding: 0.25rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-sage);
  transition: var(--transition-smooth);
}

nav ul li a:hover, nav ul li a.active {
  opacity: 1;
  color: var(--color-sage);
}

nav ul li a:hover::after, nav ul li a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-sage);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Sections Base Layout */
section {
  padding: 8rem 2rem 6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Section Styles */
#home {
  background: radial-gradient(circle at 10% 20%, rgba(210, 213, 250, 0.4) 0%, rgba(255, 252, 250, 1) 90%);
  padding-top: 10rem;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--color-sage);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-sage);
  color: var(--color-cream);
  box-shadow: 0 4px 15px rgba(89, 141, 108, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(32, 53, 39, 0.4);
}

.btn-secondary {
  background-color: rgba(89, 141, 108, 0.1);
  color: var(--color-sage);
  border: 1px solid rgba(89, 141, 108, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(89, 141, 108, 0.2);
  transform: translateY(-3px);
}

/* Decorative background assets */
.floating-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.3;
  animation: floatAnim 10s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background-color: var(--color-lavender);
  top: 10%;
  right: -5%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background-color: var(--color-mint);
  bottom: 5%;
  left: -10%;
  animation-delay: -3s;
}

/* The Garden Section */
#garden {
  background-color: rgba(210, 213, 250, 0.25);
}

.garden-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 3rem;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
}

.garden-description {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Filter Section Styles */
.filter-section {
  margin-bottom: 2rem;
}

.filter-section-title {
  text-align: center;
  font-size: 1rem;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

.filters-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn svg.leaf-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-sage);
  transition: var(--transition-smooth);
}

.filter-btn.active svg.leaf-icon {
  stroke: var(--color-cream);
}

.zine-tag-mini svg.leaf-icon,
.modal-tag svg.leaf-icon {
  width: 12px;
  height: 12px;
  stroke: var(--color-sage);
  display: inline-block;
  vertical-align: middle;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(89, 141, 108, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.filter-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background: rgba(89, 141, 108, 0.1);
  border-color: var(--color-sage);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--color-sage);
  color: var(--color-cream);
  border-color: var(--color-sage);
  box-shadow: 0 4px 12px rgba(89, 141, 108, 0.2);
}

.filter-btn.active img {
  filter: brightness(0) invert(1);
}

/* Zines Card Grid Layout */
.zines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.zine-card {
  background-color: var(--color-cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(89, 141, 108, 0.1);
  display: flex;
  flex-direction: column;
  height: 480px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.zine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(32, 53, 39, 0.1);
}

.zine-image-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background-color: var(--color-light-gray);
}

.zine-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.zine-card:hover .zine-image {
  transform: scale(1.05);
}

.zine-tags-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zine-tag-mini {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(89, 141, 108, 0.1);
  color: var(--color-sage);
}

.zine-tag-mini img {
  width: 12px;
  height: 12px;
}

.zine-card-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  background: var(--color-cream);
  border-top: 1px solid rgba(89, 141, 108, 0.05);
}

.zine-title {
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zine-meta {
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 500;
}

/* Zine Card Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 53, 39, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--color-cream);
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(0.9);
  transition: var(--transition-smooth);
  position: relative;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(89, 141, 108, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.25rem;
  color: var(--color-sage);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.modal-close-btn:hover {
  background: var(--color-sage);
  color: var(--color-cream);
  transform: rotate(90deg);
}

.modal-left {
  width: 40%;
  height: 100%;
  position: relative;
  background-color: var(--color-light-gray);
  border-right: 1px solid rgba(89, 141, 108, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-light-gray);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Carousel Nav Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(89, 141, 108, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 15;
  font-size: 1.1rem;
  color: var(--color-sage);
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btn:hover {
  background: var(--color-sage);
  color: var(--color-cream);
  transform: translateY(-50%) scale(1.05);
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

/* Dots indicator */
.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 15;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(89, 141, 108, 0.1);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(89, 141, 108, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-sage);
  transform: scale(1.2);
}

.modal-right {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal-scrollable-content {
  padding: 3rem;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.modal-tag {
  background-color: rgba(89, 141, 108, 0.1);
  color: var(--color-sage);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.modal-tag img {
  width: 14px;
  height: 14px;
}

.modal-title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--color-sage);
  margin-bottom: 1rem;
}

.modal-creator-meta {
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(89, 141, 108, 0.1);
  padding-bottom: 1rem;
}

.modal-summary-section {
  margin-bottom: 2.5rem;
}

.modal-section-title {
  font-size: 1.25rem;
  color: var(--color-sage);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-summary {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Reflection Prompts Accordion / Container */
.reflection-box {
  background-color: rgba(210, 213, 250, 0.2);
  border: 1px solid rgba(210, 213, 250, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.reflection-prompt {
  margin-bottom: 1.25rem;
}

.reflection-prompt:last-child {
  margin-bottom: 0;
}

.prompt-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-sage);
  margin-bottom: 0.25rem;
}

.prompt-text {
  font-size: 1rem;
  opacity: 0.9;
}

/* Comments Section inside Modal */
.comments-section {
  border-top: 1px solid rgba(89, 141, 108, 0.1);
  padding-top: 2rem;
}

.comments-list {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-item {
  background: var(--color-light-gray);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(89, 141, 108, 0.05);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.comment-author {
  font-weight: 600;
  color: var(--color-sage);
}

.comment-date {
  opacity: 0.5;
}

.comment-body {
  font-size: 0.95rem;
  opacity: 0.85;
}

.no-comments-msg {
  opacity: 0.5;
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
}

/* Comment Form */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.comment-input, .comment-textarea {
  background-color: #fff;
  border: 1px solid rgba(89, 141, 108, 0.25);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: var(--transition-fast);
  width: 100%;
}

.comment-input:focus, .comment-textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(89, 141, 108, 0.1);
}

.comment-textarea {
  min-height: 80px;
  resize: vertical;
}

/* Create Section */
#create {
  background-color: var(--color-cream);
  position: relative;
}

.create-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.create-text h3 {
  font-size: 2.25rem;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
}

.create-guidelines {
  margin-top: 2rem;
  background-color: rgba(89, 141, 108, 0.05);
  border-left: 4px solid var(--color-sage);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
}

.create-guidelines h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-sage);
}

.create-guidelines ul {
  list-style-type: none;
}

.create-guidelines ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.create-guidelines ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-sage);
}

.create-box {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(89, 141, 108, 0.15);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-sage);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tags-select-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.tag-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background-color: var(--color-light-gray);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.tag-checkbox-label img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.tag-checkbox-label:hover {
  background-color: rgba(89, 141, 108, 0.1);
}

.tag-checkbox-label input {
  display: none;
}

.tag-checkbox-label.selected {
  background-color: rgba(89, 141, 108, 0.15);
  border-color: var(--color-sage);
  color: var(--color-sage);
}

/* Zines Section Styles */
#zines {
  background-color: rgba(255, 252, 250, 1);
  position: relative;
}

.zines-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.zines-lead {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.zines-grid-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.zines-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zines-subheading {
  font-size: 2rem;
  color: var(--color-sage);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.zines-text {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* Zine Folding Guide Tutorial */
.zine-folding-guide {
  background: rgba(89, 141, 108, 0.03);
  border: 1px solid rgba(89, 141, 108, 0.1);
  border-radius: 24px;
  padding: 3.5rem;
  margin-bottom: 5rem;
  box-shadow: var(--card-shadow);
}

.folding-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.folding-step-card {
  background: white;
  border: 1px solid rgba(89, 141, 108, 0.08);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.folding-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-sage);
  box-shadow: 0 10px 20px rgba(89, 141, 108, 0.05);
}

.step-number {
  position: absolute;
  top: -1.25rem;
  left: 1.5rem;
  background-color: var(--color-sage);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(89, 141, 108, 0.2);
}

.step-title {
  font-size: 1.25rem;
  color: var(--color-sage);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Roots Section Styles */
#roots {
  background-color: var(--color-cream);
  position: relative;
  padding: 8rem 2rem 6rem;
  border-top: 1px solid rgba(89, 141, 108, 0.1);
}

.roots-box {
  background-color: var(--color-light-gray);
  border: 1px solid rgba(89, 141, 108, 0.12);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.roots-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.roots-list li {
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 2rem;
  text-indent: -2rem;
  opacity: 0.9;
}

.roots-list li a {
  color: var(--color-sage);
  text-decoration: underline;
  word-break: break-all;
}

.roots-list li a:hover {
  opacity: 0.8;
}

/* Vision / About Jenna Section */
#vision {
  background: radial-gradient(circle at 90% 80%, rgba(191, 217, 208, 0.4) 0%, rgba(255, 252, 250, 1) 90%);
}

.vision-intro {
  margin-bottom: 5rem;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.vision-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.yamas-niyamas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.yama-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(89, 141, 108, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.yama-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-sage);
  box-shadow: var(--card-shadow);
}

.yama-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-sage);
  margin-bottom: 0.5rem;
}

.yama-desc {
  font-size: 0.95rem;
  opacity: 0.8;
}

.about-me-box {
  background-color: var(--color-cream);
  border: 1px solid rgba(210, 213, 250, 0.7);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-me-box h3 {
  font-size: 2rem;
  color: var(--color-sage);
}

.about-me-box p {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Footer Section */
footer {
  background-color: var(--color-dark);
  color: var(--color-cream);
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-mint);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 400px;
  margin: 0 auto 2.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  list-style: none;
}

.footer-nav a {
  opacity: 0.8;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--color-mint);
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnim {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .zines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .zines-grid-layout, .create-grid, .vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .folding-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1100;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-cream);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 6rem 2rem 2rem;
  }
  
  nav.open {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  nav ul li a {
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .zines-grid {
    grid-template-columns: 1fr;
  }
  
  .folding-steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .zine-folding-guide {
    padding: 2rem 1.5rem;
  }
  
  .modal-container {
    flex-direction: column;
    height: 90vh;
  }
  
  .modal-left {
    width: 100%;
    height: 35%;
  }
  
  .modal-right {
    width: 100%;
    height: 65%;
  }
  
  .modal-scrollable-content {
    padding: 2rem;
  }
  
  .yamas-niyamas-grid {
    grid-template-columns: 1fr;
  }
  
  .create-box, .about-me-box {
    padding: 2rem;
  }
}

/* Curation Mode Styles */
#edit-pages-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 10px;
  margin-bottom: 1.5rem;
}

.edit-page-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(89, 141, 108, 0.2);
  aspect-ratio: 1;
  background-color: var(--color-light-gray);
  display: flex;
  justify-content: center;
  align-items: center;
}

.edit-page-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edit-page-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(192, 80, 80, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: var(--transition-fast);
}

.edit-page-delete:hover {
  background: rgba(192, 80, 80, 1);
  transform: scale(1.1);
}

#curate-toggle.active {
  background-color: var(--color-sage);
  color: var(--color-cream);
  border-color: var(--color-sage);
  box-shadow: 0 4px 10px rgba(89, 141, 108, 0.25);
}

#toggle-passcode-visibility:hover {
  opacity: 0.8;
}

#passcode-modal .modal-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(89, 141, 108, 0.1);
  background-color: var(--color-cream);
}
