
/* ANIMATION-=-------------------------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideIn {
    from {
      transform: translateX(-200px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slideIn_reverse {
    from {
      transform: translateX(200px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideIn_2 {
    from {
      transform: translateX(-20px);
      opacity: 0;
    }
    to {  
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slideIn_3 {
    from {
      transform: translateX(-100px);
      opacity: 0;
    }
    to {  
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slideUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0px);
      opacity: 1;
    }
  }

  @keyframes slideUpSimple {
    from {
      transform: translateY(50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100px); /* start above */
      opacity: 0;
    }
    to {
      transform: translateY(0); /* end in place */
      opacity: 1;
    }
  }
  @keyframes zoomIn {
    from {
      transform: scale(0.7); /* starts invisible/super tiny */
      opacity: 0;
    }
    to {
      transform: scale(1); /* normal size */
      opacity: 1;
    }
  }


@keyframes fadeIn {
  0% {
    opacity: 0; /* completely invisible */
  }
  100% {
    opacity: 1; /* fully visible */
  }
}




.todo {
  opacity: 0;
}



.appear{
  animation: fadeIn 1.4s ease-out forwards;
  animation-delay: 1.4s;
}

/* ANIMATION  */


#header{
  animation: slideIn 1s ease forwards;
  animation-delay: 1.4s;
  opacity: 0;
}

.hours{
  animation: slideIn_reverse 0.8s ease forwards;
  animation-delay: 1.6s;
  opacity: 0;
}
.contact_container a{
    animation: slideIn_2 1.4s ease forwards;
  animation-delay: 2s;
  opacity: 0;

}
.bar_nav{
      animation: fadeIn 1.2s ease forwards;
  animation-delay: 2s;
  opacity: 0;
}


* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #dddbdb;
padding: 0;

}






/* Font styles //////////////////////////////*/
  .nav_word{
      font-family: "Quicksand", sans-serif;
  }
   
.contact_container{
 font-family: "Red Hat Display", sans-serif;
}




/* ================= Navigation Bar ================= */
#nav_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color:#e5e5e5;
    padding: 0 10%;  
    border: black 0.5px solid;
  }



  #logo {
    width: 150px;
    height: 150px;
    margin-left: 0px;}


  .nav_word {
    text-decoration: none;
    color: #4c5760;
    font-size: 25px;
    padding: 10px;
    font-weight: 400;
    display: inline-block;
    transition: transform 0.2s, color 0.2s;
  }



  .nav_word:hover {
    transform: scale(1.2);
    color: #fe5f55;
    text-decoration: underline;
  }

  #nav_bar {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 1rem 2rem;
  }
  .side_bar {
    position: fixed;
    top: 0;
    right: -250px; /* start offscreen */
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #e5e5e5;
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    list-style-type: none;
    gap: 20px;
    padding: 15px;
    transition: right 0.9s ease; /* smooth slide animation */
  }

  /* Slide in when active */
  .side_bar.active {
    right: 0;
  }

  .side_bar li{
    width: 100%;

  }
  .side_bar a{
    width: 100%;
  }
  .menu_button {
      margin-left: 5rem;
      margin-top: 2rem;     /* space from the previous menu items */
      cursor: pointer;
      display: none;       /* show it's clickable */
  }


  /* Make the icon bigger */

  .side_bar li:nth-child(1) {
    margin: 0px;
      margin-top: 2rem;     /* space from the previous menu items */
      cursor: pointer;       /* show it's clickable */
  }

  /* Make the icon bigger */
  .side_bar li:nth-child(1) .material-symbols-outlined {
      font-size: 30px;
  }



  /* ================= Responsive Nav ================= */
  @media (max-width: 768px) {
    #nav_container {
      display: flex;
      flex-direction: column;
    }

  }

  @media (max-width: 600px) {
      .hideOnMobile{
      display: none;
    }
    #nav_container{
      display: flex;
      align-items: center;
      flex-direction: row;
      justify-content: space-between;
      
    }
    #logo{

      margin-left: 1rem ;
    }
    body{
      margin: 0px;
      padding: 0px
    }
    .menu_button {
      margin-right: 1rem;
      margin-top: 1rem;     /* space from the previous menu items */
      cursor: pointer;
      display: inline;       /* show it's clickable */
  }
  .menu_button .material-symbols-outlined {
      font-size: 35px;

  }
  .nav_word:hover {
    transform: scale(1.1);
    color: #fe5f55;
  }
  .button_home{
    border: black 2px solid;

  }
  #view{
    margin-top: 20px;
  }
    
  }

/* ================= Social Media ================= */
#social_media {
  border: 2px black solid;
  height: 200px;
  margin-left: 0px;
  margin-top: 0px;
  width: 100%;
  background-color: rgba(36, 32, 16, 0.929);
  text-align: center;
}

.icon {
  font-size: 40px;
  margin: 5px;
}

.icon i {
  margin-top: 25px;
  color: white;
  transition: transform 0.2s, color 0.2s;
}

/* Social media hover colors */
#social_media .icon:last-child:hover i {
  color: rgb(79, 206, 93);
  transform: scale(1.2);
}

#social_media .icon:nth-child(1):hover i {
  color: rgb(66, 103, 179);
  transform: scale(1.2);
}

#social_media .icon:nth-child(2):hover i {
  color: rgb(193, 53, 132);
  transform: scale(1.2);
}




/* THIS IS STYLE FOR CONTACT  */


.contact_container{
  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
     text-align: center;
     font-size: 1.20rem;
     color: #14213d;
          font-weight: bolder;
          

  

}
#header{
  margin-top: 2.3rem;
  margin-bottom: 1.6rem;
  font-size: 2.8rem;
  font-weight: 600;
  
  
}
.contact_container p a{
line-height: 2;
color: #3c6e71;
font-size: 1.7rem;
font-weight: 700;


  }
.hours{
  margin-top: 1.7rem;
line-height: 1.7;
  font-size: 1.65rem;
  font-weight: 400;
}

#opening{
  font-weight: 700;
    font-style: italic;
}




.map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2rem 0;
}

.map iframe {
  width: 95%;
  max-width: 900px;   /* big on desktop */
  height: 50vh;        /* scales with screen */
  min-height: 0px;   /* not tiny on phones */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}



@media (max-width: 600px) {
  .contact_container {
    font-size: 1rem; /* smaller on phones */
  }
  .contact_container p a {
    font-size: 1.3rem;
  }
  .hours{
    font-size: 1.2rem;
 }
}
