header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 10px;
    background-color: rgb(189, 161, 161);


}

*{
    box-sizing: border-box;
}

hr {
    margin-top: 20px;
    border: none;
    border-top: 1px solid rgb(0, 0, 0);
    width: 100%;
    display:block
}

html, body{
    background-color: hsl(0, 0%, 100%);
    margin: 0;
    padding: 0;  
}

.flowers{
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  text-align: center;
  font-weight: bold;
}




.content {
    text-align:center;
    font-family: 'Caveat', cursive;
    font-weight: 500;
}


.navbar {
    display:flex;
    justify-content: space-between;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: Georgia, sans-serif, 'Times New Roman', serif;
    text-decoration: none;
    
   
   
}

.navbar a:hover{
    background-color: rgb(0, 0, 0);
}

.navbar ul a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 11px 24px;

}

.burger {
    display: none;
    cursor: pointer;
    font-size: 22px;

}
main {
  display: flex;
  min-height: 100vh;
}




.logo{
  width: 200px;  
  height: auto;
  flex-shrink: 0;
}

.site-footer {
  background-color: #faf6f0;
  border-top: 1px solid #e0d8ce;
  padding: 40px 40px 16px;
  font-family: Georgia, serif;
  color: #3a2a1a;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 24px;
}

.footer-brand {
  max-width: 360px;
}

.footer-name {
  font-size: 22px;
  font-style: italic;
  font-weight: bold;
  margin: 0 0 6px;
}

.footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: #8a7a6a;
  margin: 0 0 12px;
}

.footer-blurb {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

.footer-contact .footer-heading {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
}

.footer-contact a {
  color: #3a2a1a;
  text-decoration: none;
  font-size: 14px;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #d8c8b8;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8a7a6a;
}

.footer-bottom-right {
  font-style: italic;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .footer-logo{
    width:50px;
  }
}