@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


body {
	font-family: var(--font-body);
	color: #e8e8e8;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
	padding-top: env(safe-area-inset-top);

	background-color: var(--bg-gradient-start);
	background-image: linear-gradient(
		135deg,
		var(--bg-gradient-start) 0%,
		var(--bg-gradient-middle) 50%,
		var(--bg-gradient-end) 100%
	);
	background-attachment: scroll;

}

.logo {
	font-family: var(--font-header);
	font-size: 2.0rem;
	font-weight: 700;
	color: #9E1A1A;
	text-shadow: 2px 2px 4px var(--overlay-dark);
	position: relative;
}

.top-logo{
	max-height: 50px;
	width: auto;
}


.hero {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: 
		radial-gradient(circle at 20% 50%, var(--overlay-banner) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, var(--hero-bg-middle) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, var(--hero-bg-end) 0%, transparent 50%);
	position: relative;
	z-index: 2;
	min-height: 100vh;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bg-hero-image);
	opacity: 0.1;
}

.hero-content {
	max-width: 900px;
	z-index: 3;
	position: relative;
	padding-top: 8rem;
}

.hero h1 {
	font-family: var(--font-header);
	font-size: 4.5rem;
	margin-bottom: 1rem;
	color: var(--text-strong);
	text-shadow: 4px 4px 8px var(--overlay-dark);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.hero .tagline {
	font-family: var(--font-header);
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	color: var(--text-strong);
	font-weight: 600;
	font-style: italic;
}

.hero p {
	font-size: 1.4rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	line-height: 1.6;
}

.cta-button {
	background: linear-gradient(45deg, var(--theme-primary), var(--theme-primary-light));
	color: #fff;
	padding: 1.2rem 2.5rem;
	font-size: 1.2rem;
	border: 3px solid;
	border-color: var(--border-primary);
	border-radius: 0;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
	text-decoration: none;
	display: inline-block;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--font-header);
	box-shadow: 0 6px 20px var(--shadow-glow);
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transform: translateX(-120%);
	transition: transform 0.45s ease;
}

.cta-button:hover::before {
	transform: translateX(120%);
}

.cta-button:hover {
	transform: translateY(-3px);
	opacity: 0.92;
}

.section {
	padding: 6rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	min-height: 100vh;
}

.section-small {
	padding-top: 6rem;
	padding-bottom: 2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.section-small .subtitle {
	text-align: center;
	font-size: 1.3rem;
	opacity: 0.8;
	margin-bottom: 3rem;
	font-style: italic;
}
.section-small .subtitle .small{
	font-size: 1rem;
}

.section .subtitle {
	text-align: center;
	font-size: 1.3rem;
	opacity: 0.8;
	margin-bottom: 3rem;
	font-style: italic;
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.event-card {
  background: var(--overlay-light);
	border: 2px solid;
	border-color: var(--border-primary);
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 28px var(--shadow-intense);
	transition: transform 0.22s ease;
}

.event-card:hover {
	transform: translateY(-6px);
  background: var(--overlay-dark);
}

.event-card h3 {
	font-family: var(--font-header);
	color: var(--text-strong);
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.event-card > img {
	width: calc(100% + 5rem);
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	margin: -2.5rem -2.5rem 2rem;
	border-bottom: 2px solid var(--border-primary);
}

.event-details {
	font-family: var(--font-body);
	margin-bottom: 2rem;
}

.event-details p {
	color: var(--text-primary);
	margin-bottom: 0.8rem;
	opacity: 0.9;
	line-height: 1.5;
}

.event-details strong {
	color: var(--text-strong);
	font-weight: 600;
}

.price {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--text-strong);
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
}

.book-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.5rem;
	padding: 1rem 2rem;
	color: var(--text-primary);
	background: linear-gradient(45deg, var(--bg-gradient-middle), var(--bg-gradient-end-bright));
	border: 2px solid var(--theme-primary-glow);
	cursor: pointer;
	font-family: var(--font-header);
	font-size: 1.1rem;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.book-button::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: translateX(-101%);
	transition: transform 0.45s ease;
	pointer-events: none;
}

.book-button:hover::before {
	transform: translateX(101%);
}

.book-button:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}


.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 2000;
}

