@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  margin: 0;
  font-family: "Open Sans";
  /* overflow-x: hidden; */
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-family: "Noto Serif";
  color: #f8a720;
  font-size: 60px;
}

h2 {
  font-size: 40px;
  font-family: "Noto Serif";
  color: #f8a720;
}

h3 {
  font-size: 32px;
  font-family: "Open Sans";
  color: #f8a720;
}

h4 {
  font-size: 20px;
  color: #642714;
  font-family: "Open Sans";
  font-weight: bolder;
}

p {
  font-size: 20px;
  color: #642714;
  font-family: "Open Sans";
}

.title {
  text-align: center;
}

.titles {
  margin: 0;
}

.backgroundyellow {
  background-color: #f8a720;
}

.backgroundbeige {
  background-color: #fde2cf;
}

/*extend*/
.general-extend {
  background-color: #f8a720;
  box-sizing: border-box;
}

.yellow-extend {
  background-color: #f8a720;
  box-sizing: border-box;
  padding: 50px;
}

.img-extend {
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  background-position: center;
  padding: 50px;
}

.beige-extend {
  background-color: #fde2cf;
  box-sizing: border-box;
  padding: 50px;
}

.extend {
  padding: 50px;
  box-sizing: border-box;
}

.extend-sm {
  padding: 16px 24px;
  box-sizing: border-box;
}

.orange-extend {
  background-color: #ed6325;
  box-sizing: border-box;
  padding: 50px;
}


/*Menu Bar*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  background-color: #f8a720;
  max-width: 1440px;
  margin: auto;
}

.header a {
  font-size: 16px;
}

.header-logo a {
  line-height: 0;
  display: inline-block;
}

.mobile-logo,
.menu-toggle {
  display: none;
}

.menu {
  display: flex;
}

.header a:hover {
  color: #ed6325;
}

a {
  font-weight: bolder;
  color: #642714;
  text-decoration: none;
  padding: 10px 20px;
}

.indicator {
  display: flex;
  align-items: center;
  padding-right: 20px;
}

.indicator a {
  padding: 10px;
}

.title-color a {
  /*color: #ED6325;*/
  background-color: #fde2cf;
  border-radius: 12px;
}

/*Submenu*/
.submenu {
  display: none;
  position: absolute;
  z-index: 1;
}

.submenu a {
  display: flex;
  flex-wrap: wrap;
  color: #fde2cf;
  font-size: 14px;
}

.submenu a:hover {
  color: #642714;
}

.menu-item:hover .submenu {
  display: block;
  background-color: #ed6325;
  margin-top: 10px;
}

.nested-submenu {
  display: none;
  position: absolute;
  z-index: 2;
  background-color: #ed6325;
  top: 0;
  left: 100%;
  margin-left: 2px;
  width: 100%;
}

.submenu-item:hover .nested-submenu {
  display: block;
}

/*CTA*/
.see-more-days {
  display: flex;
  justify-content: space-between;
}

.see-more a,
.see-more-days a {
  color: #565656;
  font-weight: bolder;
  text-decoration: underline;
}

.see-more a:hover {
  color: #2d2d2d;
}

.see-more-button-yellow {
  background-color: #f8a720;
  border-radius: 12px;
  font-weight: bolder;
  text-decoration: none;
  padding: 15px 35px;
}

.see-more-button-beige {
  background-color: #fde2cf;
  border-radius: 12px;
  font-weight: bolder;
  text-decoration: none;
  padding: 15px 35px;
}

.see-more-button-yellow:hover {
  background-color: #ed6325;
  color: #fde2cf;
}

.see-more-button-yellow a:hover {
  color: #fde2cf;
}

.see-more-button-orange {
  background-color: #ed6325;
  border-radius: 12px;
  font-weight: bolder;
  text-decoration: none;
  padding: 15px 35px;
}

.see-more-button-orange:hover,
.see-more-button-beige:hover {
  background-color: #fde2cf;
  color: #ed6325;
}

.see-more-button-orange a:hover,
.see-more-button-beige a:hover {
  color: #ed6325;
}

/*deco*/

.deco-box {
  width: 70%;
  margin: 0 0 0 50px;
  border-radius: 12px;
  border-bottom: 3px solid #642714;
  border-right: 3px solid #642714;
}

.deco-box p {
  padding: 50px;
}

