/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* === Navbar Desktop Layout === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo */
.navbar .logo img {
  height: 70px;
}

/* Centered Nav */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #a7112a;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 20px;
}

.nav-links a:hover {
  color: #e295c1;
}

/* Social icons right */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #a7112a;
  font-size: 28px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #e295c1;
}

/* Menu toggle hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  height: 80vh; /* or your preferred height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;

  /* Background layers: image + gradient overlay */
  background-image: 
    linear-gradient(135deg, rgba(226, 149, 193, 0.7), rgba(167, 17, 42, 0.7)), /* semi-transparent gradient */
    url('images/vibe_overlay.png'); /* replace with your image path */
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease forwards;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none; /* removes underline */
  display: inline-block;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #e295c1, #a7112a);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #fff;
  color: #a7112a;
  border: 2px solid #a7112a;
}

.btn-secondary:hover {
  background: #a7112a;
  color: #fff;
}

/* === Sections === */
section {
  padding: 80px 40px;
}

.section-light {
  background: #f9f9f9;
}

.section-dark {
  background: #e295c1;
  color: #fff;
}

.section-highlight {
  background: #a7112a;
  color: #fff;
  text-align: center;
}

/* === Banner Section === */
.banner-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.banner-container {
  width: 100%;
  max-width: 970px;
  display: flex;
  justify-content: center;
}

.banner-img {
  width: 100%;
  max-width: 970px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* === Grid Cards === */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* === Events Section Updates === */
#events .grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Bigger event cards */
#events .card {
  width: 520px;
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Bigger images */
#events .card img.event-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#events .card img.event-img:hover {
  transform: scale(1.05);
}

#events .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* Bigger text */
#events h3 {
  font-size: 1.6rem;
}

#events p {
  font-size: 1.1rem;
}

/* === General Cards (unchanged elsewhere) === */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  width: 400px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.card h3 {
  margin-bottom: 10px;
  color: #a7112a;
}

.card p {
  margin-bottom: 15px;
}

/* === Forms === */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  width: 100%;
  margin-top: 10px;
}

/* === Messages === */
.form-success {
  color: #a7112a;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.form-error {
  color: #e295c1;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* === Gallery === */
.gallery img {
  width: 300px;
  border-radius: 12px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* === Testimonials === */
.testimonial-slider {
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 20px;
  border-left: 4px solid #a7112a;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 25px;
  background: #a7112a;
  color: #fff;
}

/* === Animations === */
@keyframes fadeInDown {
  0% {opacity:0; transform: translateY(-30px);}
  100% {opacity:1; transform: translateY(0);}
}

/* === Contact Section: Card Style Columns === */
.contact-extra {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  min-height: 400px;
  align-items: stretch;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.contact-details,
.contact-hours,
.contact-map {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

.contact-details h3,
.contact-hours h3 {
  margin-bottom: 15px;
  color: #a7112a;
}

.contact-details p,
.contact-hours p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

/* Hover effect for cards */
.contact-details:hover,
.contact-hours:hover,
.contact-map:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* === Mobile Styles === */
@media screen and (max-width: 768px) {
  .navbar {
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }

  .navbar .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .navbar .logo img {
    height: 70px;
  }

  .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
  }

  .social-icons a {
    font-size: 24px;
  }

  #nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 200px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    padding: 10px;
  }

  #nav-links.active {
    display: flex;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  /* Mobile event fix */
  #events .card {
    width: 95%;
  }

  #events .card img.event-img {
    height: 220px;
  }

  .gallery img {
    width: 90%;
  }

  .contact-extra {
    flex-direction: column;
    padding: 20px;
    min-height: auto;
  }

  .contact-details,
  .contact-hours,
  .contact-map {
    padding: 15px;
  }

  .contact-map iframe {
    height: 250px;
  }
}

section h2 {
  text-align: center;
  padding-bottom: 20px;
  margin: 0;
  font-size: 2rem;
}

/* Event title + button inline */
.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px; /* space below the title row */
}

.buy-tickets-btn {
  font-size: 0.9rem;
  padding: 8px 18px;
}

/* Button styling */
.btn-primary {
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin: 5px 0;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  text-align: center;
  text-decoration: none;  /* <- removes underline */
  color: #fff;
  background: linear-gradient(135deg,#e295c1,#a7112a);
}

.popup-overlay {
  position: fixed; /* Ensures it stays on top and doesn't affect layout */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* Dark background overlay */
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 1000; /* High enough to be on top of other content */
}

.popup-overlay img {
  max-width: 90%;  /* Restricts the image size to 90% of the viewport width */
  max-height: 90%; /* Restricts the image size to 90% of the viewport height */
  object-fit: contain; /* Ensures the image fits nicely without distortion */
}

/* ABOUT US SECTION */
#about {
  padding: 60px 20px;
}

#about h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left; /* easier to read long paragraphs */
  line-height: 1.8;
  color: #444;
}

.about-container p {
  margin-bottom: 22px;
  font-size: 16px;
}

.about-container .btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 16px;
}