.modal-content {
	background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
	margin: 3% auto;
	padding: 3rem;
	border: 3px solid;
  border-color: var(--theme-primary);
	max-width: 650px;
	position: relative;
	max-height: 85vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.close {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-size: 2.5rem;
	cursor: pointer;
	color: var(--theme-primary);
	transition: color 0.2s ease, transform 0.2s ease;
	font-weight: bold;
}

.close:hover {
	color: var(--theme-primary-light);
	transform: scale(1.2);
}

.modal h2 {
	font-family: var(--font-header);
	color: var(--theme-primary);
	margin-bottom: 2rem;
	text-align: center;
	font-size: 2.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

a {
	text-underline-offset: 3px;
}

/* ==========================================================
   Content Links
   ========================================================== */

.about-content a,
.subtitle a,
.faq-answer a,
.call-to-action-container a:not(.cta-button),
p a {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 2px;
	transition: background-size 0.25s ease, color 0.25s ease;
}

.about-content a:hover,
.subtitle a:hover,
.faq-answer a:hover,
.call-to-action-container a:not(.cta-button):hover,
p a:hover {
	color: var(--text-secondary);
	background-size: 100% 2px;
}

/*
+--------------------------------------------------------------------------------------------------+
+  Forms Section                                                                                   +
+--------------------------------------------------------------------------------------------------+
*/

.form-group {
	margin-bottom: 1.8rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.8rem;
	color: var(--text-strong);
	font-weight: bold;
	font-family: var(--font-header);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid;
	border-color: var(--border-primary);
	background: var(--overlay-medium);
	color: var(--text-primary);
	font-size: 1rem;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--border-primary);
	box-shadow: 0 0 15px var(--shadow-intense);
	background: rgba(0, 0, 0, 0.7);
}

.form-group input[readonly] {
	background: var(--overlay-light);
	border-color: var(--border-seconday);
	color: var(--text-muted);
	cursor: not-allowed;
	opacity: 0.85;
}

.form-group input[readonly]:focus {
	background: var(--overlay-light);
	border-color: var(--border-seconday);
	box-shadow: none;
}

.form-note {
	margin-top: 0.4rem;
	font-size: 0.85rem;
	color: var(--text-light);
	opacity: 0.75;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #000000 inset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
	-webkit-border: 2px solid var(--border-primary) !important;
}

/* For newer browsers that support it */
input:autofill {
	border: 2px solid;
	border-color: var(--border-primary);
	background: var(--overlay-medium);
	color: var(--text-primary);
}

.submit-button {
	background: linear-gradient(45deg, var(--theme-primary), var(--theme-primary-light));
	color: #fff;
	padding: 1.2rem 2rem;
	border: 2px solid;
	border-color: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	width: 100%;
	font-size: 1.2rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--font-header);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.submit-button:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.total-section {
	background: rgba(158, 26, 26, 0.15);
	padding: 1.5rem;
	margin-bottom: 2rem;
	border: 2px solid rgba(158, 26, 26, 0.3);
	border-left: 6px solid #9E1A1A;
}

.total-section p:first-child {
	font-size: 1.4rem;
	font-weight: bold;
	color: #9E1A1A;
	font-family: 'Cinzel', serif;
}

.footer {
	background: rgba(0, 0, 0, 0.95);
	text-align: center;
	padding: 1.75rem;
	border-top: 3px solid var(--text-strong);
	position: relative;
	z-index: 2;
}

.footer p {
	font-family: var(--font-header);
	color: var(--text-strong);
	font-weight: 600;
}

.footer a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
	color: var(--theme-primary-light);
	border-bottom-color: var(--theme-primary-light);
}

.footer a:visited {
	color: inherit;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	margin: 1.25rem 0;
}

.footer-links a {
	color: inherit;
	text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	text-decoration: underline;
}

.social-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.85rem;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: inherit;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentColor;
}

.social-links a:hover,
.social-links a:focus-visible {
	transform: translateY(-2px);
	opacity: 0.75;
}

.guest-list-card {
	max-width: 900px;
	margin: 0 auto;
	padding: 2.5rem;
	text-align: center;
}

.guest-list-card h3 {
	margin-bottom: 1.25rem;
}

.guest-list-form {
	display: flex;
	justify-content: center;
	align-items: stretch;
	max-width: 600px;
	margin: 0 auto;
}

.guest-list-form .subscribe-form-email {
	flex: 1;
	margin: 0;
}

.guest-list-form .book-button {
	width: auto;
	margin: 0;
	padding: 0.8rem 1.5rem;
}

.subscribe-status {
	min-height: 1.25rem;
	margin: 0.75rem 0 0;
	text-align: center;
	font-size: 0.95rem;
	font-style: italic;
	opacity: 0.85;
}

