/* === ALBUKARAOQUE WEBSITE - EVENTS & FAQ === */
/* Event listings, FAQ sections, and related components */

/* === EVENT CARDS === */
.upcoming-events {
  margin: 3rem 0;
}

.upcoming-events h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.event-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-card.featured {
  border: 2px solid #40B5A3;
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.event-card.featured::before {
  content: "NEXT SHOW";
  position: absolute;
  top: 15px;
  right: 15px;
  background: #40B5A3;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card-content {
  display: flex;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
}

.event-date {
  background: #ffffff;
  color: white;
  text-align: center;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  min-width: 120px;
  box-shadow: 0 4px 15px rgba(64, 181, 163, 0.3);
  flex-shrink: 0;
}

.event-date .month {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.event-date .day {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin: 0.5rem 0;
}

.event-date .year {
  display: block;
  font-size: 1rem;
  opacity: 0.8;
}

.event-details {
  flex: 1;
}

.event-details h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: bold;
}

.event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.event-info p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 1rem;
}

.event-info i {
  color: #40B5A3;
  width: 16px;
  text-align: center;
}

.event-description {
  margin: 1.5rem 0;
}

.event-description p {
  color: #555;
  line-height: 1.6;
  font-size: 1.1rem;
}

.event-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* === FAQ STYLES === */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-intro h4 {
  color: #666;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section h2 {
  color: #40B5A3;
  border-bottom: 3px solid #40B5A3;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  margin: 0;
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.2rem;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 1.5rem;
  color: #555;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* === ADDITIONAL EVENTS PAGE STYLES === */

.events-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #40B5A3 100%);
  color: white;
  padding: 10rem 0 8rem;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.events-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
  z-index: 1;
}

.events-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.events-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.events-hero .page-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  transform: scale(1);
  transition: transform 0.3s ease;
  display: inline-block;
}

.events-hero:hover .page-title {
  transform: scale(1.02);
}

.events-hero .page-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.upcoming-events-section {
  padding: 4rem 2rem;
  margin-top: 2rem;
}

.events-description {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.venue-info-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.venue-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.venue-header h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.venue-type {
  color: #40B5A3;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.venue-details {
  margin-top: 1rem;
}

.venue-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  margin-bottom: 1rem;
}

.venue-location i {
  color: #40B5A3;
}

.venue-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.venue-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #555;
}

.venue-features .feature i {
  color: #40B5A3;
}

.quick-info-section {
  padding: 4rem 2rem;
  background: white;
}

.info-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.info-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.info-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.info-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-features .feature {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-features .feature:hover {
  background: #e9ecef;
  transform: translateY(-3px);
}

.info-features .feature i {
  font-size: 3rem;
  color: #40B5A3;
  margin-bottom: 1rem;
}

.info-features .feature h4 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-features .feature p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.info-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.private-events-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  text-align: center;
}

.private-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.private-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.event-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.event-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.event-type:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.event-type i {
  font-size: 2rem;
  color: #78D5C7;
  margin-bottom: 0.5rem;
}

.event-type span {
  font-weight: 600;
  text-align: center;
}
