body {
  font-family: 'Inter', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
}

.site-header {
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header-phone {
  color: #C9A24D;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  background:
  linear-gradient(180deg,#004531 0%,rgba(0,69,49,.74) 51%,#004531 100%),
  url("images/hero.jpg") center/cover no-repeat;
}

.hero-tag {
  background: rgba(201,162,77,.2);
  padding: 8px 16px;
  border-radius: 20px;
  color: #C9A24D;
}

.hero-price span {
  color: #C9A24D;
  font-weight: 700;
}

.brochure-cta {
  background: #004531;
  padding: 60px 0;
}

.btn-gold {
  background: #C9A24D;
  color: #004531;
  font-weight: 600;
}

.price-card {
  border: 1px solid #ddd;
  padding: 30px;
  text-align: center;
}

.price-card.featured {
  border-color: #C9A24D;
}

.parallax-lake {
  background: url("images/lake-view.jpg") center/cover fixed no-repeat;
  height: 350px;
}

.parallax-lake .overlay {
  background: rgba(0,69,49,.75);
  height: 100%;
  display: flex;
  align-items: center;
}

.amenities i {
  font-size: 28px;
  color: #C9A24D;
}

footer {
  background: #004531;
  color: #fff;
  padding: 20px 0;
}



/* LOCATION SECTION */
.location-section {
  background: #f8f9f8;
}

.location-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 24px;
  height: 100%;
  border-radius: 6px;
}

.location-card h5 {
  color: #004531;
  margin-bottom: 16px;
  font-weight: 600;
}

.location-card i {
  color: #C9A24D;
}

.location-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.location-card ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.location-card ul li span {
  color: #004531;
  font-weight: 600;
}



/* AMENITIES SECTION */
.amenities-section {
  background: #f8f9f8;
}

.amenity-group-title {
  color: #004531;
  margin-bottom: 24px;
  font-weight: 600;
}

.amenity-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  border-radius: 6px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.amenity-card i {
  font-size: 28px;
  color: #C9A24D;
  margin-bottom: 14px;
}

.amenity-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 14px;
  color: #555;
}


/* ===============================
   PREMIUM PRICING CARDS
================================ */
.premium-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 26px;
  height: 100%;
  position: relative;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status.available {
  background: #004531;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* PRICE TAG */
.price-tag {
  background: linear-gradient(
    180deg,
    #004531 0%,
    rgba(0,69,49,.85) 100%
  );
  color: #fff;
  text-align: center;
  padding: 14px;
  margin: 20px 0;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 700;
}

.price-tag small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

/* SPEC LIST */
.spec-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.spec-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.spec-list i {
  color: #C9A24D;
  margin-right: 10px;
}

/* FEATURED CARD */
.featured {
  border: 2px solid #C9A24D;
}

.badge-featured {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #C9A24D;
  color: #004531;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Buttons */
.btn-outline-gold {
  border: 2px solid #C9A24D;
  color: #004531;
  font-weight: 600;
}

.btn-outline-gold:hover {
  background: #C9A24D;
  color: #004531;
}



/* PRICING / CONFIGURATION SECTION */
.pricing-section {
  background: #ffffff;
}

.pricing-sub {
  color: #004531;
  font-size: 18px;
}

.home-card {
  border: 1px solid #e6e6e6;
  padding: 28px;
  height: 100%;
  border-radius: 6px;
  background: #fff;
}

.home-card.featured {
  border: 2px solid #C9A24D;
}

.home-card h5 {
  font-weight: 600;
  margin-bottom: 4px;
}

.availability {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  background: #004531;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.home-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.home-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.home-card ul li.price {
  color: #004531;
  font-weight: 600;
}

.home-card i {
  color: #C9A24D;
  margin-right: 6px;
}

/* Buttons */
.btn-gold {
  background: #C9A24D;
  color: #004531;
  font-weight: 600;
  border: none;
}

.btn-gold:hover {
  background: #b8933f;
}

.btn-outline-gold {
  border: 2px solid #C9A24D;
  color: #004531;
  font-weight: 600;
}

.btn-outline-gold:hover {
  background: #C9A24D;
  color: #004531;
}

/* HERO STANDOUT */
.hero-standout {
  padding-top: 110px;
  background:
    linear-gradient(180deg,#004531 0%,rgba(0,69,49,.74) 51%,#004531 100%),
    url("images/hero.jpg") center / cover no-repeat;
}

.hero-standout h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-sub {
  max-width: 520px;
  font-size: 18px;
  opacity: 0.95;
}

.hero-price {
  font-size: 20px;
}

.hero-price span {
  color: #C9A24D;
  font-weight: 700;
}

/* HERO VIDEO RIGHT */
.hero-video-box {
  width: 100%;
  max-width: 380px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(201,162,77,.6);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.hero-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-standout h1 {
    font-size: 32px;
  }

  .hero-video-box {
    max-width: 100%;
  }
}


/* PHONE HIGHLIGHT */
.highlight-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(201,162,77,0.15); /* soft gold background */
  color: #C9A24D;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid rgba(201,162,77,0.4);
  transition: all 0.3s ease;
}

.highlight-phone i {
  font-size: 16px;
}

.highlight-phone:hover {
  background: #C9A24D;
  color: #004531;
  transform: translateY(-1px);
}



/* WHY CHOOSE LAKEONE */
.why-lakeone {
  background: url("images/why-lakeone.jpg") center / cover no-repeat;
  position: relative;
  padding: 90px 0;
}

.why-overlay {
  background: rgba(0, 69, 49, 0.85);
  padding: 90px 0;
}

.why-lakeone h2 {
  font-size: 36px;
  font-weight: 600;
}

.why-lakeone h2 span {
  color: #C9A24D;
}

.why-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 77, 0.35);
  padding: 30px 24px;
  height: 100%;
  border-radius: 6px;
}

.why-item i {
  font-size: 28px;
  color: #C9A24D;
  margin-bottom: 12px;
}

.why-item h5 {
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .why-lakeone h2 {
    font-size: 28px;
  }
}


/* ===============================
   PROJECT HIGHLIGHTS
================================ */
.project-highlights {
  background: #ffffff;
  padding: 80px 0;
}

.project-highlights h2 {
  font-size: 36px;
}

.highlight-list {
  list-style: none;
  padding-left: 0;
}

.highlight-list li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 15px;
}

.highlight-list i {
  color: #C9A24D;
  margin-right: 12px;
  font-size: 18px;
}

/* CONFIGURATIONS BOX */
.config-box {
  border: 1px solid #e6e6e6;
  padding: 30px;
  border-radius: 6px;
  background: #f9f9f9;
}

.config-box h4 {
  color: #004531;
  margin-bottom: 20px;
}

.config-list {
  list-style: none;
  padding-left: 0;
}

.config-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.config-list li:last-child {
  border-bottom: none;
}

.config-list span {
  font-weight: 600;
}

.config-list em {
  color: #666;
  font-style: normal;
}

/* PRE-LAUNCH */
.prelaunch-box {
  background: linear-gradient(
    180deg,
    #004531 0%,
    rgba(0,69,49,.74) 51%,
    #004531 100%
  );
  color: #fff;
  padding: 40px 30px;
  border-radius: 6px;
}

.prelaunch-box h4 {
  color: #C9A24D;
}

.highlight-note {
  font-size: 15px;
  opacity: 0.95;
}

/* MOBILE */
@media (max-width: 768px) {
  .project-highlights h2 {
    font-size: 28px;
  }
}
