.footer-wrapper{
    height: max-content;
    background: #001845;
    padding: 80px 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: 3rem;
    width: 100%;
    max-width: 420px;
    border-bottom: 1px solid #FFFFFF;
    height: 100%;
    padding: 4rem 0;
}

.footer-logo img{
    width: 420px;
}

.footer-menu{
  max-width: 740px;
  width: 100%;
}

.address-wrapper{
    text-align: center;
    width: 640px;
    color: #FFFFFF;
    font-size: 24px;
}

.contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px ;
    gap: 1rem;
    text-decoration: none;
}
.contact-wrapper p{
    color: #FFFFFF;
    font-size: 1rem ;
    text-decoration: none;
}
 
.contact-wrapper a{
    color: #FFFFFF;
    font-size: 1rem ;
    text-decoration: none;
}

.contact-wrapper a:hover{
    color: #cf7525;
}

.address-wrapper p{
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 300;
}

.footer-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 2rem 0;
}
.news-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}
.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; 
  width: 100%;
  height: 60px;
  gap: 1rem;
}

.news-form-wrapper input[type="email"] {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    
}

.news-form-wrapper input[type="email"]:focus {
  outline: none;
}

.news-form-wrapper button {
    width: 200px;
    height: 40px;
    border-radius: 8px;
    background-color: #CA9C57;
    border: none;
    color: #FFFFFF;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.news-form-wrapper button:hover  { 
  background-color: #b67d28; /* Change to light color on hover */
}

.news-form-wrapper button:focus {
    outline: none;
}

.news-form-wrapper p{
    font-size: 20px;
    color: #FFFFFF;
}


/* social */
.link-footer li{
    list-style: none;
}

.link-footer li a{
    font-family: 'SansCondFont', sans-serif;
    color: #e6dfd3;
    text-decoration: none;
}

.link_wrapper{
  margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.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;
  font-weight: 700;
}

.footer-link-list .disabled-link {
  pointer-events: none;
  color: #aaa6a6;
  cursor: default;
}

.footer-link-list a:hover {
  color: #CA9C57; /* Change as needed */
}

.footer-link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
    row-gap: 2rem;      /* vertical spacing */
  column-gap: 3rem;   /* horizontal spacing */
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-wrapper .bullet {
  margin: 0 8px;
  color: #ffffff; /* light gray bullet */
  font-size: 20px;
}


.footer-link-list li:nth-child(1)  { grid-column: 1; grid-row: 1; }
.footer-link-list li:nth-child(2)  { grid-column: 1; grid-row: 2; }
.footer-link-list li:nth-child(3)  { grid-column: 1; grid-row: 3; }

.footer-link-list li:nth-child(4)  { grid-column: 2; grid-row: 1; }
.footer-link-list li:nth-child(5)  { grid-column: 2; grid-row: 2; }
.footer-link-list li:nth-child(6)  { grid-column: 2; grid-row: 3; }

.footer-link-list li:nth-child(7)  { grid-column: 3; grid-row: 1; }
.footer-link-list li:nth-child(8)  { grid-column: 3; grid-row: 2; }
.footer-link-list li:nth-child(9)  { grid-column: 3; grid-row: 3; }

.footer-link-list li:nth-child(10) { grid-column: 4; grid-row: 1; }
.footer-link-list li:nth-child(11) { grid-column: 4; grid-row: 2; }
.footer-link-list li:nth-child(12) { grid-column: 4; grid-row: 3; }

/* Tablet Landscape: 1025px - 1280px */
@media screen and (max-width: 1280px) {
  .footer-wrapper {
    padding: 60px 80px;
  }

  .footer-logo img {
    width: 340px;
  }

  .address-wrapper {
    width: 520px;
    font-size: 20px;
  }

  .news-form-wrapper {
    width: 100%;
  }

  .footer-link-list {
    column-gap: 2rem;
    row-gap: 1.5rem;
  }

  .news-form-wrapper input[type="email"] {
    height: 36px;
  }

  .news-form-wrapper button {
    height: 36px;
  }
}

/* Tablet Portrait & Mobile Landscape: 768px - 1024px */
@media screen and (max-width: 1024px) {
  .footer-wrapper {
    padding: 40px 40px;
    height: max-content;
  }

  .footer-logo img {
    width: 300px;
  }

  .address-wrapper {
    width: 100%;
    font-size: 18px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-link-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 1.5rem;
    column-gap: 1.5rem;
  }

   .footer-link-list li {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .news-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .news-form-wrapper {
    width: 100%;
  }

  .news-form-wrapper form {
    flex-direction: column;
    height: auto;
    gap: 0.8rem;
  }

  .news-form-wrapper input[type="email"],
  .news-form-wrapper button {
    width: 100%;
  }
}

/* Mobile Portrait: 320px - 767px */
@media screen and (max-width: 767px) {
  .footer-wrapper {
    padding: 30px 20px;
    height: auto;
    gap: 1.5rem;
  }

  .footer-logo {
    padding: 2rem 0;
  }

  .footer-logo img {
    width: 220px;
  }

  .address-wrapper {
    font-size: 16px;
  }

  .address-wrapper p {
    font-size: 16px;
  }

  .contact-wrapper {
    flex-direction: column;
    font-size: 16px;
  }

  .contact-wrapper a {
    font-size: 18px;
  }

  .news-form-wrapper p {
    font-size: 16px;
  }

  .footer-links {
    gap: 1rem;
  }

  .link_wrapper {
    margin-top: 2rem;
  }



  .footer-link-list a {
    font-size: 16px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .copyright p,
  .copyright a {
    font-size: 14px;
    text-align: center;
  }
}
