* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0b0c10;
  color: #ffffff;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 12, 16, 0.95);
  border-bottom: 2px solid #c5a059;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-grow: 1;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #c5a059;
}

.logo-placeholder i {
  font-size: 2rem;
}

.logo-placeholder span {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 2px;
}

.logo-text h1 {
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.1;
}

.logo-text h2 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #c5a059;
}

nav,
.nav-menu {
  display: flex;
  gap: 25px;
}

nav a,
.nav-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active,
.nav-item:hover,
.nav-item.active {
  color: #c5a059 !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #c5a059;
}

.btn-join {
  background-color: transparent;
  color: #c5a059;
  border: 2px solid #c5a059;
  padding: 8px 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-join:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding-top: 80px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 16, 0.9) 0%,
    rgba(11, 12, 16, 0.4) 100%
  );
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-beer-bg {
  background-image: url("../bar.png");
}

.slide-shows-bg {
  background-image: url("../shows.jpg");
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-text-side {
  max-width: 550px;
}

.hero-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #c5c6c7;
  margin-bottom: 30px;
}

.btn-gold {
  display: inline-block;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 12px 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.btn-gold:hover {
  background-color: #b38f4b;
  transform: translateY(-2px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(197, 160, 89, 0.2);
  border: none;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: #c5a059;
  color: #0b0c10;
}

.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

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

.dot.active {
  background-color: #c5a059;
}

.features-section {
  background-color: #0b0c10;
  padding: 60px 20px;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border: 1px solid #c5a059;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.function-rooms {
  background-image: url("/static/crm.png");
}
.live-sports {
  background-image: url("/static/englandkamp.png");
}
.snooker {
  background-image: url("/static/snooker.png");
}
.darts {
  background-image: url("/static/darts.png");
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 12, 16, 0.2) 0%,
    rgba(11, 12, 16, 0.95) 85%
  );
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 25px;
}

.card-icon {
  color: #c5a059;
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.cursive-text {
  font-style: italic;
  font-family: Georgia, serif;
  color: #c5a059;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.85rem;
  color: #c5c6c7;
  line-height: 1.4;
  margin-bottom: 15px;
}

.btn-card {
  display: inline-block;
  color: #c5a059;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.feature-card:hover .btn-card {
  border-color: #c5a059;
}

.tickets-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
}

.admin-panel-card {
  background-color: #1f2833;
  border: 1px solid #c5a059;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 60px;
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.admin-panel-header h3 {
  color: #c5a059;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 4px;
  padding: 12px;
  color: #ffffff;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c5a059;
}

.btn-create-event {
  background-color: #c5a059;
  color: #0b0c10;
  border: none;
  padding: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
}

.tickets-page-header {
  text-align: center;
  margin-bottom: 40px;
}

.tickets-page-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
}

.tickets-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.tickets-page-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto 30px auto;
}

.ticket-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #c5a059;
  color: #c5a059;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.tickets-listing-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.rooms-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
}

.rooms-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.rooms-page-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.rooms-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.rooms-page-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto 20px auto;
}

.rooms-page-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #c5c6c7;
  font-size: 1rem;
  line-height: 1.5;
}

.rooms-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 20px;
}

.premium-room-card {
  background-color: #0b0c10;
  border: 1px solid #c5a059;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 480px;
}

.room-media-panel {
  position: relative;
  background-color: #0b0c10;
  display: flex;
  flex-direction: column;
}

.room-media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-grow: 1;
}

.room-photo-tabs {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  background: rgba(11, 12, 16, 0.85);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.room-tab-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.room-tab-btn.active,
.room-tab-btn:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.room-content-panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-meta-header {
  margin-bottom: 15px;
}

.room-badge {
  color: #c5a059;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 5px;
}

.room-content-panel h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.room-summary {
  color: #c5c6c7;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.room-amenities span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 500;
}

.room-amenities i {
  color: #c5a059;
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

.room-rate-calculator {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 30px;
}

.rate-toggle-bar {
  display: flex;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 4px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.rate-toggle {
  flex: 1;
  background: transparent;
  border: none;
  color: #c5c6c7;
  padding: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.rate-toggle.active {
  background-color: #c5a059;
  color: #0b0c10;
}

.rate-display-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rate-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.rate-metric.border-left {
  border-left: 1px solid rgba(197, 160, 89, 0.2);
}

.rate-title {
  font-size: 0.75rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.rate-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #c5a059;
}

.btn-enquire-now {
  display: block;
  text-align: center;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-enquire-now:hover {
  background-color: #b38f4b;
}

.beer-select-section {
  padding: 80px 20px;
  background-color: #090a0c;
}

.beer-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.beer-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.beer-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.beer-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto;
}

.beer-select-container {
  max-width: 1200px;
  margin: auto auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.beer-display-panel {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  min-height: 380px;
}

.beer-image-frame {
  flex: 0 0 160px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beer-image-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.5));
}

.beer-data-frame {
  flex: 1;
}

.beer-data-frame h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.beer-data-frame p {
  color: #c5c6c7;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.beer-price-tag {
  display: inline-flex;
  flex-direction: column;
  border-left: 3px solid #c5a059;
  padding-left: 15px;
}

.price-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888888;
}

.price-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c5a059;
}

.beer-roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.roster-slot {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 15px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.roster-slot:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 160, 89, 0.3);
}