/*
+--------------------------------------------------------+
+ li section
+--------------------------------------------------------+
*/

	ul{
		padding-left: 2em; 
	}

	li {
		padding-left: 1rem;
		font-size: 1.3rem;
	}

	li::marker {
	  content: var(--li-marker);
	  color: white;
	  padding-right: 0.25em;
	}

	.timeline {
		.info-card {
			h3 {
				padding-bottom: 1em;
			}
			ul {
				padding-left: 0px;
				margin-left: 0px;
			}
			li {
				margin-left: 0px;
			}
		}
	}

/*
+--------------------------------------------------------+
+ about section
+--------------------------------------------------------+
*/

	.about-grid {
		display: grid; 
		grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); 
		gap: 3rem; 
		margin-top: 3rem;
	}

	.about-card {
		background: rgba(10, 10, 10, 0.88);
		border: 2px solid rgba(158, 26, 26, 0.3);
		padding: 2.5rem;
		transition: transform 0.22s ease, opacity 0.22s ease;
		position: relative;
		overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	}

	.about-card:hover {
		background: var(--overlay-dark);
    transform: translateY(-4px);
	}

	.about-card h3 {
		font-family: 'Cinzel', serif;
		color: #9E1A1A;
		font-size: 1.6rem;
		margin-bottom: 1.5rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 1px;
		border-bottom: 2px solid rgba(158, 26, 26, 0.3);
		padding-bottom: 0.8rem;
	}

  .about-card img {
      width: 100%;
      display: block;
      border-radius: 8px;
      margin-bottom: 1rem;
  }

	.about-content {
		line-height: 1.7;
	}

	.about-content p {
		margin-bottom: 1rem;
		opacity: 0.85;
		font-size: 1.3rem;
	}

	.about-content em {
		color: #AAAAAA;
		font-style: italic;
		opacity: 0.7;
		font-size: 1.3em;
	}

  .testimonial-card {
    position: relative;
    overflow: hidden;
    padding-top: 3.25rem;
    border: 1px solid var(--border-primary);
    background: linear-gradient(135deg,  var(--bg-gradient-start), var(--bg-gradient-middle), var(--bg-gradient-end-bright)  );

    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
      );
    transform: translateX(-100%);
    transition: transform 0.65s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-6px) rotate(-0.25deg);
    border-color: var(--theme-primary-dark);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.04);
  }

  .testimonial-card:hover::before {
    transform: translateX(100%);
  }

  .testimonial-quote-mark {
    position: absolute;
    top: -0.35rem;
    left: 1.1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 7rem;
    line-height: 1;
    opacity: 0.12;
    color: var(--text-secondary);
    pointer-events: none;
  }

  .testimonial-rating {
    margin: 0 0 1rem;
    font-size: 2rem !important;
    letter-spacing: 0.18rem;
    color: #ffc42e;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  }

  .testimonial-quote {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.55;
  }

  .testimonial-attribution {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-primary);
  }

  .testimonial-name {
    margin: 0;
    font-family: "Cinzel", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.04rem;
  }

  .testimonial-character {
    margin: 0.35rem 0 0;
    font-style: italic;
    opacity: 0.85;
  }

  .testimonial-source {
    display: inline-block;
    margin: 0.8rem 0 0;
    padding: 0.25rem 0.65rem;
    border: 1px solid var(--border-primary);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    opacity: 0.8;
  }

/*
+--------------------------------------------------------+
+ waiver section
+--------------------------------------------------------+
*/
.waiver-content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.waiver-card-spacer{
	margin-bottom: 3rem;
}

.waiver-checkbox {
	font-family: var(--font-body);
    font-size: 1.55rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    cursor: pointer;
	
	strong {
		color: var(--theme-primary);
	}
	
	input[type="checkbox"], 
	input[type="radio"]{
		width: 24px;
		height: 24px;
		margin-right: 15px;
		margin-top: 2px;
		cursor: pointer;
		accent-color: var(--theme-primary);
	}

}

.waiver-success-title {
	font-family: var(--font-header);
	font-size: 24px;
	color: #00FF00;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 15px;
}

.waiver-success-message {
	display: none;
	background: rgba(0, 200, 0, 0.2);
	border: 2px solid rgba(0, 200, 0, 0.5);
	padding: 30px;
	text-align: center;
	margin-bottom: 30px;
}

.waiver-success-message.show {
	display: block;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    /* Change the icon to white */
    filter: invert(1);
    /* Optional: add a pointer cursor */
    cursor: pointer; 
}

