html {
  scroll-padding-top: 90px; /* or whatever your header height is */
}

body {
  margin: 0; padding: 0;
  font-family: var(--paragraph-font);
  color: #333; line-height: 1.5;
}

header {
  padding: 20px; text-align: center;
  position: sticky; top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(5px);
  z-index: 10;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.navlogo {
  height: 150px; margin-bottom: 10px;
  transition: height 0.3s ease, margin 0.3s ease;
}

/* temporary implementation */
/* nav {display: none;} */

nav a {
  text-decoration: none; color: #333;
}

#contact-quick {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  background-color: #edffff;
  color: black;
  width: fit-content;
  margin: 0 auto;   /* prevents vertical gap when hidden */
  padding: 0 1rem; /* collapse vertical padding initially */
}

#contact-quick.visible {
  max-height: 100px;
  opacity: 1;
  padding: 0.5rem;
  margin-top: 1rem;
}

#contact-quick a {color:#87CEEB;}

h1 {
  font-family: var(--headline-font);
  font-size: 60px; opacity: 0.5; margin: 0 auto;
  color:#000000;
  text-align:center;
}

h2 {
  font-family: var(--subheading-font);
  font-size: 36px; margin: 20px 0;
  text-align:center;
}

.header-compact, .header-compact-mobile {
  padding: 6px;
}

.header-compact .navlogo, .header-compact-mobile .navlogo {
  margin-bottom: 0;
}

.header-compact .navlogo {
  height: 90px;
}

.header-compact-mobile .navlogo {
  height: 70px;
}

p {
  font-size: 21px; margin-bottom: 24px;
}

section, main {
  position: relative;
  padding: 25px 30px 60px;
  color: #111;
  overflow: hidden;
}

section > *, main > * {
  position: relative;
  z-index: 3;
}

footer {
  position: relative;
  background-color: #0d0d0d; /* base charcoal */
  color: white;
  overflow: hidden;
}

.footer-texture {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/assets/images/core/texture_footer_cracked.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 2em;
  text-align: center;
}

/* specific page content . specific page content . specific page content */

/*
.rounded-img {
  border-radius: 20px; max-width: 100%;
}*/

.pillar-curve-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: 2;
  pointer-events: none;
}

.pillar-curve-overlay svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pillar-texture-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/assets/images/core/texture_overlay_paper.jpg');
  background-repeat: repeat;
  background-size: cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.intro-section, .centered-text {
  max-width: 900px;
  margin: 0 auto;
  color: #111;
  text-align:center;
}

/* Content */

.pillar-deeper, .centered-deeper {
  padding:40px;
  text-align:center;
  color:#333;
  background:none;
}

/* .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.column {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 8px;
  color: #111;
} */

.ticket-button {
  text-align: center;
  margin: 3em 0;
}

