/* ============================================================
   CowBoys of Dothan — Main Stylesheet
   Primary: #be2900 | Dark: #111 | Accent grays: #1e1e1e, #2a2a2a, #3a3a3a
   ============================================================ */

/* ── Reset & Base ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--red: #be2900;
	--red-dark: #9a2100;
	--red-light: #d93000;
	--black: #0a0a0a;
	--dark-1: #111111;
	--dark-2: #1a1a1a;
	--dark-3: #252525;
	--dark-4: #2e2e2e;
	--gray-1: #3a3a3a;
	--gray-2: #555555;
	--gray-3: #888888;
	--gray-4: #b0b0b0;
	--gray-5: #d0d0d0;
	--white: #f5f5f5;
	--font-head: "Bebas Neue", "Anton", sans-serif;
	--font-sub: "Oswald", sans-serif;
	--font-body: "Open Sans", sans-serif;
	--transition: 0.3s ease;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
	--shadow-red: 0 0 20px rgba(190, 41, 0, 0.4);
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	background: var(--black);
	color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
ul {
	list-style: none;
}
button {
	cursor: pointer;
	border: none;
	outline: none;
	background: none;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-pad {
	padding: 100px 0;
}
.section-pad-sm {
	padding: 70px 0;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-head);
	letter-spacing: 0.04em;
	line-height: 1.1;
}

.section-title {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	color: var(--white);
	margin-bottom: 0.3em;
}

.section-title span {
	color: var(--red);
}

.section-subtitle {
	font-family: var(--font-sub);
	font-size: 1rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 0.6em;
	display: block;
}

.section-desc {
	color: var(--gray-4);
	max-width: 600px;
	margin-bottom: 2.5rem;
	font-size: 1.05rem;
}

.divider {
	width: 60px;
	height: 3px;
	background: var(--red);
	margin: 1rem 0 2rem;
}

.divider-center {
	margin-left: auto;
	margin-right: auto;
}

/* ── Buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.85em 2.2em;
	font-family: var(--font-sub);
	font-size: 0.9rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	border-radius: 2px;
}

.btn-primary {
	background: var(--red);
	color: var(--white);
	border: 2px solid var(--red);
}

.btn-primary:hover {
	background: var(--red-dark);
	border-color: var(--red-dark);
	box-shadow: var(--shadow-red);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.btn-outline:hover {
	background: var(--white);
	color: var(--black);
	transform: translateY(-2px);
}

.btn-outline-red {
	background: transparent;
	color: var(--red);
	border: 2px solid var(--red);
}

.btn-outline-red:hover {
	background: var(--red);
	color: var(--white);
	box-shadow: var(--shadow-red);
	transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 0;
	transition:
		background 0.4s ease,
		padding 0.4s ease,
		box-shadow 0.4s ease;
}

.navbar.scrolled {
	background: rgba(10, 10, 10, 0.97);
	padding: 0.6rem 0;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.nav-logo .logo-icon {
	font-size: 1.8rem;
	color: var(--red);
}

.nav-logo .logo-text {
	font-family: var(--font-head);
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1;
}

.nav-logo .logo-text span {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	font-family: var(--font-sub);
	color: var(--gray-4);
	text-transform: uppercase;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.nav-link {
	font-family: var(--font-sub);
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gray-4);
	padding: 0.5em 0.9em;
	border-radius: 2px;
	transition: color var(--transition);
	position: relative;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 50%;
	right: 50%;
	height: 2px;
	background: var(--red);
	transition:
		left var(--transition),
		right var(--transition);
}

.nav-link:hover,
.nav-link.active {
	color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
	left: 0.9em;
	right: 0.9em;
}

.nav-cta {
	margin-left: 0.8rem;
	padding: 0.5em 1.4em;
	font-family: var(--font-sub);
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--red);
	color: var(--white);
	border-radius: 2px;
	transition: var(--transition);
	border: 2px solid var(--red);
}

.nav-cta:hover {
	background: var(--red-dark);
	border-color: var(--red-dark);
	box-shadow: var(--shadow-red);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 28px;
	cursor: pointer;
	padding: 4px;
}

.hamburger span {
	display: block;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--black);
	padding-bottom: 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.hero-bg-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.02);
	transition:
		opacity 1.05s ease,
		transform 6s ease;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-bg-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.42) 100%),
		linear-gradient(135deg, rgba(190, 41, 0, 0.14) 0%, transparent 55%),
		radial-gradient(
			ellipse at 70% 50%,
			rgba(190, 41, 0, 0.06) 0%,
			transparent 62%
		),
		linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-bg-slide.active {
	opacity: 1;
	transform: scale(1);
}

.hero-pattern {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 50px,
		rgba(190, 41, 0, 0.03) 50px,
		rgba(190, 41, 0, 0.03) 51px
	);
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 750px;
	width: 100%;
	min-height: 0;
}
.hero-slider-shell {
	position: relative;
	z-index: 2;
	min-height: 620px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: 750px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	pointer-events: none;
	transition:
		opacity 0.8s ease,
		transform 0.8s ease,
		visibility 0.8s ease;
}

.hero-slide.active {
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	background: rgba(190, 41, 0, 0.15);
	border: 1px solid rgba(190, 41, 0, 0.4);
	color: var(--red);
	font-family: var(--font-sub);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 0.4em 1.1em;
	border-radius: 2px;
	margin-bottom: 1.5rem;
}

.hero-badge i {
	font-size: 0.9em;
}

.hero-title {
	font-size: clamp(3.5rem, 9vw, 7rem);
	color: var(--white);
	line-height: 1;
	margin-bottom: 0.2em;
}

.hero-title .line-red {
	color: var(--red);
	display: block;
}

.hero-title .line-outline {
	-webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
	color: transparent;
	display: block;
}

.hero-subtitle {
	font-family: var(--font-sub);
	font-size: clamp(1rem, 2.5vw, 1.35rem);
	color: var(--gray-4);
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.hero-subtitle strong {
	color: var(--white);
}

.hero-desc {
	font-size: 1.1rem;
	color: var(--gray-3);
	max-width: 550px;
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.hero-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}
.hero-slider-nav {
	position: static;
	z-index: 3;
	display: flex;
	gap: 0.7rem;
	align-self: flex-end;
	margin-top: 1rem;
}

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.hero-slide {
  flex: 0 0 100%;
}

.hero-navigation {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.hero-arrow:hover {
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.1);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

  .hero-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .hero-dot {
    width: 10px;
    height: 10px;
  }
 
  .image-slider-list {
    animation-duration: 28s;
  }
  .image-slide {
    width: 170px;
  }
  .image-slide img {
    height: 105px;
  }
 
.hero-slider-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.45);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}

.hero-slider-btn:hover {
	border-color: var(--red);
	background: rgba(190, 41, 0, 0.25);
	transform: translateY(-1px);
}

.hero-slider-btn:focus-visible {
	outline: 2px solid var(--red);
	outline-offset: 2px;
}

.hero-slider-dots {
	position: static;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 0.8rem;
}

.hero-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: var(--transition);
}

.hero-slider-dot.active {
	width: 28px;
	border-radius: 99px;
	background: var(--red);
}

.hero-slider-dot:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

.hero-scroll {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--gray-3);
	font-family: var(--font-sub);
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	animation: bounce 2s infinite;
}

.hero-scroll i {
	font-size: 1.2rem;
	color: var(--red);
}

@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(6px);
	}
}

.hero-stats {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-right: 2rem;
}

.stat-item {
	text-align: right;
}

.stat-num {
	font-family: var(--font-head);
	font-size: 3rem;
	color: var(--red);
	line-height: 1;
}

.stat-label {
	font-family: var(--font-sub);
	font-size: 0.72rem;
	color: var(--gray-3);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.hero-slide {
  flex: 0 0 100%;
}

.hero-navigation {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.hero-arrow:hover {
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.1);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ── Ticker / Announcement Bar ── */
.ticker-bar {
	background: var(--red);
	padding: 0.6rem 0;
	overflow: hidden;
	position: relative;
}

