/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

body {
  background-color: #faf6f2;
  color: #000;
}

/* HEADER */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #000;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
}

.top-bar a:hover {
  color: #c28b5b;
}
.top-bar button{
    border-radius: 0.5rem;
    border-color: transparent;
    background-color: whitesmoke;
    color: #111;
}
.top-bar button:hover{
  background-color: #666;
  color: white;
}
/* CAROUSEL WRAPPER */
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT */
.carousel-left {
  position: relative;
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  font-family: 'Playfair Display', serif;
}

.image-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* DOTS */
.carousel-dots {
  position: absolute;
  bottom: -22px;              /* sits just under image */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-dots button.active {
  background: #000;
  transform: scale(1.3);
}

/* MOBILE ADJUST */
@media (max-width: 600px) {
  .carousel-dots {
    bottom: -18px;
  }
}

/* NAV */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.85;
}

.prev { left: -20px; }
.next { right: -20px; }

/* RIGHT */
.carousel-right {
  flex: 1;
  max-width: 420px;
}

.carousel-right h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.carousel-right h4 {
  margin: 20px 0 10px;
}

.carousel-right p {
  color: #474747;
  line-height: 1.6;
  margin-bottom: 6px;
}

.price {
  margin: 30px 0;
  font-size: 18px;
}
/* BUTTON */
.book-btn {
  padding: 12px 28px;
  border-radius: 24px;
  border: none;
  background: #bad4f7;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* =========================
   TABLET (iPad)
   ========================= */
@media (max-width: 1024px) {
  .carousel {
    gap: 40px;
    padding: 40px 30px;
  }

  .carousel-right h2 {
    font-size: 28px;
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .carousel {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .carousel-left,
  .carousel-right {
    max-width: 100%;
  }

  .carousel-right {
    text-align: left;
  }

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

  .carousel-right h2 {
    font-size: 24px;
  }
}