.roster-slot.active {
  background-color: rgba(197, 160, 89, 0.1);
  border-color: #c5a059;
}

.slot-thumb {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.roster-slot.active .slot-thumb,
.roster-slot:hover .slot-thumb {
  color: #c5a059;
}

.slot-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.map-section {
  padding: 80px 20px;
  background-color: #0b0c10;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.map-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #ffffff;
}

.map-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.info-footer {
  background-color: #06070a;
  border-top: 2px solid #c5a059;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-icon {
  color: #c5a059;
  font-size: 1.3rem;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.info-sub {
  font-size: 0.8rem;
  color: #888888;
  line-height: 1.4;
}

.auth-page-section {
  padding: 140px 20px 80px 20px;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b0c10;
}

.auth-card {
  background-color: rgba(26, 26, 26, 0.4);
  border: 2px solid #c5a059;
  border-radius: 8px;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  margin-bottom: 30px;
}

.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #888888;
  padding: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 1px;
}

.auth-tab-btn.active {
  color: #c5a059;
  border-bottom: 2px solid #c5a059;
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-form label {
  font-size: 0.85rem;
  color: #c5a059;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.auth-form input {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 12px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: #c5a059;
  background-color: #222;
}

.flash-error-box {
  background-color: rgba(255, 77, 77, 0.1);
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  border-radius: 4px;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.btn-auth-submit {
  background-color: #c5a059;
  color: #0b0c10;
  border: none;
  padding: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
  margin-top: 10px;
}

.btn-auth-submit:hover {
  background-color: #b38f4b;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .features-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-room-card {
    grid-template-columns: 1fr;
  }
  .beer-select-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu,
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0b0c10;
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid #c5a059;
  }
  .nav-menu.active,
  nav.active {
    display: flex;
  }
  .header-right {
    display: none;
  }
  .room-content-panel {
    padding: 25px;
  }
  .ticket-listing-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .beer-display-panel {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  .beer-price-tag {
    border-left: none;
    border-top: 3px solid #c5a059;
    padding-left: 0;
    padding-top: 10px;
    margin-top: 10px;
  }
  .beer-roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid,
  .footer-container,
  .beer-roster-grid,
  .room-amenities {
    grid-template-columns: 1fr;
  }
}

body,
.admin-panel-card,
.ticket-listing-card,
.premium-room-card {
  background-color: #0b0c10 !important;
}

.admin-panel-card,
.ticket-listing-card,
.room-rate-calculator {
  border: 1px solid rgba(197, 160, 89, 0.3) !important;
}

.btn-delete-event {
  appearance: none !important;
  -webkit-appearance: none !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  width: 32px !important;
  height: 32px !important;
  background: transparent !important;
  border: 1px solid #c5a059 !important;
  color: #c5a059 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.ticket-listing-card {
  position: relative;
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  padding: 35px 25px 25px 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.ticket-listing-card:hover {
  border-color: #c5a059;
}

.ticket-listing-body {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
}

.ticket-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 4px 12px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 7px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
}

.btn-delete-event {
  position: relative !important;
  margin: 10px auto 0 auto !important;
  background: #1a1a1a !important;
  border: 1px solid #ff4d4d !important;
  color: #ff4d4d !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  font-weight: bold !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
  z-index: 5 !important;
}

.btn-delete-event:hover {
  background-color: #ff4d4d !important;
  color: #ffffff !important;
}

.ticket-date-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 60px;
}

.ticket-day {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ticket-month {
  display: block;
  font-size: 0.7rem;
  color: #c5a059;
  font-weight: 800;
}

.ticket-info-box {
  flex-grow: 1;
}
.ticket-info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #fff;
}
.ticket-info-box p {
  font-size: 0.85rem;
  color: #aaa;
  margin: 2px 0;
}

.ticket-action-box {
  text-align: center;
  min-width: 120px;
}
.ticket-price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.btn-buy-ticket {
  display: block;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
  font-size: 0.8rem;
}

.btn-buy-ticket:hover {
  background-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0b0c10;
  color: #ffffff;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 12, 16, 0.95);
  border-bottom: 2px solid #c5a059;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #c5a059;
}

.logo-placeholder i {
  font-size: 2rem;
}

.logo-placeholder span {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 2px;
}

.logo-text h1 {
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.1;
}

.logo-text h2 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #c5a059;
}

