*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #d4d0c8;
  background: #1a1a1a;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─── */

.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #fff;
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-book {
  font-size: 13px;
  font-weight: 400;
  padding: 8px 20px;
  border: 1px solid #888;
  border-radius: 0;
  color: #ccc;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  border-radius: 16px;
}

.btn-book:hover {
  border-color: #fff;
  color: #fff;
}

.social-icon {
  color: #ccc;
  transition: color 0.2s;
  display: flex;
}

.social-icon:hover {
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}

/* ─── Hero ─── */

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-box {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 60px 64px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 16px;
}

.hero-box h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 42px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-box p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-outline {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 12px 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.25s;
  border-radius: 16px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

.btn-outline.dark {
  border-color: rgba(180, 175, 165, 0.5);
  color: #d4d0c8;
  background: transparent;
  border-radius: 16px;
}

.btn-outline.dark:hover {
  border-color: #d4d0c8;
  background: rgba(255, 255, 255, 0.05);
}

/* ─── Bio ─── */

.bio {
  background: #1a1a1a;
  padding: 80px 0 60px;
  text-align: center;
}

.bio h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  color: #d4d0c8;
  margin-bottom: 28px;
}

.bio p {
  font-size: 15px;
  line-height: 1.8;
  color: #b8b4ac;
  margin-bottom: 36px;
  text-align: center;
}

/* ─── Cards ─── */

.cards {
  background: #1a1a1a;
  padding: 20px 0 80px;
}

.cards .container {
  max-width: 1100px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #d6d2c9;
  overflow: hidden;
  border-radius: 16px;
}

.card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.card:hover .card-image img {
  transform: scale(1.03);
}

.card-body {
  padding: 28px 28px 36px;
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 22px;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-solid {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  background: #2a2a2a;
  color: #fff;
  transition: background 0.25s;
  border-radius: 16px;
}

.btn-solid:hover {
  background: #444;
}

/* ─── Footer ─── */

.site-footer {
  background: #111;
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  margin-left: auto;
}

.footer-links a {
  font-size: 13px;
  color: #999;
  transition: color 0.2s;
  text-decoration: underline;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  position: absolute;
}

.footer-inner {
  position: relative;
}

.footer-social {
  left: 0;
  bottom: 0;
}

.footer-social a {
  color: #999;
  transition: color 0.2s;
  display: flex;
}

.footer-social a:hover {
  color: #fff;
}

/* ─── About Page ─── */

.about-page {
  padding: 100px 0 80px;
  text-align: center;
}

.about-page h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 40px;
  color: #d4d0c8;
  margin-bottom: 32px;
}

.about-image {
  max-width: 700px;
  margin: 0 auto 32px;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-page p {
  font-size: 15px;
  line-height: 1.8;
  color: #b8b4ac;
  text-align: left;
}

/* ─── Contact Page ─── */

.contact-page {
  padding: 100px 0 0;
  text-align: center;
}

.contact-page h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 40px;
  color: #d4d0c8;
  margin-bottom: 32px;
}

.contact-image {
  max-width: 400px;
  margin: 0 auto 24px;
}

.contact-image img {
  width: 100%;
  height: auto;
}

.contact-email {
  font-size: 14px;
  color: #b8b4ac;
  margin-bottom: 60px;
}

.contact-email a {
  color: #d4d0c8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-email a:hover {
  color: #fff;
}

.contact-form-section {
  padding: 0 24px 80px;
}

.contact-form-box {
  max-width: 900px;
  margin: 0 auto;
  background: #f0ede8;
  padding: 48px 48px 56px;
}

.contact-form-box h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  color: #2a2a2a;
  text-align: center;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 400;
  color: #444;
  margin-bottom: 6px;
}

.form-group .required {
  color: #c44;
}

.form-group input,
.form-group textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #888;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-consent {
  margin-top: 20px;
  margin-bottom: 24px;
}

.form-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.form-consent p {
  font-size: 12px;
  color: #555;
  margin-top: 8px;
  margin-left: 24px;
}

.form-consent a {
  color: #333;
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.form-submit button {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 40px;
  background: #aaa;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}

.form-submit button:not(:disabled) {
  background: #666;
}

.form-submit button:not(:disabled):hover {
  background: #444;
}

.form-submit button:disabled {
  cursor: not-allowed;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 22px;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 14px;
  color: #555;
}

.form-error {
  text-align: center;
  padding: 12px;
  margin-top: 16px;
}

.form-error p {
  font-size: 13px;
  color: #c44;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .hero-content {
    margin-left: 150px;
  }
  .hero {
    height: 70vh;
  }
  .hero-box {
    padding: 35px 34px;
    max-width: 500px;
  }
}


@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 32px;
  }

  .card-image-img {
    object-position: top center;
  }

  .card-image-img1 {
    object-position: 0 25%;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-right .btn-book {
    display: none;
  }

  .hero-box {
    padding: 40px 28px;
  }

  .hero-box h1 {
    font-size: 30px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    text-align: left;
    margin-left: 0;
  }

  .footer-social {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form-box {
    padding: 32px 20px 40px;
  }

  .about-page h1,
  .contact-page h1 {
    font-size: 32px;
  }
}