.ticker-inner {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* ── Announcement Image Slider ── */
.image-slider-bar {
  background: var(--dark-1);
  padding: 0.8rem 0;
  overflow: hidden;
}

.image-slider-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.image-slider-label {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25em 1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.image-slider-track {
  flex: 1;
  overflow: hidden;
}

.image-slider-list {
  display: flex;
  gap: 0.1rem;
  animation: slideImages var(--slide-duration, 26s) linear infinite;
  will-change: transform;
}

.image-slider-bar:hover .image-slider-list {
  animation-play-state: paused;
}

.image-slide {
  flex: 0 0 auto;
  width: 150px;
  min-width: 100px;
}

.image-slide img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: contain;
  max-height: 100px;
}

@media (max-width: 1024px) {
  .image-slide {
    width: 110px;
    min-width: 90px;
  }

  .image-slider-bar {
    padding: 0.7rem 0;
  }

  .image-slider-inner {
    gap: 0.7rem;
  }
}

@media (max-width: 768px) {
  .image-slide {
    width: 90px;
    min-width: 80px;
  }

  .image-slider-bar {
    padding: 0.6rem 0;
  }

  .image-slider-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .image-slide {
    width: 70px;
    min-width: 60px;
  }

  .image-slide img {
    height: 80px;
    max-height: 80px;
  }

  .image-slider-bar {
    padding: 0.5rem 0;
  }

  .image-slider-inner {
    gap: 0.5rem;
  }
}

@media (max-width: 360px) {
  .image-slide {
    width: 60px;
    min-width: 50px;
  }

  .image-slide img {
    height: 70px;
    max-height: 70px;
  }

  .image-slider-bar {
    padding: 0.4rem 0;
  }

  .image-slider-inner {
    gap: 0.3rem;
  }
}

.image-slider-bar {
  padding: 1rem 0;
  /* background: #BE2900; */
  background: #2b2b2b;
}

.image-slider-track {
  padding: 0.4rem 0;
}
@keyframes slideImages {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-label {
	background: var(--dark-1);
	color: var(--red);
	font-family: var(--font-sub);
	font-size: 0.78rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.25em 1em;
	white-space: nowrap;
	flex-shrink: 0;
}

.ticker-track {
	overflow: hidden;
	flex: 1;
}

.ticker-list {
	display: flex;
	gap: 3rem;
	animation: ticker 30s linear infinite;
	white-space: nowrap;
}

.ticker-list span {
	font-family: var(--font-sub);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	color: var(--white);
	text-transform: uppercase;
	flex-shrink: 0;
}

.ticker-list span i {
	margin-right: 0.5em;
	opacity: 0.7;
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ── About Section ── */
.about-section {
	background: var(--dark-1);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image-wrap {
	position: relative;
}

.about-img-main {
	width: 100%;
	border-radius: 4px;
	object-fit: cover;
	height: 480px;
}

.about-img-placeholder {
	width: 100%;
	height: 480px;
	background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--gray-2);
	font-size: 5rem;
	position: relative;
	overflow: hidden;
}

.about-img-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 20px,
		rgba(190, 41, 0, 0.04) 20px,
		rgba(190, 41, 0, 0.04) 21px
	);
}

.about-img-placeholder i {
	position: relative;
	z-index: 1;
}

.about-badge-img {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	width: 130px;
	height: 130px;
	background: var(--red);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 4px solid var(--dark-1);
	box-shadow: var(--shadow);
}

.about-badge-img .year {
	font-family: var(--font-head);
	font-size: 2rem;
	line-height: 1;
	color: var(--white);
}

.about-badge-img .since {
	font-family: var(--font-sub);
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 2rem 0;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 1rem;
	background: var(--dark-2);
	border-radius: 4px;
	border-left: 3px solid var(--red);
	transition: var(--transition);
}

.feature-item:hover {
	background: var(--dark-3);
	transform: translateX(4px);
}

.feature-item i {
	color: var(--red);
	font-size: 1.2rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.feature-item h4 {
	font-family: var(--font-sub);
	font-size: 0.9rem;
	color: var(--white);
	margin-bottom: 0.15rem;
	letter-spacing: 0.05em;
}

.feature-item p {
	font-size: 0.82rem;
	color: var(--gray-3);
}

/* ── Events Section ── */
.events-section {
	background: var(--black);
}

.events-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.event-card {
	background: var(--dark-2);
	border-radius: 4px;
	overflow: hidden;
	transition: var(--transition);
	position: relative;
	border: 1px solid var(--dark-3);
}

.event-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow), var(--shadow-red);
	border-color: rgba(190, 41, 0, 0.3);
}

