body {
    margin: 0;
    font-family: "Baskerville", serif;
  }

  .navbar {
    display: flex;
    align-items: center;
    background-color: #92b4b8;
    padding: 0;
  }

  .logo {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0px 15px;  /* Increase padding for better spacing */
    flex-shrink: 0;
}

.logo img {
    height: 100px;  /* Increase the height of the logo image */
    margin-right: 15px;  /* Increase the margin between image and text */
}

.logo-text {
    font-size: 24px;  /* Increase the font size of the text */
    font-weight: bold;
    color: #5a2a10;
}

  .nav-links {
    display: flex;
    margin-left: auto;
    padding-right: 30px;
  }

  .nav-links a {
color: white;
text-decoration: none;
margin: 0 10px;
font-size: 16px;
transition: color 0.3s ease, text-decoration 0.3s ease;
}

.nav-links a:hover {
color: #f8e8d0; /* soft cream/beige hover color */
text-decoration: underline;
}

  .nav-links a:not(:last-child)::after {
    content: '|';
    margin-left: 10px;
    
  }
  .hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures it stretches without distortion */
  }

  .section-home {
    text-align: center;
    font-family: "Baskerville", serif;
    padding: 40px 20px;
  }

  .section h2 {
    color: #6a9ba1;
    font-family: "Baskerville", serif;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-family: "Baskerville", serif;
    font-size: 16px;
    line-height: 1.6;
  }

  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .buttons a {
    border: 1px solid #333;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s, color 0.3s;
  }

  .buttons a:hover {
    background-color: #333;
    color: #fff;
  }

  .about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    border-top: 1px solid #ccc;
  }

  .about-text {
    max-width: 300px;
    padding: 0 20px;
    font-size: 16px;
  }

  .about-text button {
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #333;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s, color 0.3s;
  }

  .about-text button:hover {
    background-color: #333;
    color: white;
  }

  .about-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }

  .follow {
    text-align: center;
    padding: 40px 20px;
  }

  .follow h3 {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #6a9ba1;
  }

  .insta-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
  }

  .insta-row img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
  }
/* Footer Styles */
.footer {
  background-color: #92b4b8;
  color: white;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
  position: relative;
  left: 0;
}
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .footer-icon {
    width: 50px;
    height: auto;
  }
  
  .footer-text h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    font-family: 'Georgia', serif;
  }
  
  .footer-text p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
  }

  .container-menu {
    padding: 40px;
  }
  h2 {
    text-align: center;
    font-family:'beau rivage';
    color: #72a9b3;
  }
  .foodnav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #d8c4b0;
    padding-bottom: 5px;
  }
  .foodnav a {
    margin: 0 15px;
    text-decoration: none;
    color: #b09c87;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
  }
  .foodnav a:hover {
    color: #5c433a;
  }
  .foodnav a.active {
    color: #5c433a;
    font-weight: bold;
    border-bottom: 2px solid #5c433a;
  }
  .section {
    padding: 40px;
    display: none;
  }
  .section.active {
    display: block;
  }
  .item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
  }
  .item h3 {
    margin: 0;
    display: flex;
    justify-content: space-between;
    font-weight: normal;
  }
  .item p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #444;
  }
  .our-story .hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  
  .our-story .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .section-title {
    text-align: center;
    font-family: "Baskerville", serif;
    font-size: 36px;
    color: #57a1a8;
    margin-bottom: 20px;
  }
  
  .subheading {
    font-size: 20px;
    color: #7c4b3a;
    margin-top: 40px;
    margin-bottom: 10px;
  }
  
  .mission-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Baskerville", serif;
    font-size: 14px;
    color: #5e5e5e;
  }
  
  .values-list {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
  }
  
  .values-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #444;
  }
  
  .value-title {
    font-family: 'beau rivage';
    font-size: 20px;
    font-weight: bold;
  }
  
  .value-title.quality {
    color: #57a1a8;
  }
  
  .value-title.community {
    color: #57a1a8;
  }
  
  .value-title.sustainability {
    color: #57a1a8;
  }
  
  .value-title.hospitality {
    color: #57a1a8;
  }

  .contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    gap: 40px;
  }
  
  .contact-info {
    flex: 1;
    min-width: 250px;
  }
  
  .contact-info h2,
  .contact-info h3 {
    font-size: 20px;
    color: #3b1e1e;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
  }
  
  .form-title {
    font-family: 'beau rivage';
    font-size: 26px;
    text-align: center;
    color: #57a1a8;
    margin-bottom: 20px;
  }
  
  .form-title .italic {
    font-style: italic;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  input,
  textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
  }
  
  button {
    width: 100px;
    padding: 10px;
    background-color: #5b2b1d;
    color: #fff;
    border: none;
    font-size: 14px;
    font-family: "Baskerville", serif;
    cursor: pointer;
    align-self: flex-end;
  }
  
  button:hover {
    background-color: #7a3d2b;
  }
  
  .form-message {
    margin-top: 10px;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
    }

    .about-img img {
      margin-bottom: 20px;
    }
  }