/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
    transition: all 0.5s;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header.header-transparent {
    background: transparent;
}

header.header-scrolled {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-100); 
    padding: 12px;
}
header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}
@media (max-width: 768px) {
    header.header-scrolled {
        padding: 8px 0;
    }
}

/*---------------------------------------------
# Sections General
---------------------------------------------*/
section {
    padding: 20px 180px;
    overflow: hidden;
  }
  @media only screen and (max-width: 1200px) {
      section {
        padding: 20px 8px;
        overflow: hidden;
      }
  }

/*---------------------------------------------
# Footer
---------------------------------------------*/
#footer {
    background: var(--primary); 
    padding: 0 0 30px 0;
    color: var(--white);
}
#footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.6px solid #fff;
    padding-top: 20px;
}
#footer .copyright {
    letter-spacing: 0.05rem;
}
#footer i{
    font-size: 1.5rem;
}
#footer li a:hover{
    color: #A57242;
}
@media (max-width: 768px){
    #footer .container{
        flex-direction: column;
        gap: 20px;
    }
}
/*---------------------------------------------
# Back to top button
---------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 998;
    background: #E4AD56; 
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}
.back-to-top:hover {
    background: #A57242;
    color: var(--white);
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
/*---------------------------------------------
# Disable aos animation delay on mobile devices
---------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
}