body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
}

/* HEADER */
header {
    background-color: #2e7d32;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2e7d32;
    padding: 12px 20px;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

}

header nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* HERO */ 
.hero {
  height: 85vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  width: 100%;

  /* CENTER CONTENT */
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal */
  justify-content: center;  /* vertical */

  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn {
  padding: 12px 28px;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
.hero {
  position: relative;
  overflow: hidden; /* VERY IMPORTANT */
  box-shadow: none; /* remove shadow if any */
}


/* APARTMENTS */
.apartments 
 .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 10px;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2e7d32;
}
 

.card button {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}

/* BOOKING */
.booking {
    background-color: #e8f5e9;
    padding: 30px;
}

.booking form {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}



.booking input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.booking button {
    width: 100%;
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 10px;
}
.furnished-badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.availability {
    font-size: 14px;
    margin: 5px 0;
}

.availability.high {
    color: #2e7d32;
}

.availability.medium {
    color: #f9a825;
}

.availability.low {
    color: #d32f2f;
}
.meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}
.success-message {
  display: none;
  margin-top: 15px;
  padding: 12px;
  background-color: #2e7d32;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

::placeholder {
  color: #666;
  opacity: 1;
}

input {
  color: #000;
  background-color: #fff;
}
.reserve-btn {
  background: #2e7d32;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.reserve-btn:hover {
  background: #1b5e20;
}
.apartments {
  background: #f7f9f8;
  padding: 60px 8%;
}

.apartments h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.apartment-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apartment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.badge {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0 20px;
}

.apartment-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.apartment-card ul li {
  margin-bottom: 8px;
}

.reserve-btn {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.reserve-btn:hover {
  background: #256628;
}

.availability {
  margin-top: 12px;
  color: #555;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.hero-title span {
  color: #b89b5e; /* luxury gold */
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-title,
.hero-subtitle {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  height: 100vh; /* full screen */
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  text-align: center;
}





/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text container */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: white;
}



/* Main heading */
.hero h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Gold accent */
.hero h1 span {
  color: #c9a24d;
}

/* Subtitle */
.hero-subtitle {
  margin-top: 12px;
  color: #f2f2f2;
  font-size: 0.85rem;
  letter-spacing: 3px;
}


/* MOBILE VIEW */
@media (max-width: 768px) {

  .hero {
    height: 50vh;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.75rem;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

  .apartment-card {
    width: 100%;
  }

  .booking-form input,
  .booking-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
}

 