/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #2c2c2c;
  background: #1a2e22;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
  --primary:      #4a7c59;
  --primary-dark: #2d5a3d;
  --secondary:    #c8a96e;
  --light:        #f7f4ef;
  --dark:         #2c2c2c;
  --accent:       #8b3a3a;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  overflow: hidden;
}

/* Background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/bg.png') center / cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

/* Dark green gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(29, 56, 38, 0.82) 0%,
    rgba(45, 90, 61, 0.70) 50%,
    rgba(29, 56, 38, 0.88) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
}

.badge-construction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.18);
  border: 1px solid rgba(200, 169, 110, 0.50);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeInDown 0.8s ease both;
}
.badge-construction i { font-size: 0.7rem; animation: spin 3s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 9vw, 6rem);
  color: #fff;
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
  animation: fadeInDown 1s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(0.78rem, 2vw, 1rem);
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 300;
  animation: fadeInDown 1s ease 0.2s both;
}

.divider {
  width: 70px;
  height: 3px;
  background: var(--secondary);
  margin: 26px auto;
  border-radius: 2px;
  animation: fadeIn 1s ease 0.3s both;
}

/* Hero photo frame */
.hero-photo-frame {
  width: min(430px, 90vw);
  height: min(250px, 54vw);
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid rgba(200, 169, 110, 0.40);
  box-shadow: 0 16px 50px rgba(0,0,0,0.55);
  margin: 0 auto 32px;
  animation: fadeIn 1.2s ease 0.4s both;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 10px;
  animation: fadeIn 1s ease 0.5s both;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--secondary);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeIn 1s ease 0.6s both;
}
.hero-location i { font-size: 0.8rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.7s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.04em;
}

.btn-airbnb {
  background: #FF5A5F;
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 90, 95, 0.40);
}
.btn-airbnb:hover {
  background: #e04e53;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 90, 95, 0.55);
}
.btn-airbnb .airbnb-logo { font-size: 1.1rem; }

.btn-email {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-email:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.60);
}

/* ===== CARDS SECTION ===== */
.cards-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 780px;
  margin-top: 44px;
  animation: fadeInUp 1s ease 0.9s both;
}

@media (max-width: 600px) {
  .cards-section { grid-template-columns: 1fr; max-width: 340px; }
}

.card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-3px);
}
.card-icon {
  width: 46px;
  height: 46px;
  background: rgba(74, 124, 89, 0.50);
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--secondary);
  font-size: 1.1rem;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  padding-bottom: 32px;
  text-align: center;
  animation: fadeIn 1s ease 1.1s both;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-links {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.50);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--secondary); }
.footer-sep {
  color: rgba(200,169,110,0.40);
  font-size: 0.6rem;
}

/* ===== SHARE BUTTONS ===== */
.share-section {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s ease 0.8s both;
}
.share-label {
  color: rgba(255,255,255,0.50);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}
.share-label i { color: var(--secondary); }
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  color: #fff;
}
.share-btn:hover { transform: translateY(-3px) scale(1.08); opacity: 0.92; }
.share-fb  { background: #1877F2; }
.share-x   { background: #000; }
.share-wa  { background: #25D366; }
.share-pin { background: #E60023; }

/* ===== GOOGLE MAPS SECTION ===== */
.maps-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  margin: 48px auto 0;
  animation: fadeInUp 1s ease 1.0s both;
}
.maps-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.maps-header i { color: var(--secondary); font-size: 1rem; }
.maps-header span:first-of-type {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1rem;
}
.maps-address {
  color: rgba(255,255,255,0.50);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.maps-address::before { content: '·'; margin-right: 10px; color: var(--secondary); }
.maps-frame {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(200,169,110,0.30);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.maps-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.85) brightness(0.92);
}
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--secondary);
  font-size: 0.80rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.maps-link:hover { opacity: 0.75; }
.maps-link i { font-size: 0.85rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
