@font-face {
    font-family: 'Futura';
    src: local('Futura Regular'), local('Futura-Regular'),
        url('../fonts/FuturaLT-Heavy.woff2') format('woff2'),
        url('../fonts/FuturaLT-Heavy.woff') format('woff'),
        url('../fonts/FuturaLT-Heavy.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Futura';
    src: local('Futura Bold'), local('Futura-Bold'),
        url('../fonts/FuturaLT-Bold.woff2') format('woff2'),
        url('../fonts/FuturaLT-Bold.woff') format('woff'),
        url('../fonts/FuturaLT-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
  }

  @keyframes moveUpDown {
    0%, 100% {
        transform: translateX(0); 
    }
    50% {
        transform: translateX(-10px); 
    }
}


html{
    scroll-behavior: smooth;
}

body {
    font-family: Futura, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #F7F3ED;
}

h1{
  text-align: center;
  margin-top: 10px;
  color: #056147;
  font-size: 30px;
  @media screen and (min-width: 900px) {
    font-size: 40px;
  }
  @media screen and (min-width: 1300px) {
    font-size: 50px;
  }
}

h2{
  margin-bottom: 20px;
}

p{
  font-size: 16px;
  @media screen and (min-width: 1024px) {
      font-size: 18px;

  }
}

a {
    text-decoration: none;
    color: inherit;
}

p{
    color: #1e1e1e;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #F7F3ED;
    z-index: 99;
}

.logo img {
    height: 40px;
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    font-size: 1rem;
    color: #1e1e1e;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #FC6C20; /* Highlight color on hover */
}

/* Hamburger Menu - Hidden by Default */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Checkbox Hidden */
.nav-toggle {
    display: none;
}

/* Mobile Navigation */
@media screen and (max-width: 750px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
        gap: 30px;
    }

    .nav a {
        font-size: 2rem;
        color: #F7F3ED;
    }

    /* Show Navigation When Checkbox is Checked */
    .nav-toggle:checked ~ .nav {
        transform: translateX(0);
    }

    /* Hamburger Animation */
    .nav-toggle:checked + .hamburger span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
        background-color: #F7F3ED;
    }

    .nav-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
        background-color: #F7F3ED;
    }
}

.container-arrows{
    position: absolute;
    display: inline-block;
    bottom: 20px;
    rotate: 90deg;
    font-size: 100px;
    color: #FC6C20;
    text-decoration: none;
    animation: moveUpDown 2s infinite; /* 1 second duration, loops infinitely */
}

/* FOOTER STYLES */
.footer {
  background-color: #1e1e1e; /* Dark background */
  color: #ddd; /* White text */
  padding: 40px;
  width: 100%;
  @media screen and (min-width: 750px) {
    padding: 60px 40px 40px 40px;
  }
}

.footer-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  @media screen and (min-width: 750px) {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-section-middle{
  display: flex;
  @media screen and (min-width: 750px) {
    justify-content: center;
  }
}

.footer-section-right{
  display: flex;
  @media screen and (min-width: 750px) {
    justify-content: flex-end;
  }
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  @media screen and (min-width: 750px) {
    margin-bottom: 0;
  }
}

.footer-title {
  color: #7a7a7a; /* Light gray */
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-link {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #FC6C20;
}

.footer-adress{
  color: #ddd;
}

.footer-button {
  display: inline-block;
  background-color: #ddd;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s, color 0.3s;
}

.footer-button:hover {
  background-color: #FC6C20;
  color: #fff;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  padding-bottom: 0;
  margin-top: 30px;
  @media screen and (min-width: 750px) {
    margin-top: 60px;
  }
}

.footer-bottom p{
  font-size: 12px;
  color: #7a7a7a;
}

.footer-bottom .footer-link {
  color: #bbb;
}

.footer-bottom .footer-link:hover {
  color: #fff;
}