.get-tickets {
  background: linear-gradient(to right, #fe7700, #fbb034);
  border: none;
  color: white;
  padding: 1.25em 2.5em;
  font-size: 1.5rem;
  font-family: inherit;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.get-tickets:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.get-tickets:active {
  transform: scale(0.98);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}


/* INFO CAROUSEL   .   INFO CAROUSEL   .   INFO CAROUSEL   .   INFO CAROUSEL   */

.info-carousel-section {
  background: rgba(255, 255, 255, 0.5);
  padding: 3em 1em;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.info-carousel-container.info-carousel-peek {
  overflow: hidden;
  position: relative;
  padding: 2em 0;
}

.info-carousel-track-wrapper {
  overflow: visible;
  padding-left: calc((100% - 70%) / 2); /* centers a 70% wide card */
  padding-right: 0;
}

.info-carousel-track {
  display: flex;
  gap: 1em;
  transition: transform 0.5s ease;
  will-change: transform;
}

.info-carousel-card {
  flex: 0 0 70%;
  min-width: 70%;
  max-height: 600px; /* or 350px depending on content */
  height: auto;
  overflow: hidden;
/*  aspect-ratio: 1 / 1; */
  background-blend-mode: overlay;
  padding: 2em;
  border-radius: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  cursor: pointer;
  transform: scale(0.85);
  opacity: 0.6;
}

.info-carousel-card a {
  text-decoration: none;
}

.pillar-theme .info-carousel-card {
  background: var(--theme-bg, #ffffff);
  border: 1px solid var(--theme-accent, #111111);
  background-image: var(--theme-gradient);
}

.info-carousel-card.active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.info-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5em;
}

.info-carousel-indicators .info-carousel-indicator-pill {
  width: 24px;
  height: 8px;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.info-carousel-indicators .info-carousel-indicator-pill .pill-progress {
  display: block;
  height: 100%;
  width: 0%;
  background: #17c569;
}

@keyframes progressTimer {
  from { width: 0%; }
  to { width: 100%; }
}

.info-carousel-card-image {
  aspect-ratio: 2 / 1;
  width: 60%; /* ⬅️ Smaller than full card width */
  max-width: 500px;
  margin: 0 auto; /* ⬅️ Center it */
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.info-carousel-card h2 { font-size: 28px; margin: 10px;}

.info-carousel-card p {
	font-size: 18px;
	margin-bottom: 12px;
}

.info-carousel-cta {
  font-size: 1.4rem;
  font-weight: 600;
  background: linear-gradient(90deg, #14532d, #22c55e, #bbf7d0);
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.info-carousel-cta b {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #14532d;
  animation: pulseHighlight 2s infinite ease-in-out;
}

@keyframes pulseHighlight {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

/*  third cards .  third cards .  third cards .  third cards .  third cards .  third  */


.third-cards-list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 2em 1em;
  flex-wrap: wrap;
  text-align: center;
}

.third-cards-list .third-card {
  flex: 1 1 200px;
  max-width: 300px;
  background-color: rgba(var(--theme-accent), 0.5);
  padding: 1em;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.third-cards-list .third-card-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1em;
}

.third-cards-list p {
font-size: 1em;
}

/*  wide cards .  wide cards .  wide cards .  wide cards .  wide cards .  wide cards  */

.wide-card {
  display: flex;
  align-items: center;
  background-blend-mode: overlay;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 2rem 0;
  gap: 2rem;
}

.wide-card h2 {
	text-align:left;
}

.pillar-theme .wide-card {
  position: relative;
  z-index: 1;
  border-left: 8px solid rgba(var(--theme-accent),1);
  background-color: rgba(var(--theme-bg), 0.15);
  overflow: hidden;
}

.pillar-theme .wide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--theme-gradient);
  background-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}

.wide-card-image {
  flex: 1 1 40%;
  max-width: 40%;
}

.wide-card-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  max-height: 100%;
}

.wide-card-content {
  flex: 1 1 60%;
  padding: 2rem;
}

.wide-card-right {
  flex-direction: row-reverse;
}

@media(max-width:768px) {
/*  mobile general  .  mobile general  .  mobile general  .  mobile general  */

	h1 { font-size: 40px; }
	h2 { font-size: 28px; }
	p { font-size: 18px; }
	section, main { padding: 40px 20px; }
	/*  .columns { flex-direction: column; }*/

/*  mobile info carousel  .  mobile info carousel  .  mobile info carousel  */

	.info-carousel-section, info-carousel-container, info-carousel-peek {
	width: 100% flex;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
	}

	.info-carousel-track-wrapper {
	overflow: visible;
	position: relative;
	width: 100%;
	padding-left: calc((100% - 75%) / 2); /* 65% card width match */
	padding-right: 0;
	}

	.info-carousel-track {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	transition: transform 0.5s ease;
	gap: 0;
	}

	.info-carousel-card {
	flex: 0 0 65%;
	min-width: 65%;
	margin: 0 -5%;
	transform: scale(0.85);
	z-index: 1;
	pointer-events: auto;
	transition: transform 0.3s ease, z-index 0.3s ease;
	}
	
	.info-carousel-card-image {
	width: 100%;
	}

	.info-carousel-card h2 {
	font-size: 20px; /* or 22px if you want a bit more impact */
	}

	.info-carousel-card p {
	font-size: 14px;
	}

	.info-carousel-cta {
	font-size: 1.1rem;
	}

	.info-carousel-card {
	padding: 1.2em; /* optional: reduce padding too */
	}
  
    .info-carousel-indicators {
    margin-top: 0.5em;
	}

	.info-carousel-card.active {
	transform: scale(1);
	z-index: 3;
	}

	.info-carousel-card:not(.active) {
	transform: scale(0.92);
	}

/*  mobile wide cards  .  mobile wide cards  .  mobile wide cards  .  mobile wide cards  */
	.wide-card {
		flex-direction: column;
		text-align: left;
	}

	.wide-card-image,
	.wide-card-content {
		max-width: 100%;
		flex: 1 1 100%;
		padding: 0;
	}

	.wide-card-content {
		padding: 0rem 1.5rem 1.5rem 1.5rem; /* top, right, bottom, left */
		margin-top: -2rem;
	}

	.wide-card-content h2 {
		font-size: 1.5rem;
		text-align:center;
		font-weight:700;
	}

	.wide-card-content p {
		font-size: 1.05rem;
		line-height: 1.4;
	}
  
/*  mobile utilities  .  mobile utilities  .  mobile utilities  .  mobile utilities  */
	
	.ovf {
	display:none;
	}
}

@media (max-width: 767px) and (orientation: landscape) {
  header {
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .navlogo {
    height: 90px;
    margin: 0;
  }

  nav ul {
    font-size: 0.8rem;
    line-height: 1;
    display: flex;
    gap: 1em;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  nav ul li {
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  nav {
    flex-grow: 1;
    text-align: right;
  }
}

/* === DIAGNOSTIC STYLES (TEMPORARY) === */
/*@media (max-width: 768px) {
  .carousel-card {
    outline: 2px dashed red !important;
    background-color: rgba(255, 0, 0, 0.05) !important;
  }

  .carousel-card.active {
    outline: 3px solid green !important;
    background-color: rgba(0, 255, 0, 0.05) !important;
  }

  .carousel-track-wrapper {
    outline: 2px solid blue !important;
  }

  .carousel-track {
    outline: 2px solid orange !important;
  }
}*/