nav,
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

nav a,
.nav-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active,
.nav-item:hover,
.nav-item.active {
  color: #c5a059 !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #c5a059;
}

.btn-join {
  background-color: transparent;
  color: #c5a059;
  border: 2px solid #c5a059;
  padding: 8px 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-join:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.tickets-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
}

.admin-panel-card {
  background-color: #0b0c10 !important;
  border: 1px solid rgba(197, 160, 89, 0.3) !important;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 60px;
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.admin-panel-header h3 {
  color: #c5a059;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 4px;
  padding: 12px;
  color: #ffffff;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c5a059;
}

.btn-create-event {
  background-color: #c5a059;
  color: #0b0c10;
  border: none;
  padding: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
}

.tickets-page-header {
  text-align: center;
  margin-bottom: 40px;
}

.tickets-page-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
}

.tickets-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.tickets-page-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto 30px auto;
}

.ticket-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #c5a059;
  color: #c5a059;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.tickets-listing-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.ticket-listing-card {
  position: relative;
  background-color: #0b0c10 !important;
  border: 1px solid rgba(197, 160, 89, 0.3) !important;
  border-radius: 8px;
  padding: 35px 25px 25px 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.ticket-listing-card:hover {
  border-color: #c5a059;
}

.ticket-listing-body {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
}

.ticket-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 4px 12px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 7px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
}

.btn-delete-event {
  position: relative !important;
  margin: 10px auto 0 auto !important;
  background: #1a1a1a !important;
  border: 1px solid #ff4d4d !important;
  color: #ff4d4d !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  font-weight: bold !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
  z-index: 5 !important;
}

.btn-delete-event:hover {
  background-color: #ff4d4d !important;
  color: #ffffff !important;
}

.ticket-date-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 60px;
}

.ticket-day {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ticket-month {
  display: block;
  font-size: 0.7rem;
  color: #c5a059;
  font-weight: 800;
}

.ticket-info-box {
  flex-grow: 1;
}
.ticket-info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #fff;
}
.ticket-info-box p {
  font-size: 0.85rem;
  color: #aaa;
  margin: 2px 0;
}

.ticket-action-box {
  text-align: center;
  min-width: 120px;
}
.ticket-price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.btn-buy-ticket {
  display: block;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
  font-size: 0.8rem;
}

.btn-buy-ticket:hover {
  background-color: #fff;
}

/* Dedicated Identity System Layout Components */
.auth-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.user-welcome-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #c5a059;
}
.btn-auth-action {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-auth-action:hover {
  border-color: #c5a059;
  color: #c5a059;
}

.auth-page-section {
  padding: 140px 20px 80px 20px;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b0c10;
}

.auth-card {
  background-color: rgba(26, 26, 26, 0.4);
  border: 2px solid #c5a059;
  border-radius: 8px;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  margin-bottom: 30px;
}

.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #888888;
  padding: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 1px;
}

.auth-tab-btn.active {
  color: #c5a059;
  border-bottom: 2px solid #c5a059;
}

.auth-panel {
  display: none;
}
.auth-panel.active {
  display: block;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-form label {
  font-size: 0.85rem;
  color: #c5a059;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.auth-form input {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 12px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: #c5a059;
  background-color: #222;
}

.flash-error-box {
  background-color: rgba(255, 77, 77, 0.1);
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  border-radius: 4px;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.btn-auth-submit {
  background-color: #c5a059;
  color: #0b0c10;
  border: none;
  padding: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
  margin-top: 10px;
}

.btn-auth-submit:hover {
  background-color: #b38f4b;
  transform: translateY(-2px);
}

.info-footer {
  background-color: #06070a;
  border-top: 2px solid #c5a059;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.info-block {
  display: flex;
  gap: 15px;
}
.footer-icon {
  color: #c5a059;
  font-size: 1.3rem;
}
.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}
.info-sub {
  font-size: 0.8rem;
  color: #888888;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0b0c10;
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid #c5a059;
  }
  .nav-menu.active {
    display: flex;
  }
  .header-right {
    display: none;
  }
  .ticket-listing-body {
    flex-direction: column;
    align-items: flex-start;
  }
}

