body {
    margin: 0;
    padding: 0;
    background-color: #014705;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
    color: white;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.center-image {
    width: 100%;
    display: block;
    margin: 0 auto;
    opacity: 0.5;
}

.fixed-menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #3e2723;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-list{
    display: flex;
    list-style: none;
    height: 100%;
}

.nav-item{
    flex: 1;
    border-left: 1px solid #555;
}

.nav-item:last-child{
    border-right: 1px solid #555;
}

.nav-item a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s;
}

.slider-images
{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow {
    overflow: hidden;
    position: relative;
    width: 1200px;
    max-width: 100%;
    height: 700px;
    margin: 20px auto;
}

.slideshow img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    margin-left: 0; 
}

.main-content {
    text-align: center;
    padding-top: 80px;
}

form {
    width: 420px;
    max-width: 92%;
    margin: 30px auto;
    font-family: sans-serif;
  }
  
  .form-group {
    margin-bottom: 12px;
  }
  
  label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
  }
  
  .required {
    color: red;
  }
  
  input, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
  }

  
  .btn {
    padding: 8px 14px;
    border: 1px solid #333;
    background: #fff;
    cursor: pointer;
    margin-right: 8px;
  }
  
  .submit-btn {
    background: #333;
    color: #fff;
  }
