.footer-wrapper{
    background: #3D543C;
    padding: 120px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* footer logo */

.footer-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    border-bottom: 1px solid #FFFFFF;
    height: 100%;
    padding: 4rem 0;
}

.footer-logo img{
    width: 420px;
}


.address-wrapper{
    text-align: center;
    width: 740px;
    font-size: 18px ;
}

.address-wrapper p{
    color: #FFFFFF;
    line-height: 28px;
    letter-spacing: 1px;
    font-size: 18px;
}

.contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    gap: 1rem;
    text-decoration: none;
}

.contact-wrapper p{
    color: #FFFFFF !important;
    font-size: 18px;
}
 
.contact-wrapper a{
    color: #FFFFFF;
    font-size: 18px ;
    text-decoration: none;
}

.contact-wrapper a:hover{
    color: #cf7525;
}

.footer-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 78px;
    width: 100%;
    height: 100%;
    padding: 2rem 0;
}
.news-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.news-form-wrapper{
    display: flex;
    flex-direction: column;
    width: 581px;
    justify-content: center;
    align-items: center;
    gap: .7rem;
}

.news-form-wrapper form {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F9FAF3;
  width: 100%;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  gap: 1rem;
  padding: .7rem 20px;
}

.news-form-wrapper input[type="email"] {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

.news-form-wrapper input[type="email"]:focus {
  outline: none;
  border-bottom: 1px solid #cf7525;
}

.news-form-wrapper button {
    width: 200px;
    height: 34px;
    border-radius: 20px 0 20px 0;
    background-color: #cf7525;
    border: none;
    color: #FFFFFF;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-wrap{
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.news-form-wrapper button:hover  { 
  background-color: #a05a1e; /* Change to light color on hover */
}

.news-form-wrapper button:focus {
    outline: none;
}

.news-form-wrapper p{
    font-size: 12px;
    letter-spacing: 1px;
    color: #3D543C;
}

.news-paragraph{
  font-size: 20px !important;
  letter-spacing: 1px !important;
  color: #ffffff !important;
  font-weight: 200 !important;
}

/* social */
.link-footer li{
    list-style: none;
}

.link-footer li a{
    font-family: 'SansCondFont', sans-serif;
    color: #e6dfd3;
    text-decoration: none;
    text-transform: uppercase;
}



.social-menu ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-menu li{
    list-style: none;
}

.social-icon{
    width: 40px;
    height: 40px;
}


.copyright p{
    color: #FFFFFF;
    font-size: 18px ;
}


.copyright a{
    color: #FFFFFF;
    text-decoration: none;
}

.copyright a:hover{
    color: #cf7525;
}

.footer-link-list li {
  margin: 0;
  width: 100%;
}

.footer-link-list a {
  text-decoration: none;
  color: #fff; /* Change as needed */
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-link-list a[href="#"] {
  pointer-events: none;
  color: #aaa6a6;
  cursor: default;
}

.footer-link-list a:hover {
  color: #cf7525; /* Change as needed */
}

.footer-link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  row-gap: 20px;      /* vertical spacing */
  column-gap: 100px;   /* horizontal spacing */
  list-style: none;
  padding: 0;
  margin: 0;
}

.reserved-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ---------- TABLET (≤1024px) ---------- */
@media (max-width: 1024px) {
  .footer-wrapper {
    padding: 60px 40px;
  }

  .footer-logo img {
    width: 300px;
  }

  .address-wrapper {
    width: 100%;
    font-size: 16px;
    padding: 0 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-links {
    gap: 40px;
  }

  .news-container {
    flex-direction: column;
    gap: 20px;
  }

  .news-form-wrapper {
    width: 100%;
  }

  .footer-link-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 15px;
    text-align: center;
  }
}

/* ---------- MOBILE (≤768px) ---------- */
@media (max-width: 768px) {
  .footer-wrapper {
    padding: 40px 20px;
    gap: 1.5rem;
  }

  .footer-logo {
    padding: 2rem 0;
  }

  .footer-logo img {
    width: 220px;
  }

  .address-wrapper {
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .contact-wrapper {
    flex-direction: column;
    font-size: 14px;
    gap: 0.5rem;
  }

  .footer-links {
    gap: 60px;
  }

  .news-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .news-form-wrapper {
    width: 100%;
    height: auto;
    gap: 0;
  }

  .news-form-wrapper form {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .news-form-wrapper button {
    width: 100%;
    height: 40px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .news-paragraph {
      font-size: 14px !important;
      text-align: center;
      margin-top: 10px;
  }


  .social-menu ul {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .copyright p,
  .copyright a {
    font-size: 14px;
    text-align: center;
  }
}