* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #606c71;
}

section, #home {
  scroll-margin-top: 80px;
}

section:nth-of-type(even):not(#newsletter), footer, #home {
  background: linear-gradient(135deg, #500011 0%, #2b0b01 100%);
}

section:nth-of-type(odd), header, #newsletter, .mobile-menu {
  background-color: #f4f1ed;
}

section:nth-of-type(even):not(#newsletter) {
  color: white;
}

.my-card {
  background-color: #f4f1ed;
}

.my-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.schedule-item:hover {
  transform: translateY(-10px);
  background-color: rgba(225, 29, 72, 0.05);
}

.animate-bounce-slow {
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.prose {
  line-height: 1.7;
}

.prose h1 {
  font-size: 2.25rem; /* ~text-3xl */
  line-height: 1.2;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h2 {
  font-size: 1.875rem; /* ~text-2xl */
  line-height: 1.3;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.5rem; /* ~text-xl */
  line-height: 1.4;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.prose strong {
  font-weight: 600;
}

.prose a {
  color: #dc2626; /* red-600 */
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: #b91c1c; /* red-700 */
}

.prose ul {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style-type: disc;
}

.prose ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style-type: decimal;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose blockquote {
  border-left: 4px solid #e5e7eb; /* gray-200 */
  padding-left: 1rem;
  font-style: italic;
  color: #4b5563; /* gray-600 */
  margin: 1.5rem 0;
}

.prose img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.prose code {
  background-color: #f3f4f6; /* gray-100 */
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.prose pre {
  background-color: #1f2937; /* gray-800 */
  color: #f9fafb; /* gray-50 */
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

/*# sourceMappingURL=style.css.map */