body {
  font-family: Arial;
  margin: 0;
  background: #0f0f0f;
  color: white;
}

.hero-feature {
  background: linear-gradient(black, #062f24);
  padding: 60px 20px;
  color: white;
}

/* SEARCH CONTAINER */
.hero-search {
  margin-top: 25px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* INPUTS */
.hero-search input,
.hero-search select {
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  min-width: 160px;
}

/* BUTTON */
.hero-search button {
  background: gold;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.hero-search button:hover {
  transform: scale(1.05);
}

.logo {
  text-decoration: none;
  color: gold;
}

.featured .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.event-card.large img {
  height: 200px;
  object-fit: cover;
}

.performer-card {
  background: #111;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  min-width: 150px;
}

.performer-card img {
  width: 100%;
  border-radius: 50%;
  height: 120px;
  object-fit: cover;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}


.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 20px;
  gap: 20px;
}

.event-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 10px;
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-card h3 {
  padding: 10px;
}

.event-card p {
  padding: 0 10px;
  color: #ccc;
}

.event-card .btn {
  margin: 10px;
}

.event-detail {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.event-detail img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.checkout-box {
  background: #111;
  padding: 20px;
  margin: 30px auto;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;
}

.checkout-box input {
  width: 80px;
  padding: 8px;
  margin: 10px;
  text-align: center;
}

.ticket-card {
  background: #111;
  border-radius: 12px;
  padding: 15px;
  margin-top: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.ticket-card img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.ticket-info h3 {
  margin: 0;
}

.ticket-info p {
  margin: 2px 0;
  color: #ccc;
}

.ticket-status {
  margin-left: auto;
  font-weight: bold;
}

.ticket-upcoming {
  color: lime;
}

.ticket-past {
  color: gray;
}

/* Hide scrollbar */
.slider::-webkit-scrollbar {
  display: none;
}

/* Arrow buttons */
.slide-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: black;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  opacity: 0.7;
}

.slide-btn:hover {
  opacity: 1;
  background: gold;
  color: black;
}

.slide-btn.left {
  left: 0;
}

.slide-btn.right {
  right: 0;
}

/* Make cards responsive */
.event-card.small {
  min-width: 200px;
  flex: 0 0 auto;
}
/* HORIZONTAL SCROLL SECTIONS */
.scroll-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
}

/* SMALL CARDS */
.small {
  min-width: 180px;
  flex: 0 0 auto;
}

.small img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #111;
  padding: 6px;
  border-radius: 30px;
  border: 1px solid #222;
  transition: 0.2s ease;
}

/* when user clicks inside */
.search-bar:focus-within {
  border-color: gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* input field */
.search-bar input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding: 8px 12px;
  width: 220px;
  font-size: 14px;
}

/* placeholder color */
.search-bar input::placeholder {
  color: #777;
}

/* button */
.search-bar button {
  background: gold;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.search-bar button:hover {
  transform: scale(1.1);
}

/* mobile fix */
@media (max-width: 600px) {
  .search-bar input {
    width: 140px;
  }
}

#liveResults {
  position: absolute;
  background: #111;
  width: 250px;
  top: 70px;
  right: 20px;
  border-radius: 10px;
  display: none;
  z-index: 1000;
}

.live-item {
  padding: 10px;
  border-bottom: 1px solid #333;
  cursor: pointer;
}

.live-item:hover {
  background: #222;
}

.auth-container {
  max-width: 400px;
  margin: 60px auto;
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.auth-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth-tabs button {
  flex: 1;
  padding: 10px;
  background: #1a1a1a;
  color: white;
  border: none;
  cursor: pointer;
}

.auth-tabs button:hover {
  background: gold;
  color: black;
}

.auth-box input,
.auth-box select {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
}

nav a {
  color: gold;
  margin: 10px;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 60px;
  background: linear-gradient(black, green);
}

.categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.profile-header {
  display: flex;
  gap: 20px;
  padding: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.profile-img {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
}

.event-card img,
.performer-card img {
  width: 100%;
  height: 140px;        /* smaller + cleaner */
  object-fit: cover;
  display: block;
}

/* optional: smoother look */
.event-card img,
.performer-card img {
  border-bottom: 1px solid #222;
}
button, .btn {
  background: gold;
  color: black;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.filters {
  display: flex;
  gap: 10px;
  padding: 20px;
}

.filters select {
  padding: 10px;
  border-radius: 5px;
}

.account-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

/* ACCOUNT CARDS */
.account-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.account-card h2 {
  margin-bottom: 15px;
  color: gold;
}

/* PROFILE TEXT */
.profile-info p {
  margin: 6px 0;
  color: #ccc;
}

.event-form {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.event-form input,
.event-form select,
.event-form textarea {
  padding: 10px;
  border: none;
  border-radius: 8px;
}

.account-card.full {
  width: 100%;
}

.event-mini {
  background: #111;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
}

/* SETTINGS BUTTONS */
.setting-btn {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: 0.2s;
}

.setting-btn:hover {
  border-color: gold;
  color: gold;
}

/* PAYMENT BOX */
.payment-box {
  background: #1a1a1a;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
  color: #ccc;
}

/* PROMOTER REVENUE CARD */
.revenue-card {
  background: linear-gradient(145deg, #111, #1a1a1a);
  border: 1px solid gold;
  text-align: center;
}

.revenue-card h1 {
  font-size: 40px;
  color: gold;
  margin: 10px 0;
}

/* EVENT MINI CARDS */
.event-mini {
  background: #1a1a1a;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border-left: 3px solid gold;
}

.promoter-section {
  background: linear-gradient(135deg, #000, #111);
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid #222;
}

.promoter-content {
  max-width: 800px;
  margin: auto;
}

.promoter-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: gold;
}

.promoter-section p {
  color: #ccc;
  margin-bottom: 20px;
}

.promoter-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 20px 0;
  color: white;
}

.promoter-buttons {
  margin-top: 20px;
}

.promoter-buttons .btn {
  margin: 5px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid gold;
  color: gold;
}

.btn.secondary:hover {
  background: gold;
  color: black;
}
.footer {
  background: #050505;
  padding: 50px 20px 20px;
  margin-top: 80px;
  border-top: 1px solid #222;
}

/* MAIN GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* SECTION TITLES */
.footer h3,
.footer h4 {
  color: gold;
  margin-bottom: 10px;
}

/* TEXT */
.footer p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

/* LINKS */
.footer a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin: 4px 0;
  transition: 0.2s;
}

.footer a:hover {
  color: gold;
  transform: translateX(3px);
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #222;
  color: #666;
  font-size: 13px;
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
