body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #4d0026;
  color: #fff;
}
header {
  background: #e426a4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
a {
  color: #dc6;
  font-weight: 700;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  padding: 0;
  gap: 2.5em;
  position: relative;
}
.logo-container {
  background-color: #1e1e20;
  padding: 0.5em 1em 0 0;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 1em;
}
.logo-container h3 {
  color: #e3c799;
  margin: 0;
  font-size: 1.8em;
  font-family: 'Niconne', cursive;
}
nav .logo {
  height: 100%;
  margin-right: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: #ffd1ec;
  font-weight: 600;
  transition: color 0.2s;
}
nav a:hover {
  color: #e6a8cb;
}
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}
.hero-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-text {
  position: relative;
  top: 4em;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-btn {
  background: #ffd1ec;
  color: #2d014d;
  padding: 0.75em 2em;
  border: none;
  border-radius: 24px;
  font-size: 1.1em;
  text-decoration: none;
  margin-top: 1em;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #e6a8cb;
  color: #fff;
}
.intro, main {
  max-width: 900px;
  margin: 2em auto;
  padding: 0 1em;
}
.packages-list {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}
.package-card {
  background: #fff;
  color: #2d014d;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5em;
  text-align: center;
  width: 300px;
}
.package-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1em;
}
.price {
  color: #a259c6;
  font-weight: bold;
  font-size: 1.2em;
}
.team-photo {
  width: 180px;
  border-radius: 50%;
  margin: 1em 0;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
  margin: 2em 0;
}
.gallery-thumb {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-thumb:hover {
  transform: scale(1.04);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}
.modal-content {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
}
.close {
  position: absolute;
  top: 2em;
  right: 2em;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
}
.contact-info, .contact-form {
  margin-bottom: 2em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 400px;
}
.contact-form input, .contact-form textarea {
  padding: 0.7em;
  border: 1px solid #ffd1ec;
  border-radius: 6px;
  font-size: 1em;
  background: #fff;
  color: #2d014d;
}
.contact-form button {
  background: #ffd1ec;
  color: #2d014d;
  border: none;
  border-radius: 24px;
  padding: 0.7em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: #e6a8cb;
  color: #fff;
}
.social-icons {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}
.social-icons img {
  width: 32px;
  height: 32px;
}
.css-1q92idj {
  display: inline-block;
  color: #e3c799;
  text-decoration: none;
}
.css-ek8qbh {
  width: 32px;
  height: 32px;
  background: #1e1e20;
  border-radius: 50%;
  margin: 0px 0.5rem;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
footer {
  background: #b30059;
  text-align: center;
  padding: 1.5em 0 1em 0;
  color: #ffd1ec;
  margin-top: 3em;
  border-top: 1px solid #a259c6;
}
@media (max-width: 700px) {
  .packages-list {
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
  nav ul {
    gap: 0.7em;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  padding: 2em 0;
}
.testimonial-card {
  background: #fff;
  color: #2d014d;
  border-radius: 12px;
  padding: 2em;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1em;
}
.testimonial-card blockquote {
  font-style: italic;
  margin: 1em 0;
  color: #4d0026;
  line-height: 1.6;
}
.testimonial-author {
  font-weight: 600;
  margin: 0.5em 0;
  color: #b30059;
}
.testimonial-date {
  color: #666;
  font-size: 0.9em;
  margin: 0;
}
@media (max-width: 700px) {
  .testimonials {
    grid-template-columns: 1fr;
    padding: 1em;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 2em 0;
  padding: 1em;
}
.pagination-btn {
  background: #ffd1ec;
  color: #2d014d;
  border: none;
  border-radius: 24px;
  padding: 0.5em 1em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pagination-btn:hover:not(:disabled) {
  background: #e6a8cb;
  color: #fff;
}
.pagination-btn:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}
.pagination-btn.active {
  background: #b30059;
  color: #fff;
}
.page-numbers {
  display: flex;
  gap: 0.5em;
}
@media (max-width: 700px) {
  .pagination {
    flex-wrap: wrap;
  }
  .page-numbers {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 1em;
  }
}
/* Mobile Navigation Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em;
  z-index: 1000;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffd1ec;
  margin: 5px 0;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  nav .logo {
    margin-right: 0;
    height: 64px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #b30059;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 999;
    padding: 1.5em 0;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    margin: .5em 0;
  }
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}
.error-content {
  text-align: center;
  padding: 4em 1em;
  max-width: 600px;
  margin: 0 auto;
}

.error-content h1 {
  color: #ffd1ec;
  margin-bottom: 1em;
}

.error-content p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.error-content ul {
  list-style: none;
  padding: 0;
  margin: 2em 0;
}

.error-content li {
  margin: 1em 0;
  color: #ffd1ec;
}

.error-content a {
  color: #e3c799;
  text-decoration: none;
  transition: color 0.2s;
}

.error-content a:hover {
  color: #ffd1ec;
}

.error-content .cta-btn {
  margin-top: 2em;
} 