* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
  }
  body {
    font-family: "Nunito", sans-serif;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("maxresdefault1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #5A3A1C;
    animation: fadeIn 2s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #5A3A1C;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 1s ease;
  }
  @keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }
  .logo {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 30px;
    color: #E2B007;
    text-transform: uppercase;
  }
  nav ul {
    display: flex;
    gap: 30px;
  }
  nav a {
    color: #E2B007;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background: white;
    transition: width 0.4s ease;
  }
  nav a:hover::after {
    width: 100%;
  }
  nav a:hover {
    color: white;
  }
  .cta-button {
    padding: 12px 24px;
    background: #E2B007;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .cta-button:hover {
    background-color: white;
    color: #E2B007;
  }
  .sec_1 {
    text-align: center;
    padding: 100px 20px;
    animation: fadeInUp 1.5s ease;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .sec_1 h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 900;
    color: #E2B007;
    margin-bottom: 30px;
  }
  .sec_1 p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f5f5f5;
    line-height: 1.6;
  }
  .button_1 {
    padding: 16px 32px;
    background: #E2B007;
    color: white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button_1:hover {
    background: white;
    color: #E2B007;
  }
  footer {
    background-color: #5A3A1C;
    padding: 40px 20px;
    color: #E2B007;
    animation: fadeIn 2s ease;
  }
  .footer_options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  footer h4 {
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
  }
  footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 40px;
    background-color: #E2B007;
  }
  .ul_1 li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .social_icons i {
    margin-right: 15px;
    color: #E2B007;
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  .social_icons i:hover {
    transform: scale(1.2);
  }
  .copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
  }
  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background-color: #5A3A1C;
      position: absolute;
      right: 40px;
      top: 70px;
      padding: 10px 20px;
      border-radius: 8px;
    }
    .nav-toggle {
      display: block;
      color: #E2B007;
      font-size: 24px;
      cursor: pointer;
    }
  }