.event-card.featured {
	grid-column: span 2;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
}

.event-card.featured .event-image {
	height: 100%;
	min-height: 280px;
}

.event-image {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.event-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--dark-3) 0%, var(--gray-1) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-2);
	font-size: 3rem;
}

.event-img-placeholder.variant-1 {
	background: linear-gradient(135deg, #1a0800 0%, #3a1500 100%);
}
.event-img-placeholder.variant-2 {
	background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
}
.event-img-placeholder.variant-3 {
	background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 100%);
}
.event-img-placeholder.variant-4 {
	background: linear-gradient(135deg, #1a1a00 0%, #3a3a00 100%);
}

.event-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--red);
	color: var(--white);
	font-family: var(--font-sub);
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.25em 0.8em;
	border-radius: 2px;
}

.event-date-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.85);
	border: 1px solid rgba(190, 41, 0, 0.4);
	text-align: center;
	padding: 0.5em 0.8em;
	border-radius: 2px;
}

.event-date-badge .month {
	font-family: var(--font-sub);
	font-size: 0.68rem;
	color: var(--red);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	display: block;
}

.event-date-badge .day {
	font-family: var(--font-head);
	font-size: 1.6rem;
	color: var(--white);
	line-height: 1;
	display: block;
}

.event-body {
	padding: 1.5rem;
}

.event-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.8rem;
	flex-wrap: wrap;
}

.event-meta span {
	font-family: var(--font-sub);
	font-size: 0.78rem;
	color: var(--gray-3);
	letter-spacing: 0.08em;
	display: flex;
	align-items: center;
	gap: 0.3em;
}

.event-meta span i {
	color: var(--red);
	font-size: 0.8em;
}

.event-title {
	font-size: 1.4rem;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.event-desc {
	font-size: 0.9rem;
	color: var(--gray-3);
	margin-bottom: 1.2rem;
	line-height: 1.7;
}

.event-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid var(--dark-4);
}

.event-price {
	font-family: var(--font-head);
	font-size: 1.5rem;
	color: var(--red);
}

.event-price small {
	font-family: var(--font-sub);
	font-size: 0.75rem;
	color: var(--gray-3);
	display: block;
	line-height: 1;
}

/* ── Entertainment Section ── */
.entertain-section {
	background: var(--dark-1);
	overflow: hidden;
}

.entertain-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.entertain-card {
	background: var(--dark-2);
	border-radius: 4px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	border: 1px solid transparent;
}

.entertain-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--red);
	transform: scaleX(0);
	transition: transform var(--transition);
}

