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

@font-face {
  font-family: 'Bree Serif';
  src: url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap') format('woff2');
  unicode-range: U+0020-007F; /* ช่วง Unicode สำหรับตัวอักษรภาษาอังกฤษ */
}

@font-face {
  font-family: 'Prompt';
  src: url('https://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CGyFYe-vN5qQ.woff2') format('woff2');
  unicode-range: U+0E00-0E7F; /* ช่วง Unicode สำหรับตัวอักษรภาษาไทย */
}

.prompt-regular {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.bree-serif-regular {
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
  aspect-ratio: 16/5;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* สีและความทึบของ overlay */
}

.logo-container {
  display: flex;
}

.logo-container img {
  max-width: 250px;
  min-width: 200px;
  width: 100%;
  margin-bottom: 0.5rem;
}

.footer-nav {
  display: flex;
  flex: row;
  gap: 20px;
}

.footer-nav a {
  font-size: 1.4rem;
} 

.footer-link {
  color: white;
  transition: transform 0.3s, filter 0.3s;

}

.footer-link:hover {
  transform: scale(1.2);
  text-decoration: none;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  gap: 1rem;
}

.footer-location {
  font-family: 'Bree Serif', 'Prompt', sans-serif;
}

.footer-location,
.footer-tel {
  display: flex;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin: 0;
}

.footer-social img {
  display: flex;
  transition: transform 0.3s, filter 0.3s;
}

#normal-logo {
  width: 30px;
  height: 30px;
}

.footer-social img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.page-link {
  padding: 0;
  border: none;
}

@media (max-width: 755px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .logo-container img {
    max-width: 220px;
  }
}