/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Bodoni Moda', serif, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: #121212;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Welcome Banner ===== */
.welcome-banner {
  background: #b9cdc4;
  text-align: center;
  padding: 8px 16px;
}

.welcome-banner p {
  font-size: 14px;
  color: #121212;
  margin: 0;
}

/* ===== Header / Nav ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  cursor: pointer;
}

.logo-sc {
  font-size: 56px;
  font-weight: 700;
  font-family: 'Bodoni Moda', serif;
  margin-bottom: -2px;
}

.logo-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links button {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  color: #121212bf;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s;
  text-transform: none;
}

.nav-links button:hover,
.nav-links button.active {
  color: #121212;
  text-decoration: underline;
}

.lang-switch {
  font-size: 14px;
  padding: 4px 12px;
  border: 1px solid #a3b0dd;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  color: #121212;
  font-family: inherit;
  transition: background 0.2s;
  text-decoration: none;
}

.lang-switch:hover {
  background: #f0f0f0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #121212;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Banner ===== */
.banner {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 64px;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}

.banner-content h1 {
  font-family: 'Bodoni Moda', serif;
  color: #fff;
  max-width: 800px;
  font-size: 44px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  font-weight: 400;
}

/* ===== Page Sections (shown/hidden by JS) ===== */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* ===== Icon Blocks ===== */
.icon-blocks {
  background: #b9cdc4;
  padding: 48px 16px;
}

.icon-blocks-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 24px 16px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.icon-block img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.icon-block p {
  font-size: 16px;
  font-weight: 300;
}

/* ===== Person Section ===== */
.person-section {
  padding: 48px 16px;
}

.person-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0;
}

.person-photo {
  width: 200px;
  height: 280px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% -5%;
  transform: scale(1.4) translateX(12%) translateY(-5%);
}

.person-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  text-align: center;
}

.person-text h2 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 24px;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  padding: 10px 28px;
  background: #8891a2;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  transition: background 0.2s, box-shadow 0.2s;
  text-transform: none;
}

.btn-primary:hover {
  background: #9fa6b3;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.35);
}

.btn-outlined {
  display: inline-block;
  padding: 10px 32px;
  background: #fff;
  color: rgb(96,96,96);
  border: 1px solid #a3b0dd;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-outlined:hover {
  background: rgb(230,230,230);
  box-shadow: 0px 6px 12px rgba(0,0,0,0.35);
}

/* ===== About Section ===== */
.about-section {
  padding: 48px 16px;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-inner h2 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

.about-inner p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-inner strong {
  font-weight: 700;
}

.about-inner em {
  font-style: italic;
}

.about-list {
  margin: 24px 0;
}

.about-list h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-list ul {
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 16px;
}

.about-list li::before {
  content: '✓';
  color: #4caf50;
  font-weight: bold;
  flex-shrink: 0;
}

.about-cta {
  margin-top: 24px;
  font-size: 16px;
  text-align: center;
}

/* ===== Testimonials ===== */
.testimonials-section {
  padding: 48px 16px;
  background: #f9f9f9;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 32px 24px;
  text-align: center;
}

.testimonial-slide blockquote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dot.active {
  background: #8891a2;
}

/* ===== Contact CTA ===== */
.contact-cta {
  background: #cfdce2;
  padding: 48px 16px;
  text-align: center;
}

.contact-cta h2 {
  font-size: 22px;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* ===== Contact Form ===== */
.contact-form-section {
  padding: 48px 16px;
}

.contact-form-inner {
  max-width: 820px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 4px;
  color: #666;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8891a2;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 32px;
  display: none;
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-error {
  background: #fdeded;
  color: #c62828;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  display: none;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 16px;
  text-align: center;
}

.footer h3 {
  font-size: 28px;
  font-weight: 400;
  color: #7d7d7d;
  margin-bottom: 12px;
}

.footer p {
  color: #121212;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
}

.footer a {
  color: #121212;
  font-style: italic;
  transition: font-weight 0.2s;
}

.footer a:hover {
  font-weight: bold;
}

.footer-addresses {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 8px;
}

.footer-address {
  text-align: center;
}

/* ===== Divider ===== */
.divider {
  background: #b9cdc4;
  min-height: 100px;
}

/* ===== Retreat Section ===== */
.retreat-section {
  background: #b9cdc4;
  padding: 48px 16px;
  text-align: center;
}

.retreat-section h2 {
  font-size: 22px;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 16px;
}

.retreat-section p {
  font-size: 18px;
  margin-bottom: 24px;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 98;
  padding: 120px 16px 32px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 18px;
  padding: 16px 8px;
  cursor: pointer;
  color: #121212;
}

.mobile-menu button:hover {
  background: #f5f5f5;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .banner {
    height: 400px;
  }

  .banner-content {
    padding-bottom: 32px;
  }

  .banner-content h1 {
    font-size: 36px;
  }

  .person-text h2 {
    font-size: 24px;
  }

  .person-photo {
    width: 180px;
    height: 220px;
  }

  .icon-block {
    min-width: 160px;
  }
}

@media (max-width: 600px) {
  .banner {
    height: 240px;
  }

  .banner-content {
    padding-bottom: 16px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .form-row {
    flex-direction: column;
  }

  .person-inner {
    flex-direction: column;
    text-align: center;
  }

  .person-text h2 {
    font-size: 20px;
  }

  .contact-cta h2 {
    padding: 0 24px;
  }

  .footer-addresses {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== Mobile device fixes ===== */
/* Prevent iOS auto-zoom on input focus */
@media (max-width: 600px) {
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }
}

/* Safe area for notched phones (iPhone X+) */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Prevent tap highlight on Android/iOS */
button, a {
  -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling fix for iOS */
.mobile-menu {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
