/* ---- GLOBAL ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans",
    sans-serif;
  color: #222;
  background: url("img/background.png") no-repeat center top;
  background-size: cover;
  background-attachment: fixed; /* optional parallax effect */
  line-height: 1.5;
  margin: 0;
}

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

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  min-height: 90px; /* increased from 70px */
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
  min-width: 0;
  height: 100%; /* fills the header height */
}

.logo-img {
  height: 75px; /* increased from 58px */
  width: auto;
  display: block;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}

.logo span {
  color: #3f6fd4;
}

/* Navigation */
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.main-nav a {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
  background: #3f6fd4;
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto; /* pushes button to the right */
  color: #3f6fd4;
  transition: color 0.2s;
}

.nav-toggle:hover {
  color: #3358aa;
}

/* ---- SECTIONS ---- */
.section {
  padding: 3.5rem 0;
}

.section-light {
  background: #f5f7fb;
}

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

.section-intro {
  margin-bottom: 2rem;
  max-width: 650px;
}

/* ---- HERO ---- */
.hero {
  padding: 5rem 0 4rem;
  background: transparent; /* changed from #a9b3be to match kittens section */
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;

}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #706d66;
  margin: 0;
  letter-spacing: 0.15em;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700; /* changed from 400 to Bold */
  line-height: 1;
  margin: 0;
  color: #3f4145;
  max-width: none;
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.hero p {
  margin: 0;
}

.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.hero-caption {
  text-align: right;
  font-size: 0.95rem;
  color: #706d66;
  font-style: italic;
  margin: 0;
  padding-right: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  background: transparent;
  color: #706d66;
  border: 1.5px solid #706d66;
  cursor: pointer;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  box-shadow: none;
  align-self: flex-start;
}

.btn-primary:hover {
  background: #706d66;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(112, 109, 102, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

@media (max-width: 800px) {
  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-image {
    order: -1;
  }

  .hero-caption {
    text-align: center;
    padding-right: 0;
  }

  /* existing navigation code... */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    margin-left: 0;
  }

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

  .main-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
  }

  .nav-toggle {
    display: block;
  }
}

/* ---- BUTTON ---- */
.btn-primary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: #3f6fd4;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s, box-shadow 0.1s;
  box-shadow: 0 6px 15px rgba(63, 111, 212, 0.25);
}

.btn-primary:hover {
  background: #3358aa;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 7px rgba(63, 111, 212, 0.2);
}

/* ---- TWO COLUMN LAYOUT ---- */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

/* ---- ABOUT HIGHLIGHT BOX ---- */
.about-highlight {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-highlight-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.about-highlight h3 {
  margin-top: 0;
}

.about-highlight ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.card-image {
  aspect-ratio: 4 / 3;
}

.placeholder-image {
  background: #dde3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6a99;
  font-size: 0.9rem;
}

.card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.card-body h3 {
  margin: 0 0 0.4rem;
}

.card-body p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
}

/* Tags for status */
.tag-available,
.tag-reserved,
.tag-planned {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.tag-available {
  background: #e5f8ea;
  color: #1c7a3a;
}

.tag-reserved {
  background: #fff6e0;
  color: #a56a00;
}

.tag-planned {
  background: #e8f0ff;
  color: #244791;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

/* ---- CONTACT ---- */
.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 0.75rem;
}

.contact-form h3 {
  margin-top: 0;
}

.contact-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #ccd2e4;
  font: inherit;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transition: transform 0.15s ease, opacity 0.15s ease;
  opacity: 0.85;
}

.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer-social img {
  width: 44px;
  height: 44px;
}

@media (max-width: 980px) {
  .logo-text { 
    display: none; 
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 800px) {
  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  /* Hide desktop navigation */
  .main-nav {
    position: absolute;
    top: 100%; /* positions right below the header */
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* hidden by default */
    margin-left: 0; /* reset the auto margin */
  }

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

  .main-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
  }

  /* Show hamburger button */
  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  
  .logo-img {
    height: 50px; /* slightly smaller on very small screens */
  }
}
/* ---- MAP ---- */
.map-container {
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #a9b3be, #706d66);
  z-index: 1000;
  transition: width 0.1s ease;
}

/* ---- SNOW ANIMATION OVERLAY ---- */
.snow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* allows clicks to pass through */
  z-index: 10; /* appears above hero content */
  overflow: hidden;
}

.snow-effect {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the hero section */
  opacity: 0.45; /* 45% visibility as requested */
}

/* Hide snow on mobile for better performance */
@media (max-width: 800px) {
  .snow-overlay {
    display: none;
  }
}

/* ---- STATIC SNOWFLAKES (Mobile) ---- */
.static-snowflakes-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.mobile-snowflake {
  position: absolute;
  width: 300px;
  height: 200px;
  opacity: 0.8;
}

/* Position snowflakes around the edges */
.sf-1 {
  top: -50px;
  left: -50px;
  opacity: 0.8;
}

.sf-2 {
  top: -50px;
  right: -50px;
  opacity: 0.8;
}

.sf-3 {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  opacity: 0.8;
}

.sf-4 {
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  opacity: 0.8;
}

.sf-5 {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
}

/* Show on mobile */
@media (max-width: 800px) {
  .snow-overlay {
    display: none;
  }
  
  .static-snowflakes-mobile {
    display: block;
  }
}

/* Adjust size on very small screens */
@media (max-width: 400px) {
  .mobile-snowflake {
    width: 150px;
    height: 150px;
  }
  
  .sf-1, .sf-2 {
    top: -40px;
  }
  
  .sf-1 {
    left: -40px;
  }
  
  .sf-2 {
    right: -40px;
  }
  
  .sf-3 {
    left: -45px;
  }
  
  .sf-4 {
    right: -45px;
  }
  
  .sf-5 {
    bottom: -40px;
  }
}