/* ---------- BASE ---------- */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fdfbf9;
  color: #2d2d2d;
  text-align: center;
  scroll-behavior: smooth;
}

h2, h3 {
  margin: 0.5rem 0;
  color: #2a2a2a;
}

a {
  color: #d85a1a;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* ---------- HEADER ---------- */
.site-header {
  padding: 1.5rem 0 0.5rem;
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.large-logo {
  width: 450px;
  max-width: 90%;
  height: auto;
}

.under-construction {
  color: #d85a1a;
  font-weight: 500;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  animation: fadeIn 1.5s ease;
}

/* ---------- HERO ---------- */
.hero {
  max-width: 900px;
  margin: 1.5rem auto;
  animation: fadeInUp 1.5s ease both;
}

.hero-image {
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  display: block;
  margin: 0 auto 1.5rem;
  animation: fadeInUp 1.5s ease both;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #d85a1a;
  color: white;
}

.btn-primary:hover {
  background-color: #b7470e;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(216, 90, 26, 0.2);
}

.btn-secondary {
  border: 2px solid #d85a1a;
  color: #d85a1a;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: #d85a1a;
  color: white;
  transform: translateY(-2px);
}

/* ---------- ABOUT ---------- */
.about {
  max-width: 800px;
  margin: 2.5rem auto;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  animation: fadeInUp 1.5s ease both;
  padding: 0 1rem;
}

/* ---------- PRODUCT SECTIONS ---------- */
.merch, .books {
  background: #fff;
  border-radius: 14px;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  animation: fadeInUp 1.5s ease both;
}

.merch h3, .books h3 {
  color: #d85a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  padding: 0 1rem;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.product-card p {
  margin: 0.75rem 0;
  font-weight: 500;
  color: #333;
}

/* ---------- CONTACT ---------- */
.contact {
  margin: 2rem auto;
  padding: 1rem;
  max-width: 800px;
}

.contact a {
  color: #d85a1a;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  margin-top: 3rem;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #888;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .logo {
    width: 240px;
  }
  .hero-tagline {
    font-size: 1.1rem;
  }
  .hero-image {
    max-width: 100%;
  }
}
