/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Open+Sans:wght@400;600&display=swap');

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff8fb;
  color: #3d2e33;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

/* Banner Header */
.banner-header {
  position: relative;
  background-image: url('images/banner.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.banner-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

.banner-header .container {
  position: relative;
  z-index: 2;
}

.banner-header h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.banner-header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  color: #fdfdfd;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Buttons */
.btn {
  background-color: #8b2e4e;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #a94f6c;
}

.btn:focus {
  outline: 2px dashed #8b2e4e;
  outline-offset: 4px;
}

/* Section Styling */
section {
  padding: 3rem 2rem;
  background-color: #fff;
  border-top: 1px solid #f2d7e0;
  margin-top: 1rem;
}

section h2 {
  color: #8b2e4e;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

/* About */
.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #5f5f5f;
}

/* Gallery */
.gallery {
  background-color: #fffafc;
}

.carousel {
  position: relative;
  max-width: 700px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel img {
  display: none;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel img.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  color: #8b2e4e;
  border-radius: 50%;
  user-select: none;
  z-index: 10;
}

button.prev:hover, button.next:hover {
  background-color: rgba(255, 255, 255, 0.95);
}

button.prev { left: 10px; }
button.next { right: 10px; }

/* Reviews */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 700px;
  margin: 1rem auto;
  text-align: left;
}

.review {
  background-color: #fff0f6;
  border: 1px solid #f5d1dd;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(139, 46, 78, 0.1);
}

.review p {
  font-style: italic;
  color: #5f5f5f;
  margin-bottom: 0.8rem;
}

.review h4 {
  color: #8b2e4e;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.reviews a {
  color: #8b2e4e;
  font-weight: bold;
  text-decoration: underline;
}

/* Contact & Map */
#contact p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

#contact a {
  color: #8b2e4e;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* Footer */
footer {
  background-color: #8b2e4e;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .banner-header h1 {
    font-size: 2.4rem;
  }

  .banner-header p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 1.5rem;
  }
}
