*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f6efe7;
  color:#222;
}

html{
  scroll-behavior:smooth;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:20px 6%;

  background:rgba(17,17,17,0.7);
  backdrop-filter:blur(10px);
}

.logo{
  color:#d4a373;
  font-size:28px;
  font-family:'Cinzel',serif;
  font-weight:700;
}

nav a{
  color:white;
  margin-left:25px;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#d4a373;
}

/* HERO */
.hero{
  height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),
  url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1600');

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  position:relative;
}

.hero-content{
  position:relative;
  z-index:2;
  color:white;
  width:85%;
}

.hero-label{
  color:#d4a373;
  letter-spacing:4px;
  font-size:14px;
}

.hero h1{
  font-size:68px;
  line-height:1.2;
  margin:25px 0;

  font-family:'Cinzel',serif;
}

.hero p{
  font-size:20px;
  margin-bottom:40px;
}

/* SEARCH */
.search-box{
  width:100%;
  max-width:700px;

  margin:auto;

  display:flex;

  background:white;
  border-radius:60px;

  overflow:hidden;
}

.search-box input{
  flex:1;
  padding:22px;
  border:none;
  outline:none;
  font-size:16px;
}

.search-box button{
  border:none;
  background:#2d4739;
  color:white;
  padding:0 40px;
  cursor:pointer;
}

/* DIRECTORY */
.main-directory{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;

  height:100vh;
}

/* MAP */
.map-section{
  position:relative;
}

#map{
  width:100%;
  height:100%;
}

/* LISTING */
.listing-section{
  background:#fffaf4;
  overflow-y:auto;
  padding:30px;
}

.listing-header{
  margin-bottom:30px;
}

.listing-header h2{
  font-size:32px;
  margin-bottom:10px;

  font-family:'Cinzel',serif;
}

.listing-card{
  background:white;
  border-radius:24px;
  overflow:hidden;

  margin-bottom:25px;

  box-shadow:0 10px 30px rgba(0,0,0,0.08);

  transition:0.4s;
}

.listing-card:hover{
  transform:translateY(-8px);
}

.listing-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.listing-info{
  padding:25px;
}

.tag{
  display:inline-block;

  background:#d4a373;
  color:white;

  padding:6px 14px;
  border-radius:20px;

  font-size:12px;

  margin-bottom:15px;
}

.listing-info h3{
  margin-bottom:12px;
}

.listing-info p{
  color:#666;
  line-height:1.6;
}

.meta{
  margin-top:18px;
  color:#2d4739;
  font-weight:600;
}

/* CITY */
.city-section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#9c6b3f;
  letter-spacing:4px;
  font-size:14px;
}

.section-title h2{
  font-size:48px;
  margin-top:15px;

  font-family:'Cinzel',serif;
}

.city-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.city-card{
  background:white;
  padding:40px;
  border-radius:24px;

  box-shadow:0 10px 30px rgba(0,0,0,0.08);

  transition:0.4s;
}

.city-card:hover{
  transform:translateY(-10px);
}

/* CTA */
.cta-section{
  padding:120px 8%;

  background:
  linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
  url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?q=80&w=1600');

  background-size:cover;
  background-position:center;

  text-align:center;
  color:white;
}

.cta-content span{
  color:#d4a373;
  letter-spacing:4px;
}

.cta-content h2{
  font-size:52px;
  margin:25px 0;

  font-family:'Cinzel',serif;
}

.cta-content p{
  margin-bottom:35px;
}

.cta-content button{
  border:none;
  background:#d4a373;
  color:white;

  padding:18px 40px;

  border-radius:50px;

  cursor:pointer;
}

/* FOOTER */
.footer{
  background:#111;
  color:white;
  text-align:center;

  padding:40px;
}

.footer h3{
  color:#d4a373;
  margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:992px){

  .main-directory{
    grid-template-columns:1fr;
    height:auto;
  }

  #map{
    height:500px;
  }

  .hero h1{
    font-size:42px;
  }

}

@media(max-width:768px){

  nav{
    display:none;
  }

  .search-box{
    flex-direction:column;
    border-radius:20px;
  }

  .search-box button{
    padding:20px;
  }

}