/* ============================================
   A Li'l Love Inn — Global 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=Josefin+Sans:wght@300;400;600&display=swap');

:root {
  --blue-gray: #b0bec5;
  --blue-gray-dark: #90a4ae;
  --blue-gray-light: #cfd8dc;
  --slate: #7a9aac;
  --chartreuse: #d4e157;
  --chartreuse-dark: #c0ca33;
  --dark: #1a1a1a;
  --dark-mid: #2d2d2d;
  --warm-white: #fafaf8;
  --text-dark: #2c2c2c;
  --text-mid: #4a4a4a;
  --gold: #c9a96e;
  --nav-height: 140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
}

/* ---- NAVIGATION ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  height: 130px;
  width: auto;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.nav-social { display: flex; gap: 0.8rem; align-items: center; }
.nav-social a {
  color: #fff;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.nav-social a:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.nav-social a svg { width: 16px; height: 16px; fill: #fff; }

/* Mobile nav toggle */
.nav-toggle { display: none; cursor: pointer; background: none; border: none; color: #fff; font-size: 1.5rem; }
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: var(--nav-height); left: 0; right: 0; background: rgba(26,26,26,0.97); flex-direction: column; padding: 1.5rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-social { display: none; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
}
.hero-tagline {
  position: relative;
  z-index: 2;
  color: var(--chartreuse);
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(0.65rem, 1.4vw, 0.9rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ---- WAVY DIVIDERS ---- */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ---- SECTION COLORS ---- */
.section-bluegray { background: var(--blue-gray-light); }
.section-chartreuse { background: var(--chartreuse); }
.section-white { background: var(--warm-white); }
.section-dark { background: var(--dark); color: #fff; }

/* ---- PROPERTY CARDS (Home) ---- */
.properties-section { padding: 5rem 2rem; }
.properties-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) { .properties-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .properties-grid { grid-template-columns: 1fr; } }

.property-card { text-align: center; }
.property-card-img {
  width: 260px; height: 260px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  display: block;
  border: 3px solid rgba(255,255,255,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card-img:hover { transform: scale(1.04); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.property-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}
.property-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.6rem;
  border: 1px solid var(--text-dark);
  border-radius: 50px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn:hover { background: var(--text-dark); color: #fff; }
.btn-light { border-color: #fff; color: #fff; }
.btn-light:hover { background: #fff; color: var(--text-dark); }

/* ---- INTRO / DRIVETIME (chartreuse section) ---- */
.intro-section {
  padding: 5rem 2rem;
  text-align: center;
}
.intro-section p {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: var(--dark);
}
.drivetime {
  display: inline-block;
  text-align: center;
}
.drivetime h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
}
.drivetime ul { list-style: none; }
.drivetime ul li {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

/* ---- STAY WITH US (text + gallery strip) ---- */
.stay-section {
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 768px) { .stay-section { grid-template-columns: 1fr; } }
.stay-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.stay-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ---- GALLERY STRIP ---- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  overflow: hidden;
}
.gallery-strip img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-strip img:hover { transform: scale(1.05); }

/* ---- AIRBNB SUPERHOST BADGE ---- */
.superhost-section { padding: 4rem 2rem; text-align: center; }
.superhost-card {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.superhost-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--chartreuse);
}
.superhost-stats { text-align: left; }
.superhost-stats .stat { margin-bottom: 0.8rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }
.superhost-stats .stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.superhost-stats .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}
.superhost-stats .stat-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.superhost-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.superhost-badge { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
@media (max-width: 500px) { .superhost-card { flex-direction: column; padding: 1.5rem; gap: 1rem; } }

/* ---- REVIEWS ---- */
.reviews-section { padding: 5rem 2rem; }
.reviews-section h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 3.5rem;
  color: var(--text-dark);
}
.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
}
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-item .reviewer {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}
.review-item blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-dark);
}

/* ---- CONTACT FORM ---- */
.contact-section { padding: 5rem 2rem; }
.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 700px) { .contact-inner { grid-template-columns: 1fr; } }
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.contact-info p { font-size: 0.82rem; line-height: 1.8; color: var(--text-mid); }
.contact-info a { color: var(--text-dark); text-decoration: underline; text-underline-offset: 3px; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; gap: 1rem; }
.form-group input { flex: 1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  background: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--slate); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  align-self: flex-start;
  padding: 0.8rem 2.5rem;
  background: var(--text-dark);
  color: #fff;
  border: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover { background: var(--slate); transform: translateY(-1px); }
.form-success { display: none; padding: 1rem; background: var(--chartreuse); color: var(--dark); font-size: 0.85rem; border-radius: 4px; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--chartreuse); }
footer .footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }

/* ---- PROPERTY PAGE HERO (taller) ---- */
.prop-hero {
  height: 60vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.prop-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  max-width: 800px;
}
.prop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}
.prop-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 2;
}

/* ---- PROPERTY DESCRIPTION ---- */
.prop-description { padding: 5rem 2rem; }
.prop-description-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) { .prop-description-inner { grid-template-columns: 1fr; } }
.prop-description h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.prop-description p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.prop-description p:last-child { margin-bottom: 0; }

/* ---- AMENITIES SECTION ---- */
.amenities-marquee-bar {
  background: rgba(212,225,87,0.47);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.amenities-marquee-bar span {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--dark);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.amenities-section { padding: 4rem 2rem; }
.amenities-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 4rem;
}
@media (max-width: 600px) { .amenities-inner { grid-template-columns: 1fr; } }
.amenity-category h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.5rem;
  margin-top: 1.2rem;
}
.amenity-category ul { list-style: none; }
.amenity-category ul li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ---- PROP GALLERY ---- */
.prop-gallery { padding: 2rem; }
.prop-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 600px) { .prop-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.prop-gallery-grid img {
  width: 100%; height: 260px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: opacity 0.3s;
  cursor: pointer;
}
.prop-gallery-grid img:hover { opacity: 0.88; }

/* ---- PAGE TITLE SECTIONS ---- */
.page-title-section {
  background: var(--blue-gray-light);
  padding: 7rem 2rem 4rem;
  text-align: center;
}
.page-title-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Make sure things above fold are always visible */
nav, .home-hero, .prop-hero { opacity: 1 !important; transform: none !important; }
