:root {
  --pink-main: #ff7abf;
  --pink-soft: #ffe9f5;
  --pink-deep: #f5489a;
  --bg-light: #fff7fb;
  --text-main: #2d2d2d;
  /* Creamy milk-storms / eclair gradient */
  --bg-gradient: linear-gradient(135deg, #fffaf5 0%, #ffe8f6 40%, #f6f3ff 100%);
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
}

/* HEADER & NAV */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, var(--pink-main), var(--pink-deep));
  color: white;
  padding: 0.75em 1.25em;
}

.logo {
  font-weight: 600;
  font-size: 1rem;
}

.nav {
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1em;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-list li a:hover {
  text-decoration: underline;
}

/* HERO */


.hero {
  position: relative;
  min-height: 75vh;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3em 1.5em;
  text-align: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 255, 255, 0.6));
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 650px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5em;
}

/* GENERAL SECTIONS */

.section {
  padding: 3em 1.5em;
}

.section-light {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-accent {
  background: linear-gradient(135deg, rgba(255, 244, 252, 0.98), rgba(255, 223, 243, 0.98));
}

.section-booking {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)), url('booking-bg.jpg') center/cover no-repeat;
  color: #ffffff;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}

.section-lead {
  font-size: 0.95rem;
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 2em;
}

/* BUTTONS */

.primary-btn {
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  color: white;
  border: none;
  padding: 0.75em 1.75em;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 105, 180, 0.45);
}

.primary-btn.outline {
  background: transparent;
  color: var(--pink-deep);
  border: 1px solid var(--pink-deep);
  box-shadow: none;
}

/* TWO COLUMN LAYOUT */

.two-column {
  display: grid;
  gap: 2em;
  align-items: center;
}

.text-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1em;
}

.faux-image {
  background: radial-gradient(circle at top, #ffe4f6, #ffc1e3);
  border-radius: 18px;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.image-caption {
  font-size: 0.85rem;
  text-align: center;
  color: #4a4a4a;
}

/* RATES CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5em;
  margin-bottom: 2.5em;
}

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 240, 248, 0.98));
  border-radius: 18px;
  padding: 1.65em;
  box-shadow: 0 20px 40px rgba(255, 170, 210, 0.28);
  text-align: left;
}

.card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin: 0.5em 0;
}

.note {
  font-size: 0.85rem;
  line-height: 1.6;
}

.extras-heading {
  margin-top: 1em;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25em;
}

.extra-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.2em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.extra-card h4 {
  margin: 0 0 0.25em;
  font-size: 0.95rem;
}

.price-small {
  font-weight: 600;
  color: var(--pink-main);
  margin: 0.25em 0 0.5em;
  font-size: 0.95rem;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1em;
}

.gallery-item {
  border-radius: 14px;
  padding: 1.5em 1em;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.faux-gallery {
  background: radial-gradient(circle at top, #ffe4f6, #ffc1e3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* BOOKING FORM */

.booking-inner {
  display: grid;
  gap: 2em;
  align-items: flex-start;
}

.booking-notes {
  font-size: 0.9rem;
  padding-left: 1.2em;
}

.booking-notes li {
  margin-bottom: 0.5em;
}

.form-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75em 1.5em;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.07);
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.7em 0.85em;
  margin-bottom: 0.8em;
  border-radius: 10px;
  border: 1px solid #e3c8d7;
  font-size: 0.9rem;
}

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

/* ACCORDION */

.accordion {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  background: #fff;
}

.accordion-item + .accordion-item {
  border-top: 1px solid #f2dce7;
}

.accordion-header {
  width: 100%;
  text-align: left;
  border: none;
  background: #fff;
  padding: 0.9em 1.1em;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "+"; 
  font-size: 1.1rem;
}

.accordion-item.open .accordion-header::after {
  content: "−";
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.1em;
}

.accordion-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0.75em 0 1em;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.4em 1.2em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.3em;
}

.contact-card a {
  color: var(--pink-deep);
  text-decoration: none;
}

/* REVIEWS */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5em;
  margin-bottom: 2em;
}

.review-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 239, 247, 0.99));
  border-radius: 18px;
  padding: 1.6em 1.4em;
  box-shadow: 0 18px 36px rgba(255, 174, 216, 0.26);
  font-size: 0.9rem;
}

.stars {
  color: #ffbf00;
  font-size: 0.95rem;
  margin-bottom: 0.5em;
}

.review-name {
  display: block;
  margin-top: 0.7em;
  font-size: 0.85rem;
  color: #666;
}

.leave-review {
  text-align: center;
  font-size: 0.9rem;
}

/* POPUP */

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-content {
  background: #fff;
  padding: 2em 1.8em;
  border-radius: 16px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 1.2em 1em;
  font-size: 0.8rem;
  background: linear-gradient(90deg, rgba(255, 236, 247, 0.98), rgba(255, 247, 252, 0.98));
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .two-column,
  .booking-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo {
    max-width: 60%;
  }

  .menu-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 55px;
    right: 0;
    background: linear-gradient(180deg, var(--pink-main), #ff8ccf);
    flex-direction: column;
    padding: 0.75em 0.5em;
    min-width: 200px;
    display: none;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  }

  .nav-list li {
    margin: 0.15em 0;
  }

  .nav-list li a {
    display: block;
    padding: 0.55em 1em;
    font-size: 0.9rem;
  }

  .nav-list.active {
    display: flex;
    animation: dropdown 0.2s ease-out;
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-tagline {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.hero-highlights li {
  margin-bottom: 0.4em;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  justify-content: center;
  margin-bottom: 1em;
}

.hero-subtext {
  font-size: 0.85rem;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .hero-highlights {
    text-align: left;
  }
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 1.75em 1.5em;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero h1 {
  color: #ffe9f7;
}

.hero p,
.hero li {
  color: #ffeefb;
}


.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 2.2em;
  align-items: start;
}

.about-photo img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  display: block;
  margin: 0 auto;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1em 0 1.5em;
  font-size: 0.9rem;
}

.about-list li {
  margin-bottom: 0.5em;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-photo img {
    max-width: 420px;
  }
}

/* Booking form styles */
#booking form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}
#booking input, #booking textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#booking button {
  background-color: #ff69b4;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#booking button:hover {
  background-color: #ff85c1;
}
.popup {
  display: none;
  background: #ffd9ec;
  color: #880e4f;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  margin-top: 10px;
  font-weight: bold;
}
.popup.show {
  display: block;
}


/* Gallery images */
.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
}


/* Contact icons row */
.contact-icons-card {
  text-align: center;
}

.contact-icon-row {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2em;
}

.contact-icon img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 12px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4em;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}