.entertain-card:hover {
	background: var(--dark-3);
	border-color: rgba(190, 41, 0, 0.2);
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.entertain-card:hover::before {
	transform: scaleX(1);
}

.entertain-icon {
	width: 70px;
	height: 70px;
	background: rgba(190, 41, 0, 0.1);
	border: 2px solid rgba(190, 41, 0, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	font-size: 1.6rem;
	color: var(--red);
	transition: var(--transition);
}

.entertain-card:hover .entertain-icon {
	background: var(--red);
	color: var(--white);
	box-shadow: var(--shadow-red);
}

.entertain-card h3 {
	font-size: 1.1rem;
	color: var(--white);
	margin-bottom: 0.6rem;
	letter-spacing: 0.05em;
}

.entertain-card p {
	font-size: 0.88rem;
	color: var(--gray-3);
	line-height: 1.7;
}

/* ── Gallery Section ── */
.gallery-section {
	background: var(--black);
}

.gallery-filter {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.filter-btn {
	font-family: var(--font-sub);
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gray-3);
	padding: 0.5em 1.2em;
	border: 1px solid var(--dark-4);
	border-radius: 2px;
	background: var(--dark-2);
	transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--red);
	color: var(--white);
	border-color: var(--red);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 8px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	cursor: pointer;
}

.gallery-item.tall {
	grid-row: span 2;
}
.gallery-item.wide {
	grid-column: span 2;
}

.gallery-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: var(--gray-2);
	transition: transform 0.4s ease;
}

.gp-1 {
	background: linear-gradient(135deg, #1a0800 0%, #3a1500 80%);
}
.gp-2 {
	background: linear-gradient(135deg, #0d0d0d 0%, #2a2a2a 80%);
}
.gp-3 {
	background: linear-gradient(135deg, #1a0500 0%, #3d1000 80%);
}
.gp-4 {
	background: linear-gradient(135deg, #0a0a0a 0%, #252525 80%);
}
.gp-5 {
	background: linear-gradient(135deg, #200800 0%, #4a1800 80%);
}
.gp-6 {
	background: linear-gradient(135deg, #111 0%, #333 80%);
}
.gp-7 {
	background: linear-gradient(135deg, #180400 0%, #380e00 80%);
}
.gp-8 {
	background: linear-gradient(135deg, #0a0505 0%, #2a1010 80%);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(190, 41, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-overlay i {
	color: var(--white);
	font-size: 2rem;
}

.gallery-item:hover .gallery-placeholder {
	transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

/* ── Lightbox ── */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.lightbox.open {
	opacity: 1;
	pointer-events: all;
}

.lightbox-content {
	max-width: 90vw;
	max-height: 90vh;
	position: relative;
}

.lightbox-close {
	position: absolute;
	top: -2.5rem;
	right: 0;
	color: var(--white);
	font-size: 1.5rem;
	cursor: pointer;
	transition: color var(--transition);
}

.lightbox-close:hover {
	color: var(--red);
}

/* ── Testimonials ── */
.testimonials-section {
	background: var(--dark-1);
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '"';
	position: absolute;
	top: -2rem;
	left: 5%;
	font-size: 20rem;
	font-family: var(--font-head);
	color: rgba(190, 41, 0, 0.05);
	line-height: 1;
	pointer-events: none;
}

.testimonials-slider {
	overflow: hidden;
	margin-top: 3rem;
}

.testimonials-track {
	display: flex;
	gap: 1.5rem;
	transition: transform 0.5s ease;
}

.testimonial-card {
	flex: 0 0 calc(33.33% - 1rem);
	background: var(--dark-2);
	border-radius: 4px;
	padding: 2rem;
	border: 1px solid var(--dark-3);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-family: var(--font-head);
	font-size: 4rem;
	color: rgba(190, 41, 0, 0.2);
	line-height: 1;
}

.stars {
	display: flex;
	gap: 0.2rem;
	margin-bottom: 1rem;
}

.stars i {
	color: var(--red);
	font-size: 0.9rem;
}

.testimonial-text {
	font-size: 0.95rem;
	color: var(--gray-4);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.author-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-family: var(--font-head);
	font-size: 1.2rem;
	flex-shrink: 0;
}

.author-info h4 {
	font-size: 0.95rem;
	color: var(--white);
}

.author-info span {
	font-size: 0.8rem;
	color: var(--gray-3);
}

.slider-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 2.5rem;
	justify-content: center;
}

.slider-btn {
	width: 42px;
	height: 42px;
	border: 1px solid var(--gray-1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-3);
	transition: var(--transition);
}

.slider-btn:hover {
	border-color: var(--red);
	color: var(--red);
	background: rgba(190, 41, 0, 0.1);
}

.slider-dots {
	display: flex;
	gap: 0.5rem;
}

.slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gray-1);
	cursor: pointer;
	transition: var(--transition);
}

.slider-dot.active {
	background: var(--red);
	width: 24px;
	border-radius: 4px;
}

/* ── CTA Banner ── */
.cta-banner {
	background: var(--red);
	position: relative;
	overflow: hidden;
	padding: 80px 0;
}

.cta-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 30px,
		rgba(0, 0, 0, 0.05) 30px,
		rgba(0, 0, 0, 0.05) 31px
	);
}

.cta-banner .container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.cta-text h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--white);
	margin-bottom: 0.5rem;
}

.cta-text p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
}

.cta-banner .btn-outline {
	border-color: var(--white);
	color: var(--white);
	white-space: nowrap;
}

.cta-banner .btn-outline:hover {
	background: var(--white);
	color: var(--red);
}

/* ── Map / Location ── */
.location-section {
	background: var(--black);
}

.location-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 4rem;
	align-items: center;
}

