/* Wide Screens */
@media (min-width: 699px) {
  body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #ffdab3;
    font-size: large;
  }

  header {
    display: flex;
    flex-wrap:wrap;
    flex-direction: row;
    background-color: #B7410E;
    padding: 20px;
  }

  h1 {
    display: flex;
    align-items: center;
    font-size: 3rem;
    padding: 20px;
    color: beige;
    margin: auto;
    text-align: center;
  }


  nav {
    display: flex;
    align-items: center;
  }

  nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex: 1;
    width: 100%;
  }

  nav ul li {
    flex: 1;
    text-align: center;
  }

  nav ul li:not(:last-child) {
    margin-right: 10px;
  }

  nav ul li a {
    display: block;
    padding: 10px;
    background-color: brown;
    color: #944e1b;
    font-size: 18px;
    text-decoration: none;
    border: 3px solid beige;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
  }

  h2 {
    color: #944e1b;
    font-size: 30px;
  }

  .container {
    display: flex;
    flex-direction: column;
  }

  main {
    display: flex;
    flex-direction: row;
    border: 5px;
    background-color: #efd4c9;
  }

  section {
    display: flex;
    flex-direction: column;
    background-color: #efd4c9;
    flex-grow: 1;
    padding: 10px;
  }

  aside {
    display: flex;
    flex-direction: column;
    background-color: #efd4c9;
    flex-grow: 1;
    padding: 15px;
  }

  .images {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .images img {
    max-width: 100%;
    height: auto;
  }

  .images2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  footer {
    align-content: center;
    background-color: #eee5e1f0;
    text-align: center;
    padding: 20px;
    bottom: 0;
  }

  .activity {
    display: flex;
    flex-direction: row;
    background-color: #efd4c9;
    justify-content: center;
    align-content: center;

  }

  .frame {
    display: flex;
    flex-direction: column;
    border: 5px solid brown;
    padding: 10px;
  }

  .schedules {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    background-color: #efd4c9;
  }

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

.btn-line {
  width: 30px;
  height: 3px;
  background: beige;
  margin: 5px 0;
  display: block; 
}

.navbar {
  display: flex;
  background-color: #eab6a1;
  color: #fff;
  padding: 15px 0;
  width: 100%;
}

.navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  padding: 10px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.nav-menu {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-menu li {
  margin-right: 20px;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: rgb(235, 95, 1);
  text-decoration: none;
}

.exit-btn {
  display: none;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.modal-a {
  display: block;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 80%;
  backdrop-filter: blur(5px); /* Apply background blur */
}

.button {
  color: #dd9c0e;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.button:hover,
.button:focus {
  color: rgb(235, 95, 1);
  text-decoration: none;
}

.tipsbutton {
  color: #944e1b;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  border: 2px solid #dd9c0e;
  border-radius: 5px;
  text-align: center;
  margin: 20px auto;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.tipsbutton:hover {
  background-color: brown;
  color: #fff;
}
.hidden {
  display: none;
}
/* Narrow Screens */
@media (max-width: 700px) {
  body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #ffdab3;
    font-size: large;
  }

  header {
    background-color: #B7410E;
    padding: 20px;
    text-align: center;
  }

  h1 {
    font-size: 3rem;
    color: beige;
  }

  h2 {
    color: #944e1b;
  }

  nav ul {
    list-style-type: none;
    padding: 0;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  nav ul li a {
    display: block;
    padding: 10px;
    background-color: rgb(242, 220, 147);
    color: #944e1b;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid rgb(242, 220, 147);
    border-radius: 5px;
  }

  .container {
    max-width: 100%;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .activity {
    display: flex;
    flex-direction: column;
    background-color: #efd4c9;
    justify-content: center;
    align-content: center;
    flex-grow: 2;
  }

  section,
  aside {
    background-color: #efd4c9;
    padding: 10px;
    margin-bottom: 20px;
  }

  .images,
  .images2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
  }

  footer {
    background-color: #eee5e1f0;
    text-align: center;
    padding: 20px;
  }

  .frame {
    border: none
  }

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

  .schedules img {
    max-width: 100%;
    height: auto;
  }

  .activity img {
    max-width: 100%;
    height: auto;
  }

  .logo {
    margin-left: auto;
    margin-right:auto;
  }
  .navbar-header {
    justify-content: flex-end;
}

.hamburger {
    display: block;
}

.nav-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #efd4c9;
    width: 100%;
    text-align: right;
}

.nav-menu.show {
    display: flex;
}

.nav-menu li {
    display: block;
    margin: 10px 0;
}
.exit-btn {
  display: block;
  background-color: transparent;
  border: none;
  color: beige;
  font-size: 16px;
  cursor: pointer;
}
.hidden {
  display: none;
}
}
