body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #eaeaea;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

h1, h2, h3 {
  color: #ffd700;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.2rem;
  border-bottom: 2px solid #444;
  padding-bottom: 0.5rem;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: disc;
  margin-left: 1.5rem;
}

p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

a.home-link {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: #00bcd4;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

a.home-link:hover {
  background-color: #ffd700;
  color: #000;
}

.content-container {
  max-width: 1000px;
  margin: 2rem auto;
  background-color: #111;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  animation: fadeIn 1.2s ease-in-out;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.column {
  flex: 1;
  min-width: 300px;
}

.highlight {
  background-color: #1a1a1a;
  border-left: 5px solid #00bcd4;
  padding: 1.2rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-size: 1rem;
}

.note {
  color: #ff9999;
  font-style: italic;
}

.faq-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #111;
  border-radius: 6px;
  overflow: hidden;
}

.faq-table th, .faq-table td {
  border: 1px solid #333;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.faq-table th {
  background-color: #1a1a1a;
  color: #00bcd4;
  font-weight: 600;
}

.faq-table tr:nth-child(even) {
  background-color: #1a1a1a;
}

blockquote.highlight {
  border-left: 5px solid #ffd700;
  background-color: #121212;
  padding: 1.5rem;
  font-style: italic;
  color: #ccc;
  margin: 2rem 0;
}

.footer-art {
  text-align: center;
  padding: 2rem 1rem;
  color: #ffd700;
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  background: linear-gradient(90deg, #000, #111, #000);
  border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .faq-table td, .faq-table th {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1.2s ease-in-out;
}

/* ========= GALLERY (mobile-first) ========= */
.gallery-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px;
}

.gallery-title{
  text-align: center;
  margin: 10px 0 18px;
  letter-spacing: .5px;
}

/* Grid */
.gallery-grid{
  display: grid;
  grid-template-columns: 1fr;         /* 1 col on phones */
  gap: 18px;
}

/* Card/frame */
.gallery-item{
  background: #f6efe3;                /* cream frame */
  border: 3px solid #f2d98c;          /* gold rim */
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  max-width: 95vw;                    /* side breathing space on phones */
  margin: 0 auto;
}

/* Image */
.gallery-item img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;                /* prevents layout jump while loading */
  object-fit: cover;
  border-radius: 12px;
}

/* Caption */
.caption{
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;                          /* space between text & emoji */
  color: #222;                         /* readable on cream frame */
}

/* Hover nicety on non-touch */
@media (hover:hover){
  .gallery-item{ transition: transform .2s ease, box-shadow .2s ease; }
  .gallery-item:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
  }
}

/* ====== Breakpoints ====== */
@media (min-width: 600px){
  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0,1fr)); /* 2 cols tablets */
  }
  .gallery-item{ max-width: 520px; }
}

@media (min-width: 1024px){
  .gallery-grid{
    grid-template-columns: repeat(3, minmax(0,1fr)); /* 3 cols desktop */
  }
}

/* ========= HEWEN INTRO (tidy + responsive) ========= */
.hewen-intro{
  position: relative;
  margin: 24px auto 8px;
  padding: 0 14px;
  max-width: 1100px;
}

.hewen-overlay{
  background: radial-gradient(80% 120% at 50% 0, rgba(255,215,0,.12), rgba(255,215,0,0) 60%),
              linear-gradient(180deg, #0b0b0b, #111);
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.hewen-heart{
  font-size: 28px;
  margin-bottom: 8px;
  animation: heartPop .9s ease;
}

.hewen-intro h2{ margin: 0 0 6px; }
.hewen-intro h4{ margin: 0 0 10px; color: #bdbdbd; font-weight: 500; }
.hewen-intro p{ margin: 8px auto; max-width: 56ch; }

@keyframes heartPop {
  from { transform: scale(.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Make headings a touch smaller on very small phones */
@media (max-width: 360px){
  .hewen-intro h2{ font-size: 1.1rem; }
  .hewen-intro h4{ font-size: .9rem; }
}
body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #eaeaea;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
/* Gallery-only theme */
body.gallery-page {
  background: linear-gradient(180deg, #f4f1ec 0%, #ece6dd 100%);
  color: #222;
}

/* Make sure gallery captions stay readable on light bg */
body.gallery-page .caption { color: #222; }

