/* Custom Stylesheet for Third Eye Craft Affair Homepage */

@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Chivo:wght@400;600&display=swap');

body {
  font-family: 'Chivo', sans-serif;
  background-color: #2C3E50;
  color: #FDFEFE;
  margin: 0;
}

h1, h2, h3 {
  font-family: 'Shrikhand', cursive;
  color: #FDFEFE;
}

.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(to bottom, rgba(46, 16, 51, 0.6), rgba(11, 2, 13, 0.7)),
            url('/media/eye.jpg') center center/cover no-repeat;
  color: #FDFEFE;
  text-shadow: 1px 1px 5px #000;
  padding: 8rem 2rem;
}

#headderTxt {
  /* Your custom styles here */
  font-size: 4rem; /* Example size */
  color: #F39C12; /* Example color (Warm Gold from your palette) */
  text-align: center; /* Example alignment */
  margin-bottom: 1rem; /* Example spacing */
}


.section {
  padding: 3rem 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.text-block {
  background: linear-gradient(to bottom, #2b0a11, #8E44AD);
  padding: 2rem;
  border-radius: 1rem;
  color: #FDFEFE;
  margin-bottom: 2rem;
}

.flyer-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.flyer-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.testimonial-slider .quote {
  font-style: italic;
  padding: 1rem;
  border-left: 4px solid #27AE60;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom, #8E44AD, #2b0a11);
  border-radius: 0.5rem;
  color: #FDFEFE;
}

.card-grid .card {
  border: none;
  border-radius: 1rem;
  background: linear-gradient(to bottom, #8E44AD, #2b0a11);
  color: #FDFEFE;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.signal-cta {
  background: linear-gradient(to bottom, #8E44AD, #2b0a11);
  color: #FDFEFE;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.qr-image {
  max-width: 240px;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#grounding-message {
  background: linear-gradient(to bottom, #8E44AD 20%, #2b0a11 100%);
  color: #FDFEFE;
  padding: 3rem 1rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

footer {
  padding: 3rem 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.event-flyer-section {
  background: linear-gradient(to bottom, #2b0a11, #8E44AD);
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.event-flyer-section .flyer-text {
  flex: 1 1 50%;
  color: #FDFEFE;
}

.event-flyer-section .flyer-text ul {
  padding-left: 1rem;
  list-style-type: disc;
}

.event-flyer-section .flyer-image-wrapper {
  flex: 1 1 50%;
  text-align: center;
}

/* Carousel Section */
.carousel-section {
  background: linear-gradient(to bottom, #8E44AD, #2b0a11);
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 1080px;
}

.carousel-section .carousel-item img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 1rem;
}

.pullquote {
  font-size: 1.25rem;
  font-style: italic;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #F39C12;
  color: #FDFEFE;
  background: linear-gradient(to right, rgba(142, 68, 173, 0.1), transparent);
  border-radius: 0.5rem;
}

.testimonial-block {
  background: linear-gradient(to bottom, #8E44AD, #2b0a11);
  padding: 2rem;
  border-radius: 1rem;
  color: #FDFEFE;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.testimonial-title {
  font-family: 'Shrikhand', cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.quote-card {
  background: linear-gradient(to bottom, #8E44AD, #2b0a11);
  padding: 2rem;
  border-radius: 1rem;
  color: #FDFEFE;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-text {
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
}

.quote-card-light {
  background-color: rgba(255, 255, 255, 0.65);
  color: #8E44AD;
  font-style: italic;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

