/* Enhanced Boho-style Elements */
:root {
  --primary-color: #b44b77;
  --secondary-color: #e94f7a;
  --accent-color: #e0d6eb;
  --background-color: #ffffff;
  --text-color: #3d2c3c;
}

.hero {
  background: url('1000032533.png') center 30%/cover no-repeat;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="1" stroke-opacity="0.2"/></svg>') repeat;
  background-size: 50px 50px;
  opacity: 0.1;
  animation: backgroundShift 30s linear infinite;
}

.hero .header-content {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.5s ease-out;
  max-width: 800px;
  width: calc(100% - 4rem);
}

.card.rounded,
.card.rounded .card-content {
  border-radius: 25px !important;
}

.venues .card.rounded {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(180, 75, 119, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(180, 75, 119, 0.1);
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.card.rounded:hover,
.card.rounded:hover .card-content {
  border-radius: 25px !important;
}

/* Override Materialize card styles */
.card .card-content:last-child {
  border-radius: 0 0 25px 25px !important;
}

.venues .card.rounded:hover {
  border-radius: 25px !important;
}

.venues .card-content {
  padding: 2.5rem 2rem;
}

.venues .card.rounded:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(180, 75, 119, 0.2);
}

.venues .card-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: 'Tenor Sans', sans-serif;
  letter-spacing: 1px;
}

.venues .venue-name {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.venues .time {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.venues .btn-flat {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.venues .btn-flat i {
  margin-right: 8px;
}

.venues .btn-flat:hover {
  background: var(--primary-color);
  color: white;
}

@keyframes backgroundShift {
  from { background-position: 0 0; }
  to { background-position: 100% 100%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
