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

body {
  font-family: 'Bodoni Moda', serif;
  background-color: #f9f7f3; /*Soft, warm, off-white bg*/
  color: #333; /*Deep grey for readability*/
  line-height: 1.6;
}

header {
  background-color: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e0ddd5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #5a4635; /*A warm, rich brown*/
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 20px;
}

nav a {
  text-decoration: none;
  color: #5a4625;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #a88f74; /*Lighter warm tone hover*/
}

.home {
  position: relative;
  height: 60vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /*Semi-transparent black*/
  z-index: 1;
}

.home-content {
  position: relative;
  z-index: 2; /*Makes sure the text sits above the overlay*/
}

.home-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.home-content p {
  font-size: 1.25rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  
}

.listings {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.listing-card {
  background #fff;
  border: 1px solid #e0ddd5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.listing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #e0ddd5;
}

.listing-card h3 {
  font-family: Georgia;
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: #5a4635;
  padding-left: 20px;
}

.listing-card p {
  font-size: 1rem;
  color: #666;
  padding-left: 20px;
  padding-bottom: 10px;
}

.listing-card:hover {
  transform: translateY(-5px);
}

footer {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #e0ddd5;
  margin-top: 2rem;
}