.info-footer .footer-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  gap: 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex !important;
}

.info-footer .info-block {
  flex: 1 1 200px !important;
  display: flex !important;
  gap: 15px !important;
}

/* ==========================================================================
   WEEKLY ACTIVITIES STYLES
   ========================================================================== */
.weekly-activities-section {
  background-color: #0b0c10;
  padding: 60px 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.activities-header {
  text-align: center;
  margin-bottom: 50px;
}

.activities-tagline {
  color: #c5a059;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.activities-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.activities-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 15px auto 0;
}

.activities-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 desktop grid layout */
  gap: 40px;
}

.activity-circle-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: #14161c;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.activity-circle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 160, 89, 0.3);
}

.circle-image-wrapper {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #0b0c10;
  border: 2px solid #c5a059;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.circle-placeholder-icon {
  color: #c5a059;
  font-size: 2.2rem;
}

/* If you drop real images into circle-image-wrapper later, this handles it nicely: */
.circle-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-details {
  flex-grow: 1;
}

.activity-details h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.activity-days {
  color: #c5a059;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.activity-desc {
  color: #aaaaaa;
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .activities-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .activity-circle-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}

/* ==========================================================================
   ABOUT US SUITE STYLES
   ========================================================================== */
.about-main-container {
  background-color: #0b0c10;
  color: #ffffff;
  padding-top: 130px; /* Provides space beneath your fixed layout header */
}

/* Page Title Styles */
.about-hero-header {
  text-align: center;
  padding: 60px 20px 40px;
}

.about-tagline {
  color: #c5a059;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.about-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.about-title-divider {
  width: 80px;
  height: 3px;
  background-color: #c5a059;
  margin: 20px auto 0;
}