/*
+--------------------------------------------------------+
+ call to action section
+--------------------------------------------------------+
*/

	.call-to-action-container{
		background: rgba(158, 26, 26, 0.1); 
		padding: 3rem; 
		margin-top: 4rem; 
		border: 2px solid rgba(158, 26, 26, 0.3); 
		border-left: 6px solid #9E1A1A;
	}

	.call-to-action-container h3 {
		font-family: 'Cinzel', serif; 
		color: #9E1A1A; 
		font-size: 2rem; 
		margin-bottom: 1.5rem; 
		text-align: center; 
		text-transform: uppercase;
	}

	.call-to-action-container p {
		text-align: center; 
		font-size: 1.2rem; 
		opacity: 0.9; 
		margin-bottom: 2rem;
	}

/*
+--------------------------------------------------------+
+ contact section
+--------------------------------------------------------+
*/

	.contact-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
		gap: 2.5rem;
		margin-top: 3rem;	
	}

	.contact-card {
		background: var(--overlay-dark);
		border: 2px solid rgba(158, 26, 26, 0.3);
		padding: 2.5rem;
		transition: transform 0.22s ease, opacity 0.22s ease;
		position: relative;
		overflow: hidden;
	}

/*
+--------------------------------------------------------+
+ Hero and section
+--------------------------------------------------------+
*/