/*address*/
.address {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* .address h4 {
    padding: 0 20px;
}*/

.address-info p {
  margin-top: 0;
  padding: 0;
}

.adrs-mb {
  display: none;
}

/*hero section(guided tours-days)*/
.hero {
  margin: auto;
  max-width: 1440px;
}


.hero-text {
  padding: 150px 0;
}

.hero-text-right {
  padding: 150px 0;
  text-align: end;
}

.hero-text h1,
.hero-text-right h1 {
  margin: 0 !important;
  /* padding: 10px 50px; */
}

.hero-text h3,
.hero-text p,
.hero-text-right h3,
.hero-text-right p {
  margin: 0 !important;
  /* padding: 10px 50px; */
  color: #fde2cf;
}

.hero-text h4,
.hero-text-right h4 {
  margin: 0 !important;
  /* padding: 10px 50px; */
  color: #fde2cf;
  font-weight: normal;
}

.scroll-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 50px;
}

.scroll-cta h4 {
  color: #f8a720;
  font-weight: bolder;
}

/*text for guided tours(days)*/
.day-text {
  /* margin: 50px !important; */
  width: 70%;
}

/* .day-text h2,
.day-text p {
    padding: 0;
} */

/* .day-text-right p {
    margin: 0;
    padding-left: 0;
} */

.day-text-right {
  width: 70%;
}

/* .day-text-right h2 {
    margin: 0;
    padding-left: 0;
} */

.slogan {
  text-align: center;
}

/*Info for restaurants*/
.place-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.info-yellow-box {
  background-color: #f8a720;
  border-radius: 12px;
  border-right: 3px solid #642714;
  border-bottom: 3px solid #642714;
  width: 45%;
  text-align: center;
  gap: 20px;
}

.info-beige-box {
  background-color: #fde2cf;
  border-radius: 12px;
  border-right: 3px solid #642714;
  border-bottom: 3px solid #642714;
  width: 45%;
  text-align: center;
  /* margin: 50px 30px 30px 0; */
  gap: 20px;
}

/* .place-info div:last-child {
    margin-right: 0;
} */

.info-img {
  margin: 20px 0;
}

.info-yellow-box h4,
.info-beige-box h4 {
  margin: 0;
  padding: 10px 10px 20px 10px;
}

.info-bgebox-mobile,
.info-ylwbox-mobile {
  display: none;
}

.info-bgebox-mobile h4,
.info-ylwbox-mobile h4 {
  padding: 10px;
}

/*Guided Tours-Days*/
.flex-content {
  display: flex;
  align-items: center;
}