.location-info h3 {
	font-size: 1.8rem;
	color: var(--white);
	margin-bottom: 1.5rem;
}

.location-detail {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.2rem;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid var(--dark-3);
}

.location-detail:last-of-type {
	border-bottom: none;
}

.location-detail i {
	color: var(--red);
	font-size: 1.2rem;
	margin-top: 2px;
	flex-shrink: 0;
	width: 20px;
}

.location-detail h4 {
	font-family: var(--font-sub);
	font-size: 0.85rem;
	color: var(--gray-3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.location-detail p {
	color: var(--white);
	font-size: 0.95rem;
}

.map-container {
	border-radius: 4px;
	overflow: hidden;
	height: 380px;
	background: var(--dark-2);
	position: relative;
}

.map-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
	position: relative;
	overflow: hidden;
}

.map-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 30px,
			rgba(190, 41, 0, 0.05) 30px,
			rgba(190, 41, 0, 0.05) 31px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 30px,
			rgba(190, 41, 0, 0.05) 30px,
			rgba(190, 41, 0, 0.05) 31px
		);
}

.map-placeholder i {
	font-size: 3.5rem;
	color: var(--red);
	position: relative;
	z-index: 1;
}

.map-placeholder p {
	color: var(--gray-3);
	font-family: var(--font-sub);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}

.map-placeholder a {
	position: relative;
	z-index: 1;
}

/* ── Newsletter ── */
.newsletter-section {
	background: var(--dark-1);
	padding: 80px 0;
}

.newsletter-wrap {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-wrap .section-subtitle {
	display: block;
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	margin-top: 2rem;
}

.newsletter-form input {
	flex: 1;
	padding: 0.85em 1.4em;
	background: var(--dark-2);
	border: 1px solid var(--dark-4);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 0.95rem;
	border-radius: 2px;
	transition: border-color var(--transition);
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--red);
}

.newsletter-form input::placeholder {
	color: var(--gray-2);
}

/* ── Footer ── */
.footer {
	background: var(--dark-1);
	border-top: 1px solid var(--dark-3);
	padding: 70px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand .nav-logo {
	margin-bottom: 1.2rem;
}

.footer-brand p {
	font-size: 0.9rem;
	color: var(--gray-3);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	gap: 0.6rem;
}

.social-link {
	width: 36px;
	height: 36px;
	background: var(--dark-3);
	border: 1px solid var(--dark-4);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-3);
	font-size: 0.95rem;
	transition: var(--transition);
}

.social-link:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
	transform: translateY(-2px);
}

.footer-col h4 {
	font-family: var(--font-sub);
	font-size: 0.85rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 1.2rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid var(--dark-3);
}

.footer-links li {
	margin-bottom: 0.6rem;
}

.footer-links a {
	font-size: 0.9rem;
	color: var(--gray-3);
	transition: color var(--transition);
	display: flex;
	align-items: center;
	gap: 0.4em;
}

.footer-links a i {
	font-size: 0.6rem;
	color: var(--red);
}

.footer-links a:hover {
	color: var(--red);
}

.footer-hours li {
	display: flex;
	justify-content: space-between;
	font-size: 0.88rem;
	color: var(--gray-3);
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours li:last-child {
	border-bottom: none;
}
.footer-hours li span:first-child {
	color: var(--gray-4);
}
.footer-hours li span:last-child {
	color: var(--white);
}

.footer-bottom {
	border-top: 1px solid var(--dark-3);
	padding: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-bottom p {
	font-size: 0.82rem;
	color: var(--gray-2);
}

.footer-bottom p a {
	color: var(--red);
	transition: color var(--transition);
}

.footer-bottom p a:hover {
	color: var(--red-light);
}

.footer-bottom-links {
	display: flex;
	gap: 1.5rem;
}

.footer-bottom-links a {
	font-size: 0.82rem;
	color: var(--gray-2);
	transition: color var(--transition);
}

.footer-bottom-links a:hover {
	color: var(--white);
}

/* ── Page Header ── */
.page-header {
	padding: 160px 0 80px;
	background: var(--dark-1);
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(190, 41, 0, 0.08) 0%,
		transparent 60%
	);
}

.page-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.page-header-content {
	position: relative;
	z-index: 1;
}

.page-header h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	color: var(--white);
	margin-bottom: 0.5rem;
}

.page-header h1 span {
	color: var(--red);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-sub);
	font-size: 0.82rem;
	color: var(--gray-3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 1rem;
}

.breadcrumb a {
	color: var(--red);
}
.breadcrumb i {
	font-size: 0.5rem;
	color: var(--gray-2);
}

/* ── Events Page ── */
.events-list-section {
	background: var(--black);
}

.events-filters {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	align-items: center;
}

