body{
  margin:0;
  font-family:Georgia, serif;
  background:#f8f3ed;
  color:#3b3129;
  line-height:1.7;
}

.hero{
  text-align:center;
  padding:140px 20px;
  background:linear-gradient(rgba(255,250,247,.85), rgba(255,250,247,.85)),
             url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
}

  .hero-photo{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 30px auto;
    border: 6px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.logo{
  width:180px;
  height:auto;
  display:block;
  margin:0 auto 30px;
}

h1{
  font-size:3.2rem;
  margin-bottom:15px;
}

h2{
  color:#8b6a56;
  font-size:2.2rem;
  text-align:center;
}

p{
  max-width:750px;
  margin:0 auto 25px;
  text-align:center;
}

section{
  max-width:1000px;
  margin:auto;
  padding:70px 25px;
}

ul{
  list-style:none;
  padding:0;
  text-align:center;
}

ul li{
  background:white;
  margin:12px auto;
  padding:18px;
  max-width:350px;
  border-radius:12px;
  box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.btn{
  display:inline-block;
  background:#8b6a56;
  color:white;
  padding:15px 35px;
  border-radius:40px;
  text-decoration:none;
  font-weight:bold;
  transition:.3s;
}

.btn:hover{
  background:#6f5343;
}

footer{
  background:#8b6a56;
  color:white;
  text-align:center;
  padding:30px;
}
/* Navigation */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.nav-logo img{
  height: 120px;
    width: auto;
}

.nav-menu{
    display:flex;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu a{
    text-decoration:none;
    color:#4b4037;
    font-weight:bold;
}

.book-nav{
    background:#8b6a56;
    color:white;
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.book-nav:hover{
    background:#6f5343;
}
section .btn{
    display:block;
    width:200px;
    margin:40px auto 0;
    text-align:center;
}
