@font-face {
  font-family: 'Switzer-Regular';
  src: url("../fonts/Switzer-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

body {
  font-family: 'Switzer-Regular', Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #fff3e0;
  color: black;
  background-image: url("../images/illustration-bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 200%; }

.copy-01 {
  font-family: 'Switzer-Regular', Arial, sans-serif; }

.copy-02 {
  font-size: 12px; }
  @media screen and (min-width: 320px) {
    .copy-02 {
      font-size: calc(12px + 3 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    .copy-02 {
      font-size: 15px; } }

.site-wrapper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'GFS Didot', serif;
  font-weight: 300; }

h1 {
  font-size: 28px; }
  @media screen and (min-width: 320px) {
    h1 {
      font-size: calc(28px + 20 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    h1 {
      font-size: 48px; } }

h2 {
  font-size: 24px; }
  @media screen and (min-width: 320px) {
    h2 {
      font-size: calc(24px + 16 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    h2 {
      font-size: 40px; } }

h3 {
  font-size: 20px; }
  @media screen and (min-width: 320px) {
    h3 {
      font-size: calc(20px + 12 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    h3 {
      font-size: 32px; } }

h4 {
  font-size: 18px; }
  @media screen and (min-width: 320px) {
    h4 {
      font-size: calc(18px + 10 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    h4 {
      font-size: 28px; } }

h5 {
  font-size: 16px; }
  @media screen and (min-width: 320px) {
    h5 {
      font-size: calc(16px + 8 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    h5 {
      font-size: 24px; } }

h6 {
  font-size: 14px; }
  @media screen and (min-width: 320px) {
    h6 {
      font-size: calc(14px + 6 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    h6 {
      font-size: 20px; } }

p, address {
  font-size: 17px; }
  @media screen and (min-width: 320px) {
    p, address {
      font-size: calc(17px + 4 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    p, address {
      font-size: 21px; } }

a {
  color: black;
  text-decoration: underline; }

.button {
  font-size: 16px;
  font-weight: 700;
  padding: 8px 30px;
  background-color: transparent;
  color: #ee4300;
  border: 2px solid #ee4300;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease; }
  @media screen and (min-width: 320px) {
    .button {
      font-size: calc(16px + 4 * ((100vw - 320px) / 960)); } }
  @media screen and (min-width: 1280px) {
    .button {
      font-size: 20px; } }
  .button:hover {
    background-color: #ee4300;
    color: white; }

header {
  margin: 0.5rem 0 2.5rem 0;
  display: flex; }
  @media (max-width: 768px) {
    header {
      padding: 0 2rem 0 2rem;
      margin-bottom: 0; } }
  header .logo {
    max-width: 280px;
    width: 100%;
    height: auto; }
    @media (max-width: 768px) {
      header .logo {
        max-width: 200px;
        margin-bottom: 2rem; } }
  header a {
    display: block;
    margin: auto; }

main {
  padding: 0; }

.language-toggle-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 0; }
  .language-toggle-wrapper .active {
    text-decoration: none; }

footer {
  background-color: #7a3026;
  color: #fff3e0;
  padding: 4rem 0; }
  footer a {
    color: #fff3e0;
    text-decoration: none; }
    footer a:hover {
      color: #000000; }

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px; }

.footer-info h3 {
  margin: 0 0 0.5rem; }

.footer-info address {
  font-style: normal;
  line-height: 1.6; }

.social-media .social-icon {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease; }
  .social-media .social-icon:hover {
    transform: scale(1.1); }

.responsive-image {
  max-width: 100%;
  height: auto; }
