* {
  font-family: Inter, sans-serif;
}

.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  opacity: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  color: white;
}

.hero-subtitle {
  font-size: 18px;
  color: white;
  max-width: 750px;
  margin: 0 auto;
}

.search-input {
  flex: 1 1 200px;
  min-width: 200px;
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.search-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
}

.search-btn:hover {
  background-color: var(--primary-color);
}

.highlight-banner {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  font-size: 38px;
  padding: 30px 60px;
  transform: rotate(359deg);
  display: inline-block;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.producer-section {
  background-color: #000;
  padding: 60px 0;
}

.producer-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.producer-card {
  background: #fff;
  border: 5px solid black;
  padding: 20px 0 0 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
}

.producer-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.producer-name-banner {
  background: #FF00F6;
  color: white;
  font-weight: bold;
  padding: 6px 30px;
  font-size: 14px;
  transform: rotate(359deg);
}

.producer-info {
  margin-bottom: 20px;
  font-size: 15px;
}

.producer-username {
  font-weight: bold;
  font-size: 18px;
  color: black;
}

.producer-events {
  color: black;
}

.producer-footer {
  background-color: var(--primary-color);
  width: 100%;
  padding: 12px 0;
  text-align: center;
  margin-top: auto;
}

.btn-view-profile {
  color: white;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-view-profile:hover{
    color: white;
}

.icon-exclamation {
  position: absolute;
  top: -20px;
  left: -80px;
  width: 180px;
  z-index: 2;
}

@media (max-width: 768px) {
  .icon-exclamation {
    left: 10px;
    top: -10px;
    width: 60px;
  }
}

.section-reveal-secret {
  background-image: url('/assets/front/images/banners/background-banner-organizer.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 20px;
  text-align: left;
  overflow: hidden;
}

.section-reveal-secret .container {
  position: relative;
  z-index: 1;
}

.section-reveal-secret .title {
  font-size: 32px;
  font-weight: 700;
}

.section-reveal-secret .subtitle {
  font-size: 20px;
}

.section-reveal-secret .highlight {
  font-style: italic;
  font-weight: 700;
}

.reveal-button {
  display: inline-block;
  background: #4B4AA0;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 90px;
  transform: rotate(-2deg);
  font-size: 16px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s ease;
}

.reveal-button:hover {
  background: #4B4AA0;
}


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

.photo-wrapper-details {
  flex-shrink: 0;
}

.organizer-photo-details {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.organizer-username-details {
  font-weight: 700;
  color: #333;
  font-size: 20px;
  margin-top: 8px;
}
