/* General Styles */
:root {
  --primary-color: #2c3e50;
  --accent-color: #e91e63;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --gray-color: #6c757d;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Buttons */
.btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-lg {
  padding: 12px 30px;
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: #d81b60;
  border-color: #d81b60;
  color: white;
}

.btn-outline-accent {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-accent:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Navbar */
.navbar {
  background-color: rgba(44, 62, 80, 0.9);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}

/* Hero Section */
#hero {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)),
    url("/placeholder.svg?height=800&width=1600");
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  position: relative;
}

/* Search Section */
#search {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.search-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Categories Section */
.category-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-overlay h3 {
  margin-bottom: 15px;
}

/* Events Section */
.event-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-img {
  position: relative;
  overflow: hidden;
}

.event-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.event-card:hover .event-img img {
  transform: scale(1.05);
}

.event-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 500;
}

.event-info {
  padding: 20px;
}

.event-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.location,
.photos {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.price {
  color: var(--accent-color);
  font-weight: 600;
}

/* How it Works Section */
.step-card {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(233, 30, 99, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.step-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

/* Testimonials Section */
.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Call to Action Section */
#cta {
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
    url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent-color);
  color: white;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar {
    padding: 10px 0;
  }

  #hero {
    height: 80vh;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 2rem;
  }

  #search {
    margin-top: -30px;
  }

  .step-card,
  .testimonial-card {
    margin-bottom: 20px;
  }
}
