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

@import url('../../fonts.googleapis.com/css2@family=Shrikhand&family=Chivo%253Awght@400%3B600&display=swap.css');

:root {
  --background-primary: #1A0824; /* Deep Night Purple */
  --accent-primary: #B12E7F; /* Portal Magenta */
  --accent-secondary: #FF8A3C; /* Solstice Orange */
  --highlight-gold: #FFD66B; /* Moon Glow Gold */
  --panel-light: #E1D4FF; /* Frosted Lilac */
  --panel-lighter: #F7F7FF; /* Snow Mist */
  --divider: #10312F; /* Evergreen Shadow */
  --aurora-gradient: linear-gradient(150deg, rgba(26, 8, 36, 0.95), rgba(177, 46, 127, 0.9), rgba(255, 138, 60, 0.85));
  --text-on-dark: #F7F7FF;
}

body {
  font-family: 'Chivo', sans-serif;
  background-color: var(--background-primary);
  background-image: var(--aurora-gradient);
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-on-dark);
  margin: 0;
}

h1, h2, h3 {
  font-family: 'Shrikhand', cursive;
  color: var(--highlight-gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-image: linear-gradient(160deg, rgba(177, 46, 127, 0.88), rgba(255, 138, 60, 0.82)),
                    url('../media/assets/third-eye-craft-logo-illustration.jpg');
  background-position: center;
  background-size: cover;
  color: var(--text-on-dark);
  text-shadow: 1px 1px 5px rgba(44, 30, 47, 0.6);
  padding: 6rem 2rem;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.hero .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  max-width: 720px;
  color: rgba(247, 247, 255, 0.9);
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

#headderTxt {
  /* Your custom styles here */
  font-size: 4rem; /* Example size */
  color: var(--highlight-gold); /* 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 3rem auto;
  background: var(--aurora-gradient);
  color: var(--text-on-dark);
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--highlight-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-subtitle {
  color: rgba(247, 247, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin-bottom: 0.25rem;
}

.section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(247, 247, 255, 0.92);
}

.merch-callout {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(177, 46, 127, 0.25));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-block {
  background: linear-gradient(135deg, rgba(225, 212, 255, 0.95), rgba(247, 247, 255, 0.92));
  padding: 2rem;
  border-radius: 1rem;
  color: var(--background-primary);
  margin-bottom: 2rem;
  border: 1px solid rgba(16, 49, 47, 0.25);
}

.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(177, 46, 127, 0.4);
  z-index: 10;
}

.flyer-carousel {
  max-width: 960px;
  margin: 0 auto;
}

.flyer-carousel-image {
  max-height: 640px;
  object-fit: contain;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-slider .quote {
  font-style: italic;
  padding: 1rem;
  border-left: 4px solid var(--highlight-gold);
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 0.5rem;
  color: var(--text-on-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.card-grid .card {
  border: none;
  border-radius: 1rem;
  background: var(--aurora-gradient);
  color: var(--text-on-dark);
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.signal-cta {
  background: var(--aurora-gradient);
  color: var(--text-on-dark);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(16, 49, 47, 0.25);
}

.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: var(--aurora-gradient);
  color: var(--text-on-dark);
  padding: 3rem 1rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.35);
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(16, 49, 47, 0.25);
}

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

.event-flyer-section {
  background: var(--aurora-gradient);
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem auto;
  align-items: center;
  border: 1px solid rgba(16, 49, 47, 0.25);
}

.event-flyer-section {
  color: var(--text-on-dark);
}

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

.event-flyer-section {
  text-align: center;
}

/* Save the Date Section */
.save-the-date-section {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 1rem;
  padding: 2rem 1rem;
  margin: 3rem auto;
  max-width: 960px;
  border: 1px solid rgba(16, 49, 47, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.save-the-date-card {
  background: var(--aurora-gradient);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  color: var(--text-on-dark);
  border: 1px solid rgba(16, 49, 47, 0.25);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.save-the-date-image {
  width: 100%;
  max-width: 320px;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.save-the-date-copy ul {
  padding-left: 1rem;
  color: rgba(247, 247, 255, 0.9);
}

.save-the-date-copy h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.save-the-date-copy {
  text-align: center;
}

@media (min-width: 768px) {
  .save-the-date-card {
    flex-direction: row;
    text-align: left;
  }
  .save-the-date-copy {
    text-align: left;
  }
}

.save-the-date-card .eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--highlight-gold);
}

.save-the-date-dates {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.save-the-date-dates .date-pill {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  color: var(--text-on-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.save-the-date-card .time {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* Carousel Section */
.photo-grid-section {
  background: var(--aurora-gradient);
  border-radius: 1rem;
  padding: 3rem 1rem;
  margin: 3rem auto;
  max-width: 1140px;
  border: 1px solid rgba(16, 49, 47, 0.25);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease;
}

.photo-card:hover {
  transform: translateY(-6px);
  filter: brightness(1.05) saturate(1.1);
}

.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 2000;
}

.photo-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.photo-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.photo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.photo-card.active {
  z-index: 10;
}

.photo-card img.fullscreen {
  position: fixed;
}

.photo-card:hover img {
  transform: scale(1.08);
}

.pullquote {
  font-size: 1.25rem;
  font-style: italic;
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--highlight-gold);
  color: var(--text-on-dark);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.testimonial-block {
  background: var(--aurora-gradient);
  padding: 2rem;
  border-radius: 1rem;
  color: var(--text-on-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(16, 49, 47, 0.25);
}

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

.quote-card {
  background: var(--aurora-gradient);
  padding: 2rem;
  border-radius: 1rem;
  color: var(--text-on-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 49, 47, 0.25);
}

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

.quote-card-light {
  background: rgba(0, 0, 0, 0.55);
  color: var(--panel-lighter);
  font-style: italic;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(16, 49, 47, 0.25);
}