.events-filters label {
	font-family: var(--font-sub);
	font-size: 0.82rem;
	color: var(--gray-3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-right: 0.5rem;
}

.events-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.event-row {
	display: grid;
	grid-template-columns: 120px 1fr auto;
	gap: 1.5rem;
	align-items: center;
	background: var(--dark-2);
	border-radius: 4px;
	padding: 1.5rem;
	border: 1px solid var(--dark-3);
	transition: var(--transition);
}

.event-row:hover {
	border-color: rgba(190, 41, 0, 0.3);
	transform: translateX(4px);
	box-shadow: -4px 0 0 var(--red);
}

.event-row-date {
	text-align: center;
	background: var(--dark-3);
	padding: 1rem;
	border-radius: 2px;
}

.event-row-date .day {
	font-family: var(--font-head);
	font-size: 2.5rem;
	color: var(--red);
	line-height: 1;
}

.event-row-date .month {
	font-family: var(--font-sub);
	font-size: 0.75rem;
	color: var(--gray-3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.event-row-date .year {
	font-size: 0.8rem;
	color: var(--gray-2);
}

.event-row-info h3 {
	font-size: 1.4rem;
	color: var(--white);
	margin-bottom: 0.4rem;
}

.event-row-info .event-meta {
	margin-bottom: 0.5rem;
}

.event-row-info p {
	font-size: 0.88rem;
	color: var(--gray-3);
}

.event-row-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.8rem;
}

.event-row-action .price {
	font-family: var(--font-head);
	font-size: 1.8rem;
	color: var(--red);
	white-space: nowrap;
}

/* ── About Page ── */
.about-hero-section {
	background: var(--dark-1);
}

.about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.about-story p {
	font-size: 1rem;
	color: var(--gray-4);
	line-height: 1.9;
	margin-bottom: 1.2rem;
}

.timeline {
	position: relative;
	padding-left: 2rem;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--red) 0%, var(--dark-4) 100%);
}

.timeline-item {
	position: relative;
	margin-bottom: 2rem;
	padding-left: 1.5rem;
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: -2.5rem;
	top: 0.4rem;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--red);
	border: 2px solid var(--black);
	box-shadow: 0 0 0 3px rgba(190, 41, 0, 0.3);
}

.timeline-year {
	font-family: var(--font-sub);
	font-size: 0.78rem;
	color: var(--red);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 0.3rem;
}

.timeline-item h3 {
	font-size: 1.1rem;
	color: var(--white);
	margin-bottom: 0.3rem;
}

.timeline-item p {
	font-size: 0.88rem;
	color: var(--gray-3);
	line-height: 1.7;
}

