
.carousel-wrapper {
  overflow-x: auto;
  padding: 2rem 1rem;
  background-color: #fff;
}

.carousel-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding-bottom: 1rem;
}

.carousel-card {
  flex: 0 0 auto;
  width: 300px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
}

.carousel-card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.carousel-card h5 {
  margin-top: 1rem;
  font-weight: bold;
}

.carousel-card p {
  font-size: 0.9rem;
  color: #333;
}


/* Updated search bar styles */

.search-bar {
  background: white;
  border-radius: 8px;
  display: flex;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding-right: 10px;
}
.search-section {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: none;
  border-left: 1px solid #ccc;
  transition: box-shadow 0.2s ease;
  position: relative;
}
.search-bar > .search-section:first-child {
  border-left: none;
}
.search-section input {
  border: none;
  outline: none;
  font-size: 15px;
  width: 100%;
}
.search-section.search-city:focus-within {
  box-shadow: inset 0 0 0 2px #1B1753;
  border-radius: 6px;
  padding: 10px 18px;
  margin: 2px;
}
.search-section.search-by:focus-within::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid #1B1753;
  border-radius: 6px;
  pointer-events: none;
  z-index: 1;
}
.search-section.search-date:focus-within {
  box-shadow: none !important;
}
.search-button {
  background-color: #1B1753;
  color: white;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  margin: auto 0 auto auto;
  height: fit-content;
}
.search-button:hover {
  background-color: #EB2676;
}
.lucide {
  color: #1B1753;
  width: 26px;
  height: 26px;
}
.chevron-down {
  margin-left: auto;
  color: grey;
  width: 30px !important;
  height: 30px !important;
}
.search-city, .search-date {
  width: 220px;
}



/* Adjusted spacing and width for more balanced layout */
.search-bar {
  gap: 0;
}

.search-section {
  padding: 12px 20px;
}

.search-city, .search-date {
  width: 180px;
}

.search-by {
  flex: 1;
  min-width: 400px;
}
:root {
  --main-orange: linear-gradient(135deg, #f7941d, #ffb347);
  --main-orange-flat: #45b1e5;
}

.nav-item {
  position: relative;
  display: inline-block;
}

.dropdown-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 920px;
  background: #111;
  padding: 1.25rem 2rem;
  color: white;
  border-radius: 20px;
  z-index: 999;
  box-sizing: border-box;
}


.nav-item:hover .dropdown-container {
  display: block;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.popular-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pop-category {
  flex: 1;
  background: #1d1d1d;
  color: white;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pop-category::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  background: var(--main-orange-flat);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pop-category:hover {
  transform: translateY(-3px);
  background: var(--main-orange-flat);
  color: black;
}

.pop-category:hover::before {
  opacity: 1;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 3rem;
  font-weight: 300;
  font-size: 0.95rem;
}

.discover-item {
  color: white;
  padding: 0.3rem 0;
  cursor: pointer;
  transition: color 0.2s;
}

.discover-item:hover {
  color: var(--main-orange-flat);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.see-all-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: white;
  border: 1px solid white;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.see-all-header-btn:hover {
  background: white;
  color: black;
}
.see-all-btn-header:hover .chevron-icon {
  transform: translateX(4px)!important;
  transition: transform 0.3s ease !important;
}
.nav-item > a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-item > a:hover {
  color: var(--main-orange-flat); /* Hover color for nav text */
  text-decoration: none;
}
.nav-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.nav-list {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.nav-account {
  white-space: nowrap;
  display: inline-block;
}

.featured-category {
  margin: 40px 0;
  padding: 0 40px;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.scroll-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 10px;
}

.profile-card {
  background: #111;
  color: #fff;
  border-radius: 16px;
  min-width: 280px;
  max-width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  
  z-index: 1;
}
.profile-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 16px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.profile-card:hover::before {
  opacity: 1;
}
.profile-card:hover {
  transform: translateY(-4px);
}
.profile-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}


.card-content {
  padding: 30px;
  
}

.event-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}
.event-title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em; /* Adjust depending on line height */
}

.event-type {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 12px;
}

.ticket-btn {
  background: #333; /* pink to blue */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor:pointer;
  transition: background 0.4s ease, border 0.4s ease, color 0.4s ease;
}
.ticket-btn:hover {
  background: transparent;
  border: 1px solid white;
  color: white;
}


/* Enlarged card layout */
.profile-card {
  position: relative;
  scroll-snap-align: start;
  flex: 0 0 auto;
  overflow: hidden;
  min-width: 360px;
  max-width: 380px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Thin white outline */
  border-radius: 25px;
}

.favorite-icon {
  position: absolute;
  font-size: 24px;
  top: 14px;
  width: 30px !important;
  height: 30px!important; 
  right: 16px;
  color: white;
  background-color: rgba(0,0,0,0.5);
  padding: 6px;
  border-radius: 60%;
  z-index: 3;
  transition: color 0.2s ease;
  cursor: pointer;
}

.favorite-icon:hover {
  transition: color 0.3s ease;
  color: rgb(255, 164, 164);
  fill: rgb(255, 164, 164);
}

/* === Carousel base === */
.carousel-hover-zone {
  position: relative;
}

.hover-left,
.hover-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%; /* only far edge triggers */
  z-index: 5;
}

