@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}



body {
    font-family: Arial, sans-serif;
    list-style-type: none;
    font-family: 'Nanum Gothic', sans-serif;
}

/* Menu */

.fixed-menu {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 1000;
}

.menu-button {
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    font-weight: normal;
}

.menu-button:hover {
    font-weight: bolder;
}

.menu-box {
    position: fixed;
    bottom: 70px;
    right: -300px; 
    background-color: transparent;
    /* box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3); */
    transition: right 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999;
}

.menu-box.open {
    right: 0; /* Slide in */
}

.menu-box h2 {
    margin-top: 0;
}

.menu-box ul {
    list-style: none;
    padding: 5px 30px;
    font-size: 16px;
}

.menu-box ul li {
    margin: 10px 0;
}

.menu-box ul li a {
    color: #111;
    font-weight: normal;
}

.menu-box ul li a:hover {
    border-bottom: 1px solid #111;
    transition: all 0.3s ease-in-out;
}

.close-button {
    padding: 10px 0px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.close-button i {
    font-size: 24px;
}

/* BtStudio Logo */

.btstudio {
    position: fixed;
    bottom: 0px;
    left: 10px;
  }
  
  .btstudio h4 {
    font-size: 18px;
    font-weight: normal;
  }
  
  .btstudio img {
    width: 8%;
  }

/* Contact Page */
.contact {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
}

.contact-container {
    display: flex;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-box {
    flex: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.map-box iframe {
    width: 70%;
    margin-top: 100px;
}

.map-box p {
    margin-top: 50px;
}

.info-box {
    flex: 50%;
    padding: 100px 100px;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

.info-box p a {
    font-size: 15px;
    font-family: 'Sarabun', sans-serif;
    color: #111;
    text-decoration: none;
}

.info-box p a:hover {
    color: rgb(89, 172, 172);
}

.info-box h2 {
    margin: 0;
}

.social-media {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    text-decoration: none;
    padding: 10px;
    /* background-color: #007BFF; */
    color: black;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.4s forwards;
    font-size: 25px;
    border: 1px solid #111;
}

.social-icon:nth-child(1) {
    animation-delay: 0.2s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.4s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px)  {
  .btstudio {
    position: fixed;
    bottom: 0px;
    left: 10px;
    padding: 0;
    margin: 0;
  }
  .btstudio img {
    width: 8%;
    padding: 0;
    margin: 0;
  }

  .fixed-menu {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 1000;
    font-size: 12px;
}

.menu-box  {
bottom: 3px;
box-shadow: 5px 10px 8px rgb(0, 0, 0);
background-color: aliceblue;
}

.contact {
    width: 100%;
    height: auto;
}

.contact-container {
    flex: 100%;
    display: flex;
    flex-direction: column;
}

.info-box {
    display: flex;
    flex: 100%;
    flex-direction: column;
    width: 100%;
}

.map-box {
    display: flex;
    flex: 100%;
}

.map-box iframe {
    width: 100%;
}

.map-box p {
    margin: 50px auto;
    font-size: 10px;
}

}