.flex-content-right {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.flex-content-rect {
  display: flex;
  width: 60%;
}

.rect-text,
.rect-text-right {
  /* padding: 50px; */
  width: 60%;
}

.rectangleimg {
  display: flex;
  gap: 30px;
  width: 40%;
  /* margin: 0 50px 0 0; */
  align-items: flex-end;
}

.rectangleimg-mb {
  display: none;
}

.rectangleimg-right {
  display: flex;
  gap: 30px;
  /* margin: 0 0 0 50px; */
  align-items: flex-end;
}

.rectangleimg-right-mb {
  display: none;
}

.rectimg,
.rectimg-right {
  width: calc(50% - 15px);
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.rectimg img,
.rectimg-right img {
  width: 100%;
}

.half-round-png-right {
  display: flex;
  justify-content: flex-end;
}

.half-round-png,
.half-round-png-right {
  max-width: 100%;
}

.half-round-png img,
.half-round-png-right img {
  width: 100%;
}

.half-round-png-mb,
.half-round-png-right-mb {
  display: none;
}

.split-img {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.day1-img {
  max-width: 100%;
}

.day1-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.split-img .day1-img {
  margin: 0;
}

/*four images*/
.four-images {
  display: flex;
  /* margin: 150px 50px; */
  justify-content: center;
  max-width: 100%;
  gap: 50px;
  /* padding: 0 50px; */
}

/* .images4 h4 {
    padding: 0;
} */

.images4 p {
  color: #ababab;
}

.image img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/*back to top*/
.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 15px;
}

/*Footer*/
.mobile-footer-logo {
  display: none;
}

.footer {
  padding: 20px 0 0 0;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #F8A720;
}

.footer h3 {
  font-size: 24px;
}

.footer-logo {
  margin-top: 30px;
}

.footer-logo img {
  width: 130px;
  padding-bottom: 30px;
}

.footer-title {
  font-size: 32px;
  color: #642714;
  font-weight: bolder;
  font-family: 'Noto Serif';
  margin: 0 0 20px 50px !important;
  padding: 20px
}

.footer-links {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}

.footer a {
  font-size: 16px;
  font-weight: bolder;
  color: #642714;
}

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

.footer-column p {
  margin: 5px 0;
  font-size: 24px;
  color: #642714;
  font-weight: bolder;
}

.footer a:hover {
  color: #FDE2CF;
}

.footer-text {
  font-size: 14px;
  color: #642714;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  text-align: center;
  margin-top: 50px;
}


/*responsive*/
#responsive-mobile {
  display: none;
}

/*tablet footer的size要改*/
@media screen and (max-width: 1185px) {
  .scroll-cta {
    display: none;
  }

  /*hero*/
  .hero {
    min-height: 400px;
  }

  /* .hero-text,
    .hero-text-right {
        padding: 30px 0 0 0;
    } */

  /* .hero-text p,
    .hero-text-right p {
        padding-top: 0 !important;
    } */

  /*info-box*/
  /* .info-yellow-box {
        margin-left: 0 !important;
    } */

  /*four images*/
  /* .four-images {
        margin: 50px;
    } */

  /*half-round*/
  .half-round-png {
    width: 50%;
  }

  /*footer*/
  .footer {
    max-width: 100%;
  }

  .food-column a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1130px) {

  /*menu*/
  .menu-item a {
    font-size: 14px;
  }


}

@media screen and (max-width: 1040px) {

  /*menu*/
  .menu-toggle {
    display: block;
    z-index: 1000;
    font-size: 32px;
    color: #642714;
    font-weight: bolder;
    position: fixed;
    top: 40px;
    right: 40px;
    cursor: pointer;
  }

  .menu-item:hover .submenu {
    margin-top: 30px;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #fde2cf;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    justify-content: center;
    z-index: 999;
    overflow: hidden !important;
  }

  .menu-item {
    padding: 30px;
    display: flex;
    justify-content: center;
  }

  .menu.active {
    display: flex;
  }
}

@media screen and (max-width: 1000px) {
  .menu-item a {
    padding: 10px;
  }

  .indicator a {
    padding: 10px;
  }

  /*hero*/
  .hero {
    min-height: 300px;
  }

  .hero-text h3,
  .hero-text-right h3 {
    font-size: 20px;
  }

  .info-yellow-box {
    margin: 50px 0;
  }

  /*footer*/
  .footer-title {
    margin: 0 !important;
  }

  .footer-links {
    padding: 0 !important;
  }
}

@media screen and (max-width: 955px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  h4,
  p {
    font-size: 16px;
  }


  .adrs {
    display: none;
  }

  .adrs-mb {
    display: block;
  }

  /*hero*/
  .hero {
    min-height: 300px;
  }

  /*footer*/
  .footer-content h3 {
    font-size: 20px;
  }

  .footer-logo {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
  }

  .footer-logo img {
    width: 100%;
  }
}

@media screen and (max-width: 950px) {
  .four-images {
    flex-wrap: wrap;
  }

  .images4 {
    width: calc(50% - 25px);
  }

  .half-round-png-right {
    display: none;
  }

  .half-round-png-right-mb {
    display: block;
    width: 50%;
  }

  .half-round-png-right-mb img {
    width: 100%;
  }

  /*info-box*/
  .info-yellow-box,
  .info-beige-box {
    display: none;
  }

  .info-ylwbox-mobile,
  .info-bgebox-mobile {
    display: block;
    margin-top: 30px;
  }

  /*Info for guided tours*/
  .info-ylwbox-mobile {
    background-color: #f8a720;
    border-radius: 12px;
    border-right: 3px solid #642714;
    border-bottom: 3px solid #642714;
    width: 50%;
    text-align: center;
  }

  .info-bgebox-mobile {
    background-color: #fde2cf;
    border-radius: 12px;
    border-right: 3px solid #642714;
    border-bottom: 3px solid #642714;
    width: 50%;
    text-align: center;
  }

  .info-img-mb {
    margin: 10px;
  }

  /* .see-more-days {
        padding: 50px 10px !important;
    }

    .rect-text-right {
        padding-bottom: 0;
    } */
}

@media screen and (max-width: 850px) {

  .rect-text,
  .rect-text-right {
    width: 100%;
    /* width: calc(100% - 60px); */
    /* padding: 0 !important; */
  }

  .rectangleimg,
  .rectangleimg-right {
    display: none;
  }

  .rectangleimg-mb,
  .rectangleimg-right-mb {
    display: flex;
    justify-content: center;
    gap: 60px;
    /* padding: 0 30px; */
    width: 100%;
  }


  .rectimg-right-mb {
    border-radius: 12px;
    width: calc(50% - 30px);
  }

  .rectimg-mb {
    border-radius: 12px;
  }

  #responsive-desktop {
    display: none;
  }

  #responsive-mobile {
    display: block;
  }

  #responsive-mobile .imgs-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  #responsive-mobile .imgs-mobile img {
    width: 45%;
    gap: 20px;
    border-radius: 12px;
  }
}