.hover-left {
  left: 0;
}

.hover-right {
  right: 0;
}

/* Hide by default */
.carousel::before,
.carousel::after,
.carousel-control-prev,
.carousel-control-next {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* Gradient edges */
.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}

.carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45), transparent);
}

.carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.45), transparent);
}

/* Only trigger visibility on edge hover */
.carousel-hover-zone:hover .hover-left:hover ~ #artistCarousel::before,
.carousel-hover-zone:hover .hover-left:hover ~ #artistCarousel .carousel-control-prev {
  opacity: 1;
  pointer-events: auto;
}

.carousel-hover-zone:hover .hover-right:hover ~ #artistCarousel::after,
.carousel-hover-zone:hover .hover-right:hover ~ #artistCarousel .carousel-control-next {
  opacity: 1;
  pointer-events: auto;
}

/* Carousel arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
}

.carousel-control-prev i,
.carousel-control-next i {
  color: white;
  font-size: 1.75rem;
}

/* Fix Find Tickets button being blocked */
.carousel-caption,
.carousel-overlay {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: white;
  border: 1px solid white;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 0.55rem;
  transition: all 0.3s ease;
}

.see-all-btn:hover {
  background: white;
  color: black;
}

.see-all-btn:hover .chevron-icon {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.scroll-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 10px;
}

.scroll-cards::-webkit-scrollbar {
  display: none;
}

.scroll-wrapper:hover .scroll-arrow {
  opacity: 1;
  pointer-events: auto;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(128, 128, 128, 0.4);
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background-color: rgba(128, 128, 128, 0.6);
}

.scroll-arrow.left {
  left: 10px;
}

.scroll-arrow.right {
  right: 10px;
}

.scroll-arrow .arrow-icon {
  color: white;
  width: 35px;
  height: 35px;
}
.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 60px;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  flex: 1;
  min-width: 260px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.footer-connect p {
  font-weight: 600;
  margin: 10px 0 5px;
}

.social-icons {
  display: flex;
  gap: 16px;
  font-size: 29px ; /* increase icon size */
  margin-bottom: 20px; /* more space below icons */
}

.social-icons i {
  font-size: 24px;
}
.store-badges img {
  height: 40px;
  margin: 8px 8px 16px 0;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: #000;
  padding: 4px;
  border: 1px solid #fff;
  max-width: 340px;
  margin-top: 12px;
  overflow: hidden;
}

.footer-subscribe input {
  flex: 1;
  padding: 9px 14px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.subscribe-btn {
  padding: 10px 12px;
  background: linear-gradient(to right, #ff3cac, #784ba0, #2b86c5);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  cursor: pointer;
  height: 100%;
  transition: background 0.3s ease;
}


.footer-columns {
  display: flex;
  flex: 2;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  min-width: 500px;
}

.footer-columns h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
}

.footer-columns ul li {
  margin-bottom: 8px;
}

.footer-columns a {
  color: #ddd;
  text-decoration: none;
}

.footer-columns a:hover {
  text-decoration: underline;
}

.terms-text {
  font-size: 12px;
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-links {
  color: #aaa;
}

.footer-links a {
  color: #aaa;
  margin-right: 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  color: #777;
  text-align: right;
}