.team-section {
	background: var(--black);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.team-card {
	background: var(--dark-2);
	border-radius: 4px;
	overflow: hidden;
	text-align: center;
	transition: var(--transition);
}

.team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.team-photo {
	width: 100%;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	position: relative;
	overflow: hidden;
}

.team-photo.tp-1 {
	background: linear-gradient(135deg, #1a0800, #3a1500);
	color: var(--gray-2);
}
.team-photo.tp-2 {
	background: linear-gradient(135deg, #0a0a1a, #1a1a3a);
	color: var(--gray-2);
}
.team-photo.tp-3 {
	background: linear-gradient(135deg, #0a1800, #1a3000);
	color: var(--gray-2);
}
.team-photo.tp-4 {
	background: linear-gradient(135deg, #1a1000, #3a2800);
	color: var(--gray-2);
}

.team-info {
	padding: 1.2rem;
	border-top: 2px solid var(--red);
}

.team-info h3 {
	font-size: 1.1rem;
	color: var(--white);
	margin-bottom: 0.2rem;
}

.team-info span {
	font-family: var(--font-sub);
	font-size: 0.78rem;
	color: var(--red);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* ── Contact Page ── */
.contact-section {
	background: var(--black);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-form {
	background: var(--dark-2);
	padding: 2.5rem;
	border-radius: 4px;
	border: 1px solid var(--dark-3);
}

.contact-form h3 {
	font-size: 1.8rem;
	color: var(--white);
	margin-bottom: 0.3rem;
}

.contact-form p {
	font-size: 0.9rem;
	color: var(--gray-3);
	margin-bottom: 2rem;
}

.form-group {
	margin-bottom: 1.2rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group label {
	display: block;
	font-family: var(--font-sub);
	font-size: 0.78rem;
	color: var(--gray-3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.8em 1em;
	background: var(--dark-3);
	border: 1px solid var(--dark-4);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 0.95rem;
	border-radius: 2px;
	transition: border-color var(--transition);
	appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--red);
	background: var(--dark-4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--gray-2);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1em center;
	padding-right: 2.5em;
	cursor: pointer;
}

.form-success {
	display: none;
	background: rgba(0, 180, 0, 0.1);
	border: 1px solid rgba(0, 180, 0, 0.3);
	color: #6adf6a;
	padding: 1rem;
	border-radius: 2px;
	font-family: var(--font-sub);
	font-size: 0.88rem;
	letter-spacing: 0.08em;
	text-align: center;
	margin-top: 1rem;
}

.form-success.is-visible {
	display: block;
}

.form-error {
	background: rgba(190, 41, 0, 0.1);
	border: 1px solid rgba(190, 41, 0, 0.35);
	color: #ff8a80;
	padding: 1rem;
	border-radius: 2px;
	font-family: var(--font-sub);
	font-size: 0.88rem;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
}

.contact-info-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-info-card {
	background: var(--dark-2);
	padding: 1.5rem;
	border-radius: 4px;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	border: 1px solid var(--dark-3);
	transition: var(--transition);
}

.contact-info-card:hover {
	border-color: rgba(190, 41, 0, 0.3);
	transform: translateX(4px);
}

.contact-info-card .icon {
	width: 44px;
	height: 44px;
	background: rgba(190, 41, 0, 0.1);
	border: 1px solid rgba(190, 41, 0, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.contact-info-card h4 {
	font-family: var(--font-sub);
	font-size: 0.8rem;
	color: var(--gray-3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.3rem;
}

.contact-info-card p {
	color: var(--white);
	font-size: 0.95rem;
	line-height: 1.6;
}

.contact-info-card a {
	color: var(--white);
	transition: color var(--transition);
}

.contact-info-card a:hover {
	color: var(--red);
}

/* ── Hours Table ── */
.hours-section {
	background: var(--dark-1);
}

.hours-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
}

.hours-table tr {
	border-bottom: 1px solid var(--dark-3);
	transition: var(--transition);
}

.hours-table tr:hover td {
	color: var(--white);
}
.hours-table tr.today td {
	color: var(--red);
	font-weight: 600;
}
.hours-table tr.today td:first-child::after {
	content: " ← TODAY";
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	color: var(--red);
	font-family: var(--font-sub);
}

.hours-table td {
	padding: 0.8rem 0;
	font-size: 0.92rem;
	color: var(--gray-3);
}

.hours-table td:last-child {
	text-align: right;
	color: var(--white);
}

.special-events-note {
	background: rgba(190, 41, 0, 0.08);
	border: 1px solid rgba(190, 41, 0, 0.2);
	border-radius: 4px;
	padding: 1.2rem 1.5rem;
	margin-top: 1.5rem;
}

.special-events-note p {
	font-size: 0.88rem;
	color: var(--gray-4);
	line-height: 1.7;
}

.special-events-note i {
	color: var(--red);
	margin-right: 0.4em;
}

/* ── Entertainment Page ── */
.entertainment-section {
	background: var(--black);
}

.entertainment-big {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 5rem;
	padding-bottom: 5rem;
	border-bottom: 1px solid var(--dark-3);
}

.entertainment-big:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.entertainment-big.reverse {
	direction: rtl;
}
.entertainment-big.reverse > * {
	direction: ltr;
}

.entertain-img {
	border-radius: 4px;
	overflow: hidden;
	height: 380px;
	position: relative;
}

.entertain-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	color: var(--gray-2);
}

.eip-1 {
	background: linear-gradient(135deg, #1a0800, #3a1500);
}
.eip-2 {
	background: linear-gradient(135deg, #0a0a1a, #1a1a3a);
}
.eip-3 {
	background: linear-gradient(135deg, #0a1400, #1a2800);
}

.entertain-text .list-check {
	margin: 1.2rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.list-check li {
	display: flex;
	align-items: center;
	gap: 0.6em;
	font-size: 0.95rem;
	color: var(--gray-4);
}

.list-check li i {
	color: var(--red);
	font-size: 0.85em;
}

/* ── Drink Menu ── */
.drink-menu-section {
	background: var(--dark-1);
}

.menu-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.menu-cat {
	background: var(--dark-2);
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--dark-3);
}

.menu-cat-header {
	background: var(--dark-3);
	padding: 1.2rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	border-bottom: 2px solid var(--red);
}

.menu-cat-header i {
	color: var(--red);
	font-size: 1.3rem;
}

.menu-cat-header h3 {
	font-size: 1.1rem;
	color: var(--white);
	letter-spacing: 0.05em;
}

.menu-items {
	padding: 1rem 1.5rem;
}

.menu-item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0.7rem 0;
	border-bottom: 1px dotted var(--dark-4);
	gap: 1rem;
}

.menu-item:last-child {
	border-bottom: none;
}

.menu-item-name {
	font-size: 0.92rem;
	color: var(--gray-4);
}

.menu-item-price {
	font-family: var(--font-sub);
	font-size: 0.88rem;
	color: var(--red);
	white-space: nowrap;
}

/* ── Gallery Page ── */
.gallery-full-section {
	background: var(--black);
}

.gallery-full-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 3rem;
}

.gallery-full-item {
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	cursor: pointer;
	aspect-ratio: 4/3;
}

.gallery-full-item .gallery-placeholder {
	width: 100%;
	height: 100%;
}

.gallery-full-item:hover .gallery-placeholder {
	transform: scale(1.05);
}
.gallery-full-item:hover .gallery-overlay {
	opacity: 1;
}

/* ── Back to Top ── */
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 44px;
	height: 44px;
	background: var(--red);
	color: var(--white);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	z-index: 500;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
	box-shadow: var(--shadow);
}

.back-to-top.visible {
	opacity: 1;
	pointer-events: all;
}

.back-to-top:hover {
	background: var(--red-dark);
	transform: translateY(-2px);
}

/* ── Preloader ── */
.preloader {
	position: fixed;
	inset: 0;
	background: var(--black);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
}

.preloader.hidden {
	opacity: 0;
	pointer-events: none;
}

.preloader-inner {
	text-align: center;
}

.preloader-logo {
	font-family: var(--font-head);
	font-size: 3rem;
	color: var(--white);
	margin-bottom: 1rem;
	animation: pulse 1.5s infinite;
}

.preloader-logo span {
	color: var(--red);
}

.preloader-bar {
	width: 200px;
	height: 3px;
	background: var(--dark-3);
	border-radius: 2px;
	overflow: hidden;
	margin: 0 auto;
}

.preloader-progress {
	height: 100%;
	background: var(--red);
	border-radius: 2px;
	animation: load 1.5s ease forwards;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

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

/* ── Utilities ── */
.text-center {
	text-align: center;
}
.text-red {
	color: var(--red);
}
.mt-1 {
	margin-top: 1rem;
}
.mt-2 {
	margin-top: 2rem;
}
.mt-3 {
	margin-top: 3rem;
}

/* ── Animations ── */
[data-aos] {
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
[data-aos="fade-up"] {
	opacity: 0;
	transform: translateY(30px);
}
[data-aos="fade-up"].aos-animate {
	opacity: 1;
	transform: translateY(0);
}
[data-aos="fade-right"] {
	opacity: 0;
	transform: translateX(-30px);
}
[data-aos="fade-right"].aos-animate {
	opacity: 1;
	transform: translateX(0);
}
[data-aos="fade-left"] {
	opacity: 0;
	transform: translateX(30px);
}
[data-aos="fade-left"].aos-animate {
	opacity: 1;
	transform: translateX(0);
}
[data-aos="zoom-in"] {
	opacity: 0;
	transform: scale(0.9);
}
[data-aos="zoom-in"].aos-animate {
	opacity: 1;
	transform: scale(1);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
	.events-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.event-card.featured {
		grid-column: span 1;
		display: block;
	}
	.event-card.featured .event-image {
		height: 220px;
	}
	.entertain-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.menu-categories {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.nav-menu {
		display: none;
	}
	.hamburger {
		display: flex;
	}

	.nav-menu.mobile-open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(10, 10, 10, 0.98);
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
		z-index: 999;
	}

	.nav-menu.mobile-open .nav-link {
		font-size: 2rem;
		font-family: var(--font-head);
		letter-spacing: 0.05em;
		color: var(--white);
	}

	.nav-menu.mobile-open .nav-cta {
		font-size: 1.2rem;
		padding: 0.6em 2em;
		font-family: var(--font-head);
	}

	.about-grid,
	.location-grid,
	.contact-grid,
	.hours-grid,
	.about-story-grid,
	.entertainment-big {
		grid-template-columns: 1fr;
	}

	.entertainment-big.reverse {
		direction: ltr;
	}

	.hero-stats {
		display: none;
	}
	.hero-slider-shell {
		min-height: 560px;
	}
	.hero {
		padding-bottom: 60px;
	}
	.hero-btns {
		margin-bottom: 1.5rem;
	}
	.about-badge-img {
		bottom: 1rem;
		right: 1rem;
	}

	.gallery-full-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.event-row {
		grid-template-columns: 80px 1fr;
	}
	.event-row-action {
		grid-column: 1 / -1;
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (max-width: 700px) {
	.section-pad {
		padding: 70px 0;
	}
	.hero-slider-shell {
		min-height: 520px;
	}
	.hero-slide {
		max-width: 100%;
	}
	.hero-slider-nav {
		margin-top: 0.9rem;
	}
	.hero-slider-btn {
		width: 42px;
		height: 42px;
	}
	.hero-slider-dots {
		margin-top: 0.65rem;
	}
	.hero {
		padding-bottom: 50px;
	}
	.hero-btns {
		margin-bottom: 1.25rem;
	}
	.events-grid {
		grid-template-columns: 1fr;
	}
	.entertain-grid {
		grid-template-columns: 1fr;
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.about-features {
		grid-template-columns: 1fr;
	}
	.menu-categories {
		grid-template-columns: 1fr;
	}
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.newsletter-form {
		flex-direction: column;
	}
	.cta-banner .container {
		flex-direction: column;
		text-align: center;
	}
	.hero-btns {
		justify-content: flex-start;
	}
	.testimonial-card {
		flex: 0 0 calc(100% - 0rem);
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 3rem;
	}
	.hero-slider-shell {
		min-height: 560px;
	}
	.hero {
		padding-bottom: 40px;
	}
	.hero-btns {
		flex-direction: column;
		margin-bottom: 1rem;
	}
	.hero-slider-nav {
		align-self: flex-start;
		margin-top: 0.8rem;
	}
	.hero-slider-dots {
		margin-top: 0.55rem;
	}
	.gallery-full-grid {
		grid-template-columns: 1fr;
	}
	.team-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Print ── */
@media print {
	.navbar,
	.ticker-bar,
	.back-to-top,
	.preloader {
		display: none;
	}
	body {
		background: white;
		color: black;
	}
}
