* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: #fff8f0;
    color: #4a3c31;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  a {
    color: #6b4f4f;
    text-decoration: none;
    cursor: pointer;
  }
  
  a:hover {
    color: #a66e6e;
  }
  
  nav {
    background-color:#f7e9df;
    padding: 16px 32px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  nav .logo {
    font-size: 30px;
    color: #6b4f4f;
    font-weight: bold;
    letter-spacing: 2px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  nav ul li {
    font-weight: 600;
  }
  
  .hero {
    background: url('mike-kenneally-TD4DBagg2wE-unsplash.jpg') no-repeat center/cover;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 16px;
  }
  
  .hero h1 {
    color: #fff;
    font-size: 150px;
    padding: 16px 32px;
    border-radius: 10px;
    max-width: 600px;
    line-height: 1.2;
  }

  .hero h2 {
    color: #fff;
    font-size: 30px;
    padding: 16px 32px;
    border-radius: 10px;
    max-width: 600px;
    line-height: 1.2;
    text-align: left;
  }
  
  #about {
    padding: 64px 232px;
    background: #f7e9df;
    text-align: center;
  }
  
  #about h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #6b4f4f;
  }
  
  #about p {
    margin: 0 auto 32px;
    font-size: 20px;
    color: #4a3c31;
  }
  
    
  #menu {
    display: flex;   
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 300px;
    margin-right: auto;
    text-align: center;
  }
     
  #menu p {
    max-width: 500px;
    margin: auto auto;
    font-size: 20px;
    text-align: left;
    color: #4a3c31;
  }

  #menu iframe {
  width: 315px;
  height: 560px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(107,79,79,0.3);
  max-width: 100%; 
  display: block;
  margin: 0 auto 20px auto;
}
  
  #contact {
    padding: 64px 32px;
    text-align: center;
    background: #f7e9df;
  }
  
  #contact h2 {
    color: #6b4f4f;
    margin-bottom: 16px;
  }
  
  #contact p {
    max-width: 700px;
    margin: 0 auto 32px;
    color: #4a3c31;
  }
  
  footer {
    background: #6b4f4f;
    color: #fff;
    text-align: center;
    padding: 16px 32px;
    font-size: 15px;
  }
  
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 16px;
    }
  
    .hero h1 {
      font-size: 32px;
    }
  }
  