:root {
  --color-bg: #fdf6f8;
  --color-card: #f6e4ea;
  --color-accent: #b87593;
  --color-accent-hover: #a1607e;
  --color-heading: #7c475d;
  --color-text: #2f2f2f;
  --color-link: #944f6f;
  --color-link-hover: #b06080;
  --color-border: #e8ccd8;
  --color-secondary: #faeef1;
  --spacing-md: 20px;
  --font-lg: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Header and Navigation */
header {
  background-color: var(--color-secondary);
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

nav a {
  text-decoration: none;
  color: var(--color-link);
  font-weight: bold;
  font-size: 16px;
}

nav a:hover {
  text-decoration: underline;
  color: var(--color-link-hover);
}

/* Burger menu */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 25px;
  height: 20px;
}

.burger span {
  display: block;
  height: 3px;
  background-color: #855f48;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav list */
nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Mobile nav */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav ul.nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--color-card);
    display: none;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  }

  nav ul.nav-links.active {
    display: flex;
  }

  nav ul.nav-links li {
    text-align: center;
    margin-bottom: 15px;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--color-card);
}

.hero h1 {
  font-size: 2.5em;
  color: var(--color-heading);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Main Layout */
.main-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  padding: 20px 20px;
  background-color: var(--color-bg);
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
}

/* Content columns */
.left-content {
  flex: 1 1 60%;
  max-width: 700px;
}

.right-content {
  flex: 1 1 35%;
  max-width: 400px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 1;
}

/* Text and images */
.left-content h1 {
  font-size: 2.5em;
  color: var(--color-heading);
  margin-bottom: 20px;
}

.left-content img {
  max-width: 100%;
}

.left-content p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about img {
  width: 60%;
}

/* Buttons */
.btn-book,
.btn-submit {
  background-color: var(--color-accent);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-book:hover,
.btn-submit:hover {
  background-color: var(--color-accent-hover);
}

/* Lists */
ul {
  padding-left: 20px;
  margin-bottom: 30px;
  list-style-type: disc;
  color: var(--color-text);
  font-size: 1.1em;
  line-height: 1.6;
}

ul li {
  margin-bottom: 10px;
}

/* Cards */
.section-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(199, 146, 97, 0.10), 0 1.5px 6px rgba(230, 183, 139, 0.09);
  padding: 32px 32px;
  padding-top: 0;
  margin-bottom: 40px;
  border: 1.5px solid var(--color-border);
  transition: box-shadow 0.3s;
}

.section-card:hover {
  box-shadow: 0 8px 32px rgba(199, 146, 97, 0.16), 0 3px 12px rgba(230, 183, 139, 0.12);
}

.section-card img {

  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 28px auto 20px auto;
  box-shadow: 0 2px 8px rgba(199, 146, 97, 0.09);
  object-fit: cover;
}

/* Pricing */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  font-size: 1.1em;
  color: var(--color-text);
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}

.pricing-list li span {
  color: var(--color-heading);
  font-weight: bold;
}

/* Contact form */
#contact-form {
  display: flex;
  flex-direction: column;
}

#contact-form label {
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--color-heading);
}

#contact-form input,
#contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-size: 1em;
  resize: vertical;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent-hover);
  box-shadow: 0 0 5px var(--color-accent-hover);
}

/* Footer */
footer {
  background-color: var(--color-secondary);
  color: var(--color-text);
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1170px;
  /* ← was 900px, increased width */
  padding: 0 40px;
  /* Optional: add horizontal padding */
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-section h4 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: var(--color-heading);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-section p {
  margin: 5px 0;
  line-height: 1.5;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons svg,
.social-icons img {
  width: 36px;
  height: 36px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #bfbfbf;
  font-size: 0.9em;
  color: #5f5f5f;
}

/* Responsive */
@media (max-width: 960px) {
  .main-content {
    flex-direction: column;
    padding: 20px 20px;
  }

  .left-content,
  .right-content {
    max-width: 100%;
  }

  .section-card {
    margin-bottom: 28px;
    padding: 0px 22px;
    padding-bottom: 28px;
  }
}

@media (max-width: 768px) {

  .right-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    /* optional, remove if causing inner space */
    position: relative;
    /* removes sticky behavior on small screens */
    top: auto;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin: 0px 0;
  }

  .social-icons a {
    margin: 0 8px;
  }
}

#booking-form {
  display: flex;
  flex-direction: column;
}

#booking-form label {
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--color-heading);
}

#booking-form input,
#booking-form textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-size: 1em;
  resize: vertical;
}

#booking-form input:focus,
#booking-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 5px var(--color-accent);
}

.footer-section.map-section {
  flex: 1 1 300px;
  margin: 10px;
  min-width: 280px;
  max-width: 400px;
}

.footer-section.map-section iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 250px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.g-recaptcha {
  margin-top: 1rem;
}