@media screen and (max-width: 800px) {
  h4 {
    font-size: 16px;
  }

  /*hero*/
  .hero {
    height: 200px;
  }

  /* .hero-text,
  .hero-text-right {
    padding: 100px 0;
  } */

  /*texts*/
  .flex-content,
  .flex-content-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap !important;
  }

  .day-text,
  .day-text-right {
    width: 100%;
  }



  /*images*/
  /* .four-images {
        padding: 20px;
    } */

  /*Footer*/
  .footer {
    width: 100%;
    flex-wrap: wrap;
    padding: 30px 0;
  }

  .footer h3 {
    font-size: 20px;
  }

  .footer-logo {
    display: none;
  }

  .footer-title {
    display: none;
  }

  .mobile-footer-logo {
    display: block;
    display: flex;
    font-weight: bold;
    align-items: center;
    margin: 0 30px;
  }

  .footer-title-mobile {
    padding: 0 20px;
    margin: 0;
    color: #642714;
    font-family: "Noto Serif";
  }

  .footer-title-mobile h3 {
    font-size: 18px;
  }

  .footer-links {
    margin-top: 30px;
    padding-left: 10px;
  }

  .footer-links a {
    font-size: 14px;
    width: 100%;
  }

  .footer-text {
    font-size: 14px;
  }
}

/*mobile*/
@media screen and (max-width: 600px) {
  h1 {
    font-size: 30px;
    /* padding: 30px !important; */
  }

  h2,
  h3 {
    font-size: 20px;
    /* padding: 30px !important; */
  }

  h4 {
    font-size: 14px;
    /* padding: 30px; */
    font-weight: bolder;
  }

  p,
  .see-more a,
  .see-more-button-yellow,
  .see-more-button-beige,
  .see-more-button-orange {
    font-size: 14px;
  }

  .hero-text h3,
  .hero-text-right h3 {
    font-size: 14px;
  }

  .extend,
  .img-extend,
  .beige-extend,
  .yellow-extend,
  .orange-extend {
    padding: 20px;
  }

  /*Menu Bar*/
  .header {
    padding: 10px 20px;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
    margin-right: 30px;
  }

  .menu-toggle {
    font-size: 20px;
  }

  /*CTA*/
  .see-more-button,
  .see-more,
  .see-more-days {
    font-size: 14px;
  }

  /*flex content for guided tours*/
  .flex-content-right {
    display: flex;
    justify-content: space-between;
  }



  /*tours day text*/
  /* .day-text h2,
    .day-text-right h2 {
        padding: 0 0 30px 0 !important;
        margin: 0 !important;
    } */

  /* .day-text p,
    .day-text-right p {
        padding: 0 0 10px 0 !important;
    } */

  /* .day-text,
    .day-text-right {
        margin: 50px 30px 10px 30px !important;
    } */

  .rect-text {
    width: 100%;
  }

  .rect-text-right {
    width: 100%;
  }

  /* .text h2 {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .text p {
        margin: 0 !important;
        padding: 0 !important;
    } */

  /*4 images*/
  /* .four-images {
        margin: 50px 30px;
    } */

  /*address*/


  /* .address {
        margin-top: 30px !important;
    } */

  /* .address-info p {
        padding: 0 0 50px 0 !important;
    } */

  /* footer */
  .footer-links {
    justify-content: center !important;
    width: calc(100% - 50px);
  }
}

@media screen and (max-width: 500px) {

  /*hero*/
  .hero {
    height: 100px;
  }
}