@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);
	background-color: var(--bg-gradient-start);
	background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-middle) 50%, var(--bg-gradient-end) 100%);
	color: #e8e8e8;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
	padding-top: env(safe-area-inset-top);
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 2px,
			rgba(158, 26, 26, 0.03) 2px,
			rgba(158, 26, 26, 0.03) 4px
		),
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(158, 26, 26, 0.03) 2px,
			rgba(158, 26, 26, 0.03) 4px
		);
	pointer-events: none;
	z-index: 1;
}

.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;
	animation: float 25s ease-in-out infinite;
}

.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: all 0.4s 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;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px var(--theme-primary-glow);
	border-color: rgba(255, 255, 255, 0.4);
}

.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 .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-dark);
	backdrop-filter: blur(15px);
	border: 2px solid;
	border-color: var(--border-primary);
	padding: 2.5rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.event-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: var(--theme-hover-bg);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.event-card:hover::before {
	opacity: 1;
}

.event-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px var(--shadow-intense);
}

.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-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 {
	background: linear-gradient(45deg, 
        var(--bg-gradient-middle), 
        var(--bg-gradient-end-bright));
	color: var(--text-primary);
	padding: 1rem 2rem;
	border: 2px solid;
	border-color: var(--theme-primary-glow);
	cursor: pointer;
	width: 100%;
	font-size: 1.1rem;
	font-weight: bold;
	transition: all 0.4s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: var(--font-header);
	position: relative;
	overflow: hidden;
}

.book-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s;
}

.book-button:hover::before {
	left: 100%;
}

.book-button:hover {
	background: linear-gradient(45deg, var(--bg-gradient-end-bright), var(--theme-primary-light));
	transform: translateY(-2px);
	box-shadow: 0 8px 25px var(--theme-primary-glow);
}

.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 #9E1A1A;
	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: #9E1A1A;
	transition: all 0.3s;
	font-weight: bold;
}

.close:hover {
	color: #C41E3A;
	transform: scale(1.2);
}

.modal h2 {
	font-family: 'Cinzel', serif;
	color: #9E1A1A;
	margin-bottom: 2rem;
	text-align: center;
	font-size: 2.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}



/*
+--------------------------------------------------------------------------------------------------+
+  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: all 0.3s 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);
}

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: all 0.4s ease;
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px var(--shadow-glow);
	border-color: rgba(255, 255, 255, 0.4);
}

.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: 3rem;
	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;
}


/*
+--------------------------------------------------------+
+ li section
+--------------------------------------------------------+
*/

	ul{
		padding-left: 2em; 
	}

	li {
		padding-left: 1em;
		font-size: 1.2em;
	}

	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(0, 0, 0, 0.7);
		backdrop-filter: blur(15px);
		border: 2px solid rgba(158, 26, 26, 0.3);
		padding: 2.5rem;
		transition: all 0.4s ease;
		position: relative;
		overflow: hidden;
	}

	.about-card::before {
		content: '';
		position: absolute;
		top: -2px;
		left: -2px;
		right: -2px;
		bottom: -2px;
		background: #000000;
		z-index: -1;
		opacity: 0;
		transition: opacity 0.4s ease;
	}

	.about-card:hover::before {
		opacity: 1;
	}

	.about-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
	}

	.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-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;
	}

/*
+--------------------------------------------------------+
+ 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;
	backdrop-filter: blur(var(--blur-strength));
}

.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: rgba(0, 0, 0, 0.7);
		backdrop-filter: blur(15px);
		border: 2px solid rgba(158, 26, 26, 0.3);
		padding: 2.5rem;
		transition: all 0.4s ease;
		position: relative;
		overflow: hidden;
	}

	.subscribe-form-email {
		width: 60% !important;
	}

/*
+--------------------------------------------------------+
+ 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 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);
	backdrop-filter: blur(var(--blur-strength));
	border: 2px solid;
	border-color: var(--border-accent);
	padding: 2.5rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.info-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.info-card:hover::before {
	opacity: 1;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px  var(--shadow-intense);
}

.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(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(158, 26, 26, 0.3);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover::before {
    opacity: 0.3;
}

.faq-question {
    font-family: 'Cinzel', serif;
    color: #9E1A1A;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-question:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.faq-icon {
    font-size: 1rem;
    transition: all 0.3s 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: 300px;
    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;
	}
	
	.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;
    }
}