header{
    position: relative;
    background-color: #edbd79;
    max-width: 1100px;
    margin: auto;
    
    }
.inside-header{
  /*  display: inline-flex;*/

  /*flex-shrink: 0;*/
  
  display: grid;
  grid-template-columns: 2fr 3fr;
    align-items: center;
    padding: 10px 30px;
  /*text-align: left;*/
}
.logo{
    width: 150px;
    vertical-align: middle;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    height: auto;
    }
.title{
        font-family: Arial;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 50px;
    line-height: 1.3em;
        word-wrap: break-word;
        margin: 0;
}
.title, .sub-title{
    color: #612625;
    margin: 0;
}
#menu{
    max-width: 1100px;
    margin: auto;
    background-color: #612625;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
#navList{
  height: 50px;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  align-items: center;
}
#navList li{
    list-style-type: none;
    border-right: 1px solid #fff;
    flex: 1 1 0;
    height: 50px;
}
#navList li a{
  color: #fff;
  line-height: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
#navList li a:hover{
    background: #000;
}
.navSearchBtn{
     color: #fff;
  line-height: 50px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
    background: none;
    height: 100%;
  width: 100%;
  border: none;
  margin: auto;
  cursor: pointer;
}
#navList li button:hover {
  background-color: #000;
}
footer{
    max-width: 1100px;
    margin: 50px auto 10px auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.upper-footer{
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    }
.footer-title{
    font-weight: 500;
}
footer a{
    color: #000;
}
footer a:hover{
    text-decoration: underline;
    color: green;
}
 footer ul{
     padding: 0;
     margin: 0;
 }
 footer ul li{
     list-style-type: none;
     line-height: 2;
     text-decoration: underline;
 }
 .copyright-bar{
     text-align: center;
  width: 100%;
  font-size: 14px;
 }
 /*++++++++++++*/
   .toSearch {
    background-color: #aa183d;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 20px;
    height: 20px;
    padding: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s;
    border: none;
    display: none;
    z-index: 5;
  }
  .toSearch:hover {
    background: green;
  }
  .toSearch i {
    font-size: 20px;
    color: #fff;
  }
  /* =========================================================
   SOCIAL STICKY BUTTON
========================================================= */
.social-sticky {
    position: fixed;
    top: 80%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
}

.social-sticky.visible {
    opacity: 1;
    pointer-events: auto;
}

.social-link {
    background: #0088cc;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-radius: 30px 0 0 30px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    width: 50px;
    transition: width .6s ease, background .3s ease;
}

.social-link:hover {
    width: auto;
}

.typing {
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid rgba(255,255,255,0.7);
    animation: blink .7s infinite;
    transition: opacity .3s ease;
}

.icon-wrapper {
    font-size: 20px;
    margin-left: 8px;
    transition: transform .6s ease, opacity .6s ease;
}

.rotate-out {
    transform: rotateY(90deg);
    opacity: 0;
}

.rotate-in {
    transform: rotateY(0deg);
    opacity: 1;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes blink {
    0%, 50%, 100% { border-color: rgba(255,255,255,0.7); }
    25%, 75% { border-color: transparent; }
}

/*++++++++++++++++++++++++*/
#toggle{
    display: none;
}
@media screen and (max-width: 800px) {
#toggle{
    display: block;
}
   .iconbar1,
    .iconbar2,
    .iconbar3 {
      width: 35px;
      height: 5px;
      background-color: #000;
      margin: 6px 0;
      transition: 0.4s;
    }
    .change .iconbar1 {
      transform: translate(0, 11px) rotate(-45deg);
    }
    .change .iconbar2 {
      opacity: 0;
    }
    .change .iconbar3 {
      transform: translate(0, -11px) rotate(45deg);
    }
}
/* Overlay */
.navSearchOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.navSearchOverlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Search box */
.navSearch {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Form */
.navSearchForm {
  display: flex;
}

.navSearchForm input {
  flex: 1;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.navSearchForm button {
  padding: 0 20px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

/* Autocomplete */
.autocomplete {
  width: 100%;
}

.autocomplete-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 8px 8px;
  max-height: 260px;
  overflow-y: auto;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.autocomplete-items div {
  padding: 12px;
  cursor: pointer;
}

.autocomplete-items div:hover,
.autocomplete-active {
  background: #f2f2f2;
}