body {
    margin: 0;
    font-family: 'Cinzel', Serif;
    background-color: #fdfdf9;
}

.logo-container {
    text-align: center;
    padding: 20px 0 10px 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    margin-bottom: 30px;
}

.navbar {
      background-color: #ffffff;
      border-bottom: 1px solid #e3d4b2;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
    }

    .nav-links {
      display: flex;
      list-style-type: none;
      margin: 0;
      padding: 0;
    }

    .nav-links li {
      margin: 0 15px;
    }

    .nav-links a {
      text-decoration: none;
      color: #6c5233;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #bfa76f;
    }

    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background-color: #6c5233;
      margin: 4px;
      transition: all 0.3s ease;
    }