/* ═══ MATEVES BOUTIQUE LODGE — SHARED STYLES ═══ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #9B7A3F;
  --cream: #F5EFE4;
  --beige: #EDE3D0;
  --sand: #D4C4A0;
  --charcoal: #2C2C2C;
  --charcoal-soft: #3a3a3a;
  --green-dark: #3B4A3C;
  --green-mid: #526A53;
  --green-light: #7A9B7A;
  --white: #FDFAF5;
  --text: #2C2C2C;
  --text-light: #6B6158;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s;
  padding: 0 5%;
}

nav.scrolled {
  background: rgba(44, 44, 44, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

nav.solid {
  background: rgba(44, 44, 44, 0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  filter: brightness(0) invert(1);
}

.lodge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #FDFAF5;
}

.lodge-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A96E;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #C9A96E;
}

.nav-book-btn {
  background: #C9A96E;
  color: #2C2C2C;
  padding: 10px 26px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid #C9A96E;
}

.nav-book-btn:hover {
  background: transparent;
  color: #C9A96E;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(44, 44, 44, 0.98);
  padding: 2rem;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu a {
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu .mm-gold {
  color: #C9A96E;
  font-weight: 600;
}

/* STICKY BOOK */
.sticky-book {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #C9A96E;
  color: #2C2C2C;
  padding: 13px 28px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
  transition: all 0.3s;
}

.sticky-book:hover {
  background: #9B7A3F;
  transform: translateY(-2px);
}

/* PAGE HERO */
.page-hero {
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .section-label {
  color: #C9A96E;
}

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: white;
  font-weight: 300;
  line-height: 1.1;
}

.page-hero-content h1 em {
  font-style: italic;
  color: #E8D5B0;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* SECTION BASICS */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C9A96E;
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #2C2C2C;
}

.section-title em {
  font-style: italic;
  color: #9B7A3F;
}

.divider {
  width: 60px;
  height: 1px;
  background: #C9A96E;
  margin: 1.5rem 0;
}

.divider.center {
  margin: 1.5rem auto;
}

.sec-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.sec-header p {
  color: #6B6158;
  max-width: 540px;
  margin: 1rem auto 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* BUTTONS */
.btn-primary {
  background: #C9A96E;
  color: #2C2C2C;
  padding: 15px 44px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid #C9A96E;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: #C9A96E;
}

.btn-secondary {
  background: transparent;
  color: #2C2C2C;
  padding: 15px 44px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid #D4C4A0;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: #C9A96E;
  color: #9B7A3F;
}

.btn-white {
  background: transparent;
  color: white;
  padding: 15px 44px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
}

.btn-white:hover {
  border-color: #C9A96E;
  color: #C9A96E;
}

.btn-wa {
  background: #25D366;
  color: white;
  padding: 12px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-wa:hover {
  background: #1da851;
}

.btn-ph {
  background: #EDE3D0;
  color: #2C2C2C;
  padding: 12px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #D4C4A0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-ph:hover {
  background: #D4C4A0;
}

/* FOOTER */
.gold-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
}

footer {
  background: #1a1a1a;
  padding: 6rem 5% 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-brand .flogo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.footer-brand .flogo img {
  height: 38px;
  width: 38px;
  filter: brightness(0) invert(1);
}

.flogo-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: white;
  font-weight: 500;
}

.footer-brand>p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.socials {
  display: flex;
  gap: 0.8rem;
}

.soc {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  transition: all 0.3s;
}

.soc:hover {
  border-color: #C9A96E;
  color: #C9A96E;
}

.fcol h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 1.3rem;
  font-weight: 500;
}

.flinks {
  list-style: none;
}

.flinks li {
  margin-bottom: 0.7rem;
}

.flinks a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition: color 0.3s;
}

.flinks a:hover {
  color: #C9A96E;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
}

.fbot-links {
  display: flex;
  gap: 1.8rem;
}

.fbot-links a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  transition: color 0.3s;
}

.fbot-links a:hover {
  color: #C9A96E;
}

/* FORM */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B6158;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: white;
  border: 1px solid #D4C4A0;
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: #2C2C2C;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #C9A96E;
}

.form-group textarea {
  height: 130px;
  resize: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* UTILITY */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-book-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-book {
    bottom: 1rem;
    right: 1rem;
    padding: 11px 18px;
    font-size: 0.68rem;
  }
}