.hero-info {
	padding: 8rem 2rem 4rem;
	text-align: center;
	position: relative;
	z-index: 2;
	background: 
		radial-gradient(circle at 30% 40%, rgba(158, 26, 26, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 70% 60%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
}

.hero-info h1 {
	font-family: 'Cinzel', serif;
	font-size: 3.5rem;
	color: #9E1A1A;
	margin-bottom: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
}

.hero-info .subtitle {
	font-size: 1.5rem;
	opacity: 0.9;
	margin-bottom: 2rem;
	font-style: italic;
}

.section h1{
  font-family: var(--font-header);
	font-size: 3rem;
	color: var(--text-strong);
	margin-bottom: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
  
}

.section h2 {
	font-family: var(--font-header);
	font-size: 2rem;
	color: var(--text-strong);
	margin-bottom: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
}
.section-small h2 {
	font-family: var(--font-header);
	font-size: 2.5rem;
	color: var(--text-strong);
	margin-bottom: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
}

/*
+--------------------------------------------------------+
+ info card section
+--------------------------------------------------------+
*/


.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.info-grid-logo {
    display: block;
    margin: auto;
    height: 50vh;
	width: 100%;
	background-image: var(--info-logo-img);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.info-card {
	background: var(--overlay-light);
	border: 2px solid;
	border-color: var(--border-accent);
	padding: 2.5rem;
	transition: transform 0.22s ease, opacity 0.22s ease;
  box-shadow: 0 8px 24px var(--shadow-intense);
	position: relative;
	overflow: hidden;
}

.info-card:hover {
	background: var(--overlay-dark);
  transform: translateY(-5px);
}

.game-specific-section h2 {
	font-family: var(--font-header);
	color: var(--text-strong);
	text-transform: uppercase;	
}

.info-card h4 {
	font-family: var(--font-header);
	color: var(--text-strong);
	font-size: 1.4rem;
	margin-bottom: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}


.info-card p, .info-card li {
	font-family: var(--font-body);
	line-height: 1.7;
	margin-bottom: 1rem;
	opacity: 0.9;
	font-size: var(--font-size);
}

.info-card p strong {
	font-size: 1.3rem;
	color: var(--text-strong);
}

.info-card ul {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.dotted-line-btn {
  margin-top: 1rem;
  background: transparent;
  color: var(--theme-primary);
  border: 1px dashed var(--theme-primary);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-family: var(--font-header);
  font-size: 1em;
}

.dotted-line-btn:hover {
  background: var(--theme-hover-bg);
}

/*
+--------------------------------------------------------+
+ FAQ section
+--------------------------------------------------------+
*/

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(10, 10, 10, 0.88);
    border: 2px solid rgba(158, 26, 26, 0.3);
    margin-bottom: 1rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.faq-question {
    font-family: var(--font-header);
    color: var(--text-strong);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-question:hover {
	background: var(--overlay-dark);
	color: var(--theme-primary-light);
}

.faq-icon {
	font-size: 1rem;
	transition: transform 0.2s ease, color 0.2s ease;
	margin-left: 1rem;
	flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #C41E3A;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-top: 1px solid rgba(210, 66, 66, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 450px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1.1rem;
    margin: 0;
}

.faq-cta {
    background: rgba(158, 26, 26, 0.1);
    border: 2px solid rgba(158, 26, 26, 0.3);
    border-left: 6px solid #9E1A1A;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.faq-cta h3 {
    font-family: 'Cinzel', serif;
    color: #9E1A1A;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/*
+--------------------------------------------------------+
+ Sold out section
+--------------------------------------------------------+
*/
.event-card.sold-out {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.event-card.sold-out::after {
    content: 'SOLD OUT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 3rem;
    font-weight: 700;
    color: #9E1A1A;
    background: rgba(0, 0, 0, 0.95);
    padding: 1.5rem 3rem;
    border: 4px solid #9E1A1A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
    z-index: 10;
    box-shadow: 0 0 30px rgba(158, 26, 26, 0.8);
}

/* Alternative: Diagonal Stripe Style */
.event-card.sold-out-stripe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(158, 26, 26, 0.1),
        rgba(158, 26, 26, 0.1) 10px,
        rgba(0, 0, 0, 0.3) 10px,
        rgba(0, 0, 0, 0.3) 20px
    );
    z-index: 5;
    pointer-events: none;
}

/* Disable hover effects for sold out events */
.event-card.sold-out:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(158, 26, 26, 0.3);
}

.event-card.sold-out:hover::before {
    opacity: 0;
}

/* Make the book button disabled */
.event-card.sold-out .book-button {
    background: linear-gradient(45deg, #666, #888);
    cursor: not-allowed;
    pointer-events: none;
}

.event-card.sold-out .book-button::before {
    display: none;
}

/* Alternative: Stamp Style */
.event-card.sold-out-stamp::after {
    content: 'SOLD OUT';
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #9E1A1A;
    background: rgba(0, 0, 0, 0.9);
    padding: 0.8rem 1.5rem;
    border: 3px solid #9E1A1A;
    border-radius: 50%;
    transform: rotate(20deg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    z-index: 10;
}

/* Add a subtle "X" pattern */
.event-card.sold-out-x::before {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    color: rgba(158, 26, 26, 0.1);
    z-index: 1;
    pointer-events: none;
}

/* Grayscale filter option */
.event-card.sold-out-grayscale {
    filter: grayscale(80%);
}

.event-card.sold-out-grayscale:hover {
    filter: grayscale(80%);
}

/*
+--------------------------------------------------------+
+ media section
+--------------------------------------------------------+
*/

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.8rem;
	}
	
  .section h2 {
    font-size: 1.4rem;
  }
  
  li {
    font-size: 1rem;
  }
  
	.logo {
		font-size: 1.8rem;
	}
	
	.logo::before,
	.logo::after {
		display: none;
	}
	
	.logo-collapse {
		display:none;
	}
	
	.events-grid {
		grid-template-columns: 1fr;
	}
	
	.about-grid {
		grid-template-columns: 1fr;
	}
	
	.info-grid {
		grid-template-columns: 1fr;
	}
	
	.info-card p, .info-card li {
		font-size: 1.5rem;
	}
	
	.contact-grid {
		grid-template-columns: 1fr;
	}
	
	.modal-content {
		margin: 5% 1rem;
		padding: 2rem;
	}
	
	.cta-button {
		font-size: 0.6em;
	}
	
	.call-to-action-container{
		padding: 2rem; 
	}
	
	.info-card ul {
		margin-left: 0rem;
		padding-left: 0em;
	}
	
  .faq-question {
      font-size: 1rem;
      padding: 1.2rem 1.5rem;
      text-transform: none;
      letter-spacing: 0.5px;
  }
  
  .faq-answer {
      padding: 0rem;
  }
  
  .faq-answer p {
      font-size: 1rem;
  }
  
  .faq-cta {
      padding: 2rem 1.5rem;
  }
  
  .faq-cta h3 {
      font-size: 1.5rem;
  }

  .event-card.sold-out::after {
      font-size: 2rem;
      padding: 1rem 2rem;
      letter-spacing: 2px;
  }
  
  .event-card.sold-out-stamp::after {
      font-size: 1.2rem;
      padding: 0.6rem 1rem;
      top: 10px;
      right: 10px;
  }
  
  .guest-list-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .guest-list-form .book-button {
    width: 100%;
  }
  
  .event-card h3 {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding-top: 2.75rem;
  }

  .testimonial-quote-mark {
    font-size: 5.5rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }
    
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}