/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #304839;
  --green-dark: #243529;
  --taupe: #dbd2c8;
  --taupe-light: #eee9e3;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --gold: #b89d6a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--green);
  transition: background .3s;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 80px;
}
.logo {
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--taupe); font-size: .9rem; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-links .btn-book {
  background: var(--gold); color: var(--white);
  padding: 10px 24px; border-radius: 4px; font-weight: 600;
  transition: background .3s;
}
.nav-links .btn-book::after { display: none; }
.nav-links .btn-book:hover { background: #a08750; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: .3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  margin-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(48,72,57,.7), rgba(48,72,57,.5));
}
.hero-content {
  position: relative; text-align: center; color: var(--white);
  max-width: 720px; padding: 40px 24px;
}
.hero-content h1 {
  font-size: 3.2rem; font-weight: 700; line-height: 1.2;
  margin-bottom: 16px; letter-spacing: 1px;
}
.hero-content p { font-size: 1.15rem; margin-bottom: 32px; color: var(--taupe); }

.page-hero {
  min-height: 50vh;
}
.page-hero .hero-content h1 { font-size: 2.6rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 36px;
  font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600;
  border-radius: 4px; cursor: pointer; transition: all .3s;
  text-transform: uppercase; letter-spacing: 1px; border: none;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #a08750; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== SECTION ===== */
.section { padding: 100px 0; }
.section-title {
  text-align: center; margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.2rem; color: var(--green); margin-bottom: 12px;
}
.section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-title .divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 16px auto 0;
}

/* ===== WELCOME ===== */
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.welcome-img { border-radius: 8px; overflow: hidden; }
.welcome-img img { width: 100%; height: 420px; object-fit: cover; transition: transform .5s; }
.welcome-img:hover img { transform: scale(1.03); }
.welcome-text h2 { font-size: 2rem; color: var(--green); margin-bottom: 20px; }
.welcome-text p { color: var(--text-light); margin-bottom: 16px; }
.welcome-text .stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; }

/* ===== ROOM CARDS ===== */
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.room-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
}
.room-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.room-card-img { height: 240px; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-card-body { padding: 28px; }
.room-card-body h3 { font-size: 1.15rem; color: var(--green); margin-bottom: 10px; }
.room-card-body p { font-size: .9rem; color: var(--text-light); margin-bottom: 16px; }
.room-card-body .room-features { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; font-size: .8rem; color: var(--text-light); }
.room-card-body .room-features span { display: flex; align-items: center; gap: 6px; }
.room-card-body .btn { width: 100%; text-align: center; padding: 12px; font-size: .85rem; }

/* ===== AMENITIES GRID ===== */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.amenity-card {
  text-align: center; padding: 48px 32px;
  background: var(--taupe-light); border-radius: 8px;
  transition: transform .3s, box-shadow .3s;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.amenity-card i {
  font-size: 2.4rem; color: var(--green); margin-bottom: 20px;
}
.amenity-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 10px; }
.amenity-card p { font-size: .9rem; color: var(--text-light); }

/* ===== OFFERS ===== */
.offers-banner {
  background: var(--green); color: var(--white); text-align: center;
  padding: 80px 24px;
}
.offers-banner h2 { font-size: 2rem; margin-bottom: 12px; }
.offers-banner p { color: var(--taupe); max-width: 600px; margin: 0 auto 32px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-info h3 { font-size: 1.3rem; color: var(--green); margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-item i { font-size: 1.2rem; color: var(--gold); margin-top: 4px; }
.contact-info-item p { font-size: .95rem; }
.contact-info-item a { color: var(--green); font-weight: 500; }
.contact-info-item a:hover { color: var(--gold); }

.social-links { display: flex; gap: 16px; margin-top: 24px; }
.social-links a {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .3s, transform .3s;
}
.social-links a:hover { background: var(--gold); transform: translateY(-3px); }

.contact-form h3 { font-size: 1.3rem; color: var(--green); margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: 6px; color: var(--green); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ccc; border-radius: 4px;
  font-family: 'Poppins', sans-serif; font-size: .95rem;
  transition: border-color .3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.map-section { margin-top: 60px; }
.map-section iframe { width: 100%; height: 400px; border: none; border-radius: 8px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-dark); color: var(--taupe); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-about p { font-size: .9rem; margin-top: 12px; line-height: 1.8; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: .9rem; margin-bottom: 10px; color: var(--taupe); transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center; padding: 24px 0; font-size: .8rem;
  color: rgba(219,210,200,.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .rooms-grid, .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .welcome-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--green-dark); flex-direction: column; padding: 32px 0;
    gap: 20px; transform: translateY(-120%); transition: transform .4s;
  }
  .nav-links.open { transform: translateY(0); }
  .hero-content h1 { font-size: 2.2rem; }
  .rooms-grid, .amenities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