/* Split Story Section */
.about-story-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text-column h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.story-text-column p {
  color: #aaaaaa;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-visual-frame {
  border: 2px solid #c5a059;
  padding: 12px;
  background-color: #14161c;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.about-visual-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Facilities Section styling */
.about-facilities-section {
  background-color: #14161c;
  padding: 80px 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.facilities-section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.facilities-section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.facilities-section-title p {
  color: #888888;
  font-size: 1rem;
}

.facilities-split-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.facility-tier-card {
  background-color: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.facility-tier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.3);
}

.tier-icon-head {
  color: #c5a059;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.facility-tier-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.tier-subtitle {
  display: block;
  color: #c5a059;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.tier-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tier-features-list li {
  color: #bbbbbb;
  font-size: 0.98rem;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.tier-features-list li i {
  color: #c5a059;
  margin-top: 3px;
  font-size: 0.9rem;
}

/* Callout Display Banner */
.about-action-callout {
  padding: 90px 20px;
  text-align: center;
  background:
    linear-gradient(rgba(11, 12, 16, 0.85), rgba(11, 12, 16, 0.85)),
    url("/static/crm.png") no-sound center/cover fixed;
}

.callout-content-box {
  max-width: 800px;
  margin: 0 auto;
}

.callout-content-box h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.callout-content-box p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Responsive Fluid Adjustments */
@media (max-width: 900px) {
  .about-story-split,
  .facilities-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-split {
    padding-bottom: 50px;
  }

  .about-main-title {
    font-size: 2.2rem;
  }

  .callout-content-box h3 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   WHAT'S ON & ADMIN MANAGEMENT SUITE
   ========================================================================== */
.tickets-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 60px;
}

/* Admin Card Component Layout */
.admin-panel-card {
  background-color: #14161c;
  border: 1px solid #c5a059;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.admin-panel-header h3 {
  color: #c5a059;
  font-size: 1.4rem;
}

.admin-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.admin-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.admin-form label {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  background-color: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.admin-form input:focus,
.admin-form textarea:focus {
  border-color: #c5a059;
  outline: none;
}

.btn-create-event {
  background-color: #c5a059;
  color: #0b0c10;
  border: none;
  font-weight: 700;
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.btn-create-event:hover {
  background-color: #dcb873;
}

/* Event Listings Cards Configuration Layout */
.tickets-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-listing-card {
  background-color: #14161c;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-card-date {
  color: #c5a059;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-card-title {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.event-card-description {
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price-value {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .admin-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.about-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
}
.about-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-page-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.about-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-page-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto 20px auto;
}

.about-page-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #c5c6c7;
  font-size: 1rem;
  line-height: 1.5;
}

.about-story-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.story-text-column h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.story-text-column p {
  color: #c5c6c7;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.about-visual-frame {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.about-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-facilities-section {
  margin-bottom: 80px;
}

.about-facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.facility-tier-card {
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.facility-tier-card:hover {
  border-color: #c5a059;
}

.facility-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.facility-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-card-content {
  padding: 35px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tier-icon-head {
  color: #c5a059;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.facility-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.tier-subtitle {
  color: #c5a059;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
}

.facility-card-content p {
  color: #c5c6c7;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-action-callout {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}

.callout-content-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.callout-content-box p {
  color: #c5c6c7;
  max-width: 750px;
  margin: 0 auto 25px auto;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .about-story-split,
  .about-facilities-grid {
    grid-template-columns: 1fr;
  }
  .about-visual-frame {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .about-page-title {
    font-size: 2rem;
  }
  .story-text-column h2 {
    font-size: 1.6rem;
  }
}

.about-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
}

.about-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-page-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.about-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-page-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto 20px auto;
}

.about-page-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #c5c6c7;
  font-size: 1rem;
  line-height: 1.5;
}

.about-story-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.story-text-column h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.story-text-column p {
  color: #c5c6c7;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.about-visual-frame {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.about-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-facilities-section {
  margin-bottom: 80px;
}

.about-facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.facility-tier-card {
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.facility-tier-card:hover {
  border-color: #c5a059;
}

.facility-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.facility-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-card-content {
  padding: 35px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tier-icon-head {
  color: #c5a059;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.facility-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.tier-subtitle {
  color: #c5a059;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
}

.facility-card-content p {
  color: #c5c6c7;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-details-list {
  margin: 15px 0;
  padding-left: 20px;
  color: #c5c6c7;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-details-list li {
  margin-bottom: 8px;
}

.about-details-highlight {
  margin-top: 10px;
  font-style: italic;
}

.about-action-callout {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}

.callout-content-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.callout-content-box p {
  color: #c5c6c7;
  max-width: 750px;
  margin: 0 auto 25px auto;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .about-story-split,
  .about-facilities-grid {
    grid-template-columns: 1fr;
  }
  .about-visual-frame {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .about-page-title {
    font-size: 2rem;
  }
  .story-text-column h2 {
    font-size: 1.6rem;
  }
}

.contact-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-page-tagline {
  color: #c5a059;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.contact-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contact-page-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto 20px auto;
}

.contact-page-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #c5c6c7;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}

.contact-form-panel {
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  padding: 40px;
}

.contact-form-element {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 4px;
  padding: 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #c5a059;
}

.btn-contact-submit {
  background-color: #c5a059;
  color: #0b0c10;
  border: none;
  padding: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.btn-contact-submit:hover {
  background-color: #b38f4b;
  transform: translateY(-2px);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info-card i {
  color: #c5a059;
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: #c5c6c7;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .contact-grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-page-title {
    font-size: 2rem;
  }
  .contact-form-panel {
    padding: 30px 20px;
  }
}

/* ===================================
   ADMIN INBOX STYLES
   =================================== */
.admin-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
}

.admin-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.admin-page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-page-title i {
  color: #c5a059;
}

.admin-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c5a059 0%, rgba(197, 160, 89, 0.1) 100%);
  margin-bottom: 40px;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: 1px solid #c5a059;
  color: #c5a059;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-back-home:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.queries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.query-card {
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
}

.query-card:hover {
  border-color: #c5a059;
}

.query-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.query-user-info h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.query-user-info h3 i {
  color: #c5a059;
}

.query-email-link {
  color: #c5c6c7;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.query-email-link:hover {
  color: #c5a059;
}

.query-id-badge {
  background-color: #1f2833;
  color: #c5a059;
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.query-subject {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.query-message-text {
  background-color: #1f2833;
  color: #dddddd;
  padding: 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
  border-left: 3px solid #c5a059;
  margin-bottom: 20px;
}

.query-footer {
  display: flex;
  justify-content: flex-end;
}

.btn-reply-query {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-reply-query:hover {
  background-color: #b38f4b;
}

.empty-inbox-card {
  background-color: #0b0c10;
  border: 1px dashed rgba(197, 160, 89, 0.4);
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  color: #c5c6c7;
}

.empty-icon {
  font-size: 3rem;
  color: #c5a059;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .queries-grid {
    grid-template-columns: 1fr;
  }
  .admin-top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Fix Nav Bar Text Stacking */
.nav-menu a {
  white-space: nowrap;
}

.auth-container {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* Admin Inbox Centering & Card Alignment */
.admin-page-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
  box-sizing: border-box;
}

.admin-top-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.admin-page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-page-title i {
  color: #c5a059;
}

.admin-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c5a059 0%, rgba(197, 160, 89, 0.1) 100%);
  margin-bottom: 40px;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: 1px solid #c5a059;
  color: #c5a059;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-back-home:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.queries-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  box-sizing: border-box;
}

.query-card {
  background-color: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.query-card:hover {
  border-color: #c5a059;
}

.query-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.query-user-info h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.query-user-info h3 i {
  color: #c5a059;
}

.query-email-link {
  color: #c5c6c7;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.query-email-link:hover {
  color: #c5a059;
}

.query-id-badge {
  background-color: #1f2833;
  color: #c5a059;
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.query-subject {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.query-message-text {
  background-color: #1f2833;
  color: #dddddd;
  padding: 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
  border-left: 3px solid #c5a059;
  margin-bottom: 20px;
  word-break: break-word;
}

.query-footer {
  display: flex;
  justify-content: flex-end;
}

.btn-reply-query {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-reply-query:hover {
  background-color: #b38f4b;
}

.empty-inbox-card {
  width: 100%;
  background-color: #0b0c10;
  border: 1px dashed rgba(197, 160, 89, 0.4);
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  color: #c5c6c7;
  box-sizing: border-box;
}

.empty-icon {
  font-size: 3rem;
  color: #c5a059;
  margin-bottom: 15px;
}

.btn-delete-query {
  background-color: transparent;
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-delete-query:hover {
  background-color: #e74c3c;
  color: #ffffff;
}

.query-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.query-footer form {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.btn-mark-read {
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #c5a059;
  color: #c5a059;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  outline: none;
  box-sizing: border-box;
}

.btn-mark-read:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.btn-mark-read.btn-mark-unread {
  border-color: #666666;
  color: #aaaaaa;
}

.btn-mark-read.btn-mark-unread:hover {
  background-color: #666666;
  color: #ffffff;
}

.btn-delete-query {
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  outline: none;
  box-sizing: border-box;
}

.btn-delete-query:hover {
  background-color: #e74c3c;
  color: #ffffff;
}

.btn-reply-query {
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.btn-reply-query:hover {
  background-color: #b38f4b;
}

.mobile-beer-select {
  display: none;
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }

  /* Global Headings & Spacing */
  h1,
  .hero-title {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }

  h2,
  .activities-title,
  .beer-title,
  .map-title {
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }

  .hero-description,
  .hero-tagline,
  p {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
  }

  /* Hero Banner Box */
  .hero-section {
    padding: 15px 10px !important;
    min-height: auto !important;
  }

  .dark-panel-text {
    padding: 12px 14px !important;
    margin: 0 auto !important;
  }

  /* Feature Cards (Function Rooms, Sports, Snooker, Darts) */
  .features-section {
    padding: 15px 10px !important;
  }

  .features-grid {
    gap: 10px !important;
  }

  .feature-card {
    min-height: auto !important;
    padding: 12px 10px !important;
  }

  .feature-card .card-icon {
    font-size: 1.4rem !important;
    margin-bottom: 4px !important;
  }

  .feature-card h3 {
    font-size: 1rem !important;
    margin-bottom: 2px !important;
  }

  .feature-card h4 {
    font-size: 0.85rem !important;
    margin-bottom: 4px !important;
  }

  .feature-card p {
    margin-bottom: 6px !important;
  }

  .btn-card {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
  }

  /* Weekly Activity Row Cards */
  .weekly-activities-section {
    padding: 15px 10px !important;
  }

  .activities-container {
    gap: 8px !important;
  }

  .activity-circle-card {
    padding: 8px 10px !important;
    gap: 10px !important;
  }

  .circle-image-wrapper {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .circle-placeholder-icon {
    font-size: 1.1rem !important;
  }

  /* Drink Showcase Box */
  .beer-select-section {
    padding: 15px 10px !important;
  }

  .beer-select-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .beer-display-panel {
    padding: 10px 12px !important;
    border-radius: 8px;
    background: #111;
    min-width: 305px;
    max-width: 305px;
  }

  .beer-image-frame img {
    max-height: 95px !important;
    width: auto;
    object-fit: contain;
  }

  #showcase-beer-name {
    font-size: 1.1rem !important;
    margin-bottom: 2px;
  }

  #showcase-beer-desc {
    font-size: 0.8rem !important;
    line-height: 1.25;
  }

  .beer-roster-grid {
    display: none !important;
  }

  .mobile-beer-select {
    display: block !important;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  .mobile-beer-select option {
    background-color: #1a1a1a;
    color: #ffffff;
  }

  /* Map Container Box */
  .map-section {
    padding: 15px 10px !important;
  }

  .map-wrapper iframe {
    height: 200px !important;
  }

  /* Footer Section */
  .info-footer {
    padding: 15px 10px !important;
  }

  .footer-container {
    gap: 10px !important;
  }

  .info-block {
    padding: 6px 8px !important;
  }
}

.room-view-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-view-img.active {
  display: block;
}

.room-media-panel {
  position: relative;
  display: flex;
  flex-direction: column;
}

.room-media-panel .room-view-img {
  display: none !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-media-panel .room-view-img.active {
  display: block !important;
}

#showcase-beer-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
}

#showcase-beer-desc {
  min-height: 80px;
}

#showcase-beer-name {
  min-height: 2.4em;
}

/* ==========================================================================
   WHAT'S ON & TICKET SYSTEM
   ========================================================================== */

.tickets-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 20px 90px;
  min-height: 70vh;
}

.tickets-page-header {
  text-align: center;
  margin-bottom: 45px;
}

.tickets-page-tagline {
  display: block;
  color: #c5a059;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.tickets-page-title {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.tickets-page-divider {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 0 auto 30px;
}

.ticket-filter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: #aaaaaa;
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: #c5a059;
  border-color: #c5a059;
  background-color: rgba(197, 160, 89, 0.06);
}

.filter-btn.active {
  background-color: #c5a059;
  color: #0b0c10;
  border-color: #c5a059;
}

/* ==========================================================================
   ADMIN EVENT MANAGEMENT
   ========================================================================== */

.admin-panel-card {
  background-color: #14161c;
  border: 1px solid rgba(197, 160, 89, 0.7);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 55px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.admin-panel-header h3 {
  color: #c5a059;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.admin-panel-header h3 i {
  margin-right: 8px;
}

.admin-panel-header .user-welcome-text {
  color: #888888;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-form {
  width: 100%;
}

.admin-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.admin-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.admin-form label {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  background-color: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 13px 14px;
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.92rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
  color: #666666;
}

.admin-form select {
  cursor: pointer;
}

.admin-form textarea {
  resize: vertical;
  min-height: 100px;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: #c5a059;
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.08);
}

.btn-create-event {
  width: 100%;
  background-color: #c5a059;
  color: #0b0c10;
  border: none;
  padding: 14px 20px;
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-create-event:hover {
  background-color: #dcb873;
  transform: translateY(-1px);
}

.btn-create-event:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   TICKET GRID
   ========================================================================== */

.tickets-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.no-tickets {
  grid-column: 1 / -1;
  text-align: center;
  color: #777777;
  padding: 70px 20px;
  font-size: 0.95rem;
}

/* ==========================================================================
   TICKET CARD
   ========================================================================== */

.ticket-card {
  background-color: #14161c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.55);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.ticket-image-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background-color: #0b0c10;
}

.ticket-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ticket-card:hover .ticket-image-wrapper img {
  transform: scale(1.04);
}

.ticket-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #c5a059;
  color: #0b0c10;
  padding: 6px 10px;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticket-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ticket-content h3 {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 14px;
}

.ticket-date,
.ticket-organiser {
  color: #c5a059;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.ticket-date i,
.ticket-organiser i {
  width: 17px;
  margin-right: 4px;
}

.ticket-organiser {
  color: #888888;
}

.ticket-desc {
  color: #aaaaaa;
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 10px 0 22px;
  display: -webkit-box;
  overflow: hidden;
}

.ticket-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.ticket-price {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  white-space: nowrap;
}

.btn-buy-ticket {
  background-color: transparent;
  color: #c5a059;
  border: 1px solid #c5a059;
  padding: 9px 15px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-buy-ticket:hover {
  background-color: #c5a059;
  color: #0b0c10;
}

.btn-delete-ticket {
  width: 100%;
  margin-top: 16px;
  background-color: transparent;
  color: #b85c5c;
  border: 1px solid rgba(184, 92, 92, 0.4);
  padding: 9px 12px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-delete-ticket:hover {
  background-color: #b85c5c;
  border-color: #b85c5c;
  color: #ffffff;
}

.btn-delete-ticket i {
  margin-right: 6px;
}

/* ==========================================================================
   FLASH MESSAGES
   ========================================================================== */

.flash-messages {
  margin-bottom: 25px;
}

.alert {
  padding: 13px 18px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.alert-success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #75c979;
}

.alert-error {
  background-color: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.5);
  color: #ff6b6b;
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 1000px) {
  .tickets-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tickets-page-section {
    padding: 125px 15px 60px;
  }

  .tickets-page-title {
    font-size: 2rem;
  }

  .tickets-page-tagline {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .admin-panel-card {
    padding: 22px 18px;
    margin-bottom: 40px;
  }

  .admin-panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .admin-panel-header h3 {
    font-size: 1.15rem;
  }

  .admin-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .ticket-filter-wrapper {
    gap: 7px;
  }

  .filter-btn {
    padding: 9px 13px;
    font-size: 0.68rem;
  }

  .tickets-listing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ticket-image-wrapper {
    height: 200px;
  }

  .ticket-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .tickets-page-title {
    font-size: 1.7rem;
  }

  .ticket-filter-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .filter-btn {
    width: 100%;
  }

  .ticket-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .ticket-price {
    text-align: center;
  }

  .btn-buy-ticket {
    width: 100%;
  }
}

.ticket-controls {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.ticket-search-wrapper,
.ticket-sort-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ticket-search-wrapper {
  flex: 1;
  max-width: 600px;
}

.ticket-sort-wrapper {
  width: 220px;
}

.ticket-search-wrapper i,
.ticket-sort-wrapper i {
  position: absolute;
  left: 16px;
  z-index: 2;
  pointer-events: none;
}

.ticket-search,
.ticket-sort {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: #151515;
  color: #ffffff;
  padding: 0 16px 0 45px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}

.ticket-sort {
  cursor: pointer;
}

.ticket-search::placeholder {
  color: #999999;
}

.ticket-search:focus,
.ticket-sort:focus {
  border-color: #c9a227;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.15);
}

.ticket-sort-wrapper i {
  color: #c9a227;
}

.ticket-search-wrapper i {
  color: #c9a227;
}

@media (max-width: 700px) {
  .ticket-controls {
    flex-direction: column;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .ticket-search-wrapper,
  .ticket-sort-wrapper {
    width: 100%;
    max-width: none;
  }
}

.ticket-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0 auto 20px auto;
}

.ticket-search-wrapper,
.ticket-sort-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ticket-search-wrapper i,
.ticket-sort-wrapper i {
  position: absolute;
  left: 14px;
  color: #c5a059;
  pointer-events: none;
  z-index: 1;
}

.ticket-search,
.ticket-sort {
  background: #0b0c10;
  border: 1px solid rgba(197, 160, 89, 0.5);
  color: #ffffff;
  border-radius: 30px;
  padding: 11px 18px 11px 42px;
  font-family: inherit;
  font-size: 0.9rem;
  min-height: 42px;
}

.ticket-search {
  width: 280px;
}

.ticket-sort {
  min-width: 190px;
  appearance: auto;
}

.ticket-search:focus,
.ticket-sort:focus {
  outline: none;
  border-color: #c5a059;
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.12);
}

.ticket-search::placeholder {
  color: #888;
}

.lineup-view-btn,
.lineup-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 14px;
  border: 1px solid #c5a059;
  border-radius: 5px;
  background: transparent;
  color: #c5a059;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lineup-view-btn:hover,
.lineup-upload-btn:hover {
  background: #c5a059;
  color: #0b0c10;
}

.lineup-view-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lineup-admin-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lineup-modal,
.ticket-image-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.lineup-modal.active,
.ticket-image-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lineup-modal-content,
.ticket-image-modal-content {
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lineup-modal-content img,
.ticket-image-modal-content img {
  display: block;
  max-width: 95vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(197, 160, 89, 0.6);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
}

.lineup-modal-close,
.ticket-image-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5a059;
  border-radius: 50%;
  background: rgba(11, 12, 16, 0.85);
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
}

.lineup-modal-close:hover,
.ticket-image-modal-close:hover {
  background: #c5a059;
  color: #0b0c10;
}

.lineup-modal-message {
  color: #ffffff;
  text-align: center;
}

.ticket-image-clickable {
  position: relative;
  cursor: zoom-in;
}

.ticket-image-expand {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 12, 16, 0.82);
  border: 1px solid rgba(197, 160, 89, 0.8);
  color: #c5a059;
  pointer-events: none;
}

.ticket-image-clickable img {
  cursor: zoom-in;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .ticket-controls {
    flex-direction: column;
    width: 100%;
  }

  .ticket-search-wrapper,
  .ticket-sort-wrapper {
    width: 100%;
    max-width: 400px;
  }

  .ticket-search,
  .ticket-sort {
    width: 100%;
  }

  .lineup-view-btn,
  .lineup-upload-btn {
    width: 100%;
  }

  .lineup-modal,
  .ticket-image-modal {
    padding: 15px;
  }

  .lineup-modal-close,
  .ticket-image-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .lineup-modal-content img,
  .ticket-image-modal-content img {
    max-width: 96vw;
    max-height: 88vh;
  }
}
