/* Custom Fonts --------------------------*/
/* font: Poppins from google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font: Open Sans from google fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* General css classes for all webpages --------------------------*/
body 
{
  /* set the default font of the page to Poppins, with Open Sans of sans-serif as the alternative */
  font-family: "Poppins", "Open Sans", sans-serif;
  margin: 0;
  background-color: rgba(255, 249, 249, 1);
  color: rgba(14, 16, 19, 1);
}

/* for general use for all SakuraLand Webpages */
.no-margin-padding 
{
  margin: 0;
  padding: 0;
}

/* container to make the elements inside it center */
.container 
{
  margin-left: auto;
  margin-right: auto;
  width: 85vw;
}

/* Fade-in animation for all pages */
body 
{
  opacity: 1;
  animation-name: fade-in;
  animation-duration: 0.4s;
}

@keyframes fade-in 
{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Container becomes wider in mobile phone size */
@media screen and (max-width: 650px) 
{
  .container {
    width: 96vw;
  }
}

/* for consistent section title size and font */
.section-title 
{
  font-size: 3em;
  padding-top: 0.4em;
  padding-bottom: 0.2em;
  margin: 0;
}

/* Sakuraland */
.sakuraland-shadow 
{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Navbar --------------- */
.navbar 
{
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 1.3em;
  display: flex;
  padding: 1em 1em;
  align-items: center;
  z-index: 1000;
}

.spacer 
{
  height: 7em;
}

.navlist 
{
  display: flex;
  list-style-type: none;
  margin-right: auto;
}

.navlist li a 
{
  text-decoration: none;
  margin-right: 2.5em;
  color: rgba(0, 0, 0, 100);
}

.navlist li a:hover 
{
  color: rgba(242, 84, 119, 1);
}

.navbar button 
{
  background-color: rgba(242, 84, 119, 1);
  color: white;
  border: none;
  border-radius: 1em;
  padding: 1em 1em;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
}

.navbar button:hover 
{
  transform: scale(1.02);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo 
{
  width: 228.4px;
  height: 45.6px;
}

#hamburger-icon 
{
  color: rgba(0, 0, 0, 100);
  font-size: 2.4em;
  margin-left: auto;
  display: none;
}

#close-navbar 
{
  color: rgba(0, 0, 0, 100);
  font-size: 2.4em;
  margin-left: auto;
  display: none;
}

.overlay 
{
  margin-top: 7.2em;
  width: 100%;
  text-align: center;
  background-color: rgba(180, 180, 180, 0.8);
  padding: 2em;
  position: fixed;
  display: none;
  box-sizing: border-box;
  z-index: 1000;
}

.overlay-navlist li 
{
  padding: 0.7em 1em;
  list-style-type: none;
}

.overlay-navlist li a 
{
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}

.overlay-navlist li:hover 
{
  background-color: rgba(255, 255, 255, 0.5);
}

.overlay-navlist li:hover a 
{
  color: rgba(242, 84, 119, 1);
}

.dropdown-content 
{
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow: hidden;
}

.dropdown-content a 
{
  color: rgba(0, 0, 0, 100);
  padding: 0.7em 1em;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover 
{
  background-color: rgba(240, 240, 240, 1);
  width: 100%;
}

.dropdown-attraction:hover .dropdown-content 
{
  display: block;
}

#down_icon 
{
  display: none;
}

.dropdown-content-mobile 
{
  display: none;
}

.dropdown-content-mobile a 
{
  color: rgba(255, 255, 255, 1);
  padding: 0.7em 1em;
  text-decoration: none;
  display: block;
}

.dropdown-content-mobile a:hover 
{
  color: rgba(242, 84, 119, 1);
  background-color: rgba(255, 255, 255, 0.5);
}

/* Navbar for mobile phone size */
@media screen and (max-width: 650px) 
{
  .navlist 
  {
    display: none;
  }

  #hamburger-icon 
  {
    display: block;
  }

  .navbar button 
  {
    display: none;
  }
}

/* Home: banner */
.main-banner-container 
{
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Ensure the images don't overflow their container */
}

/* Main banner of the webpage with 16:4 aspect ratio */
.main-banner 
{
  width: 100%;
  aspect-ratio: 16 / 4;
  background-size: cover;
  background-position: center;
  animation: slideShow 12s infinite; /* Display different images and keeps looping infinitely */
}

/* Static version of the main banner */
.main-static-banner 
{
  width: 100%;
  aspect-ratio: 16 / 4;
  object-fit: cover;
  display: block;
}

/* Main banner header: Gradient from bottom to top (white to transparent) */
.gradient-to-top 
{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(255, 249, 249, 1)
  );
}

.main-banner-header 
{
  display: flex;
  position: absolute;
  left: 5%;
  bottom: 10px;
  z-index: 1;
}

/* change themepark logo size */
.main-banner-logo 
{
  width: 8em;
}

.main-banner-name-tagline 
{
  color: rgba(242, 84, 119, 1);
  text-shadow: 0px 0px 30px rgba(255, 255, 255, 1);
}

.main-banner-name 
{
  font-weight: 600;
  font-size: 4em;
  margin: 0;
}

.main-banner-tagline 
{
  font-weight: 400;
  font-size: 2em;
  margin: -0.4em 0 0 0;
}

/* Change the background images and loop it forever */
@keyframes slideShow 
{
  0% {
    background-image: url("assets/images/banner/main_banner/sakura_castle_cropped.jpg");
  }
  33% {
    background-image: url("assets/images/banner/main_banner/roller_coaster_cropped.jpg");
  }
  66% {
    background-image: url("assets/images/banner/main_banner/happy_family_cropped.jpg");
  }
  100% {
    background-image: url("assets/images/banner/main_banner/sakura_castle_cropped.jpg");
  }
}

/* Main banner section for mobile phone size */
@media screen and (max-width: 650px) 
{
  .main-banner 
  {
    aspect-ratio: 16 / 7;
  }

  .gradient-to-top 
  {
    height: 160%;
    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(255, 249, 249, 1)
    );
  }

  .main-banner-header 
  {
    bottom: 0px;
  }

  .main-banner-logo 
  {
    width: 4em;
  }

  .main-banner-name 
  {
    font-size: 2em;
  }

  .main-banner-tagline 
  {
    font-size: 1em;
  }
}

/* Home: What's new - mini banner */
/* to wrap all mini banners */
.mini-banners 
{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

/* individual mini banner container */
.mini-banner 
{
  position: relative;
  width: 26%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
}

/* individual mini banner image */
.mini-banner-img 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

/* overlay effect */
.pink-overlay-and-text
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(247, 204, 204, 0.8);
	display: flex;
  opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border-radius: 18px;
  justify-content: center;
  align-items: center;
}

/* Text in the overlay */
.pink-overlay-and-text h1
{
  color: rgba(255, 249, 249, 1);
  font-size: 1.5em;
}

.mini-banner 
{
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

/* What's new section animation */
/* scale mini banner image div when mouse hover */
.mini-banner:hover 
{
  transform: scale(1.1);
}

/* reveal the overlay effect when hover */
.pink-overlay-and-text:hover
{
  opacity: 1;
}

/* shadow effect on hover */
.mini-banner:hover 
{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Disable hover effects for mobile devices */
@media (hover: none) 
{
  .mini-banner:hover 
  {
    transform: none;
  }

  /* Disable transitions */
  .mini-banner 
  {
    transition: none;
  }
}

/* What's new section for mobile phone size */
@media screen and (max-width: 650px) 
{
  .mini-banner 
  {
    width: 90%;
  }

  .mini-banners 
  {
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
  }

  .mini-banner-img 
  {
    margin-bottom: 2.4em;
  }
}

/*Gallery*/
/* The foundation to contain flexbox */
.gallery-container
{
  width: 1100px;
  height: 600px;
  padding: 1em;
  display: flex;
  gap: 1em;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Seperated flexbox into two parts, left and right */
.col-left
{
  flex: 2;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  gap: 1em;
}

.col-right
{
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  gap: 1em
}

/* The "bento" is used to style all of the row */
.bento 
{
  flex: 1;
  border-radius: 30px;
  transition: transform 0.3s ease-in-out;
}

/* This is used as the first row is targeted, and making sure there is space */
.placeholder1
{
  display: flex;
  border: none;
  gap: 1em;
}

/* This is use to divide the first row into two flexboxes */
.bento-col
{
  flex: 1;
  border-radius: 30px;
  transition: transform 0.3s ease-in-out;
}

/* This is to contain the image to the flexbox */
.bento img
{
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

/* Animation */
.bento-col:hover
{
  transform: scale(1.05);
}

.placeholder2:hover, .placeholder3:hover, .placeholder4:hover, .placeholder5:hover
{
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out;
}

/*Media Responsiveness Gallery*/
@media screen and (max-width: 1200px)
{
  .gallery-container
  {
    display: flex;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    flex-direction: column;
  }

  .col-left, .col-right
  {
    width: 100%;
  }

  .col-left
  {
    flex: 2;
    width: 100%;
    order: 2;
  }

  .col-right
  {
    flex: 1;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    order: 1;
  }

  .bento
  {
    flex: 1;
    height: auto;
    transition: none;
  }

  .bento-col
  {
    flex: 1;
    height: auto;
    transition: none;
  }
}

/* To make sure it does not hover in mobile device */
@media (hover: none) 
{
  .bento-col:hover
  {
    transform: none;
  }

  /*Disabling the transitions*/
  .placeholder2:hover, .placeholder3:hover, .placeholder4:hover, .placeholder5:hover
  {
    transform: none;
    transition: none;
    width: 100%;
  }
}

/* Things-to-do */
/* This is the foundation (wrap and contain) to create flexboxes */
.things-container
{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* The container to add the icons (item) */
.item-container 
{
  width: 40%;
  height: 700px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}

/* This is where I made some flexbox for the icons choices */
.item 
{
  position: relative;
  width: 200px;
  height: 200px;
  background-color: antiquewhite;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

/* This is to put the image to the flexbox */
.item img 
{
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* This contain the word of each item flexbox */
.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;  
  background: rgba(247, 204, 204, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out ;
}

/* This is to contain the map */
.map-box
{
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
}

/* Picture to the flexbox map */
.map-box img 
{
  width: 100%; 
  height: 100%;
  border-radius: 30px;
}

/* This is to add transitions to the map */
section aside img
{
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* The color for the word from content */
.content h1 
{
  color: white;
}

/* Animation for hovering */
.item:hover .content 
{
    opacity: 1; 
}

.item:hover
{
  transform: scale(1.1);
}

.item img:hover
{
  transform: scale(1.1);
}

section aside img:hover
{
    transform: scale(1.02);
}

/* Responsiveness */
@media screen and (max-width: 1200px)
{
  .things-container 
  {
    width: 100%; 
    height: auto;
    display: flex;
    flex-direction: column; 
    align-items: center;  
    justify-content: space-evenly;
  }

  .map-box 
  {
    max-width: 100%; 
    order: 1;  
    margin-left: 30px;
  }

  .item-container 
  {
    width: 100%; 
    height: 50%; 
    display: flex;
    flex-wrap: wrap;  
    flex-direction: row;
    justify-content: space-evenly;
    gap: 10px;
    order: 2;
    padding: 1em 0;
}

  .item 
  {
    position: relative;
    width: 80px; 
    height: 80px;
    top: 20px;
    border-radius: 20px;
    transition: none;
  }

  .content h1
  {
    font-size: small;
  }

  .content
  {
    opacity:0;
    transition: none;
    border-radius: 20px;
  }

  .item:hover 
  {
    transform: none;
    box-shadow: none;
  }

  .item img
  {
    transition: none;
    width: 100%;
    border-radius: 20px;
  }
}

/* Home: Information bubbles */
.info-section 
{
  background-color: rgba(254, 248, 236, 1);
  display: flex;
  flex-direction: row;
  padding-bottom: 2em;
}

/* wraps info left and right */
.info-wrapper 
{
  display: flex;
}

/* divide left and right part of info section into 70-30 */
.info-left 
{
  width: 70%;
}

.info-right 
{
  width: 30%;
}

/* add gap between individual information bubble */
.info-left-bubble 
{
  margin-top: 1em;
  margin-bottom: 1em;
}

/* information section aside (google maps embedding) */
section aside iframe 
{
  box-sizing: border-box;
  padding: 2.5% 10% 5% 10%;
  width: 100%;
  height: 100%;
}

/* the container to wrap the date */
.info-date 
{
  color: rgba(254, 240, 238, 1);
  width: 10em;
  background-color: rgba(244, 86, 131, 1);
  padding-left: 1em;
  padding-top: 0.5em;
  border-radius: 1em 1.8em 0em 0em;
}

.info-date h3,
p 
{
  margin: 0;
}

/* information section padding bottom */
.info-pb 
{
  padding-bottom: 1.1em;
}

.info-content 
{
  padding: 1.1em;
  margin-bottom: 1.3em;
  border: 0.3em solid rgba(230, 94, 130, 1);;
  border-radius: 0px 40px 20px 40px;
  background-color: rgba(255, 229, 242, 0.4);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Icons for information section */
.info-content i 
{
  color: rgba(254, 132, 130, 1);
  margin-right: 0.5em;
  margin-left: 0.2em;
  margin-top: 0.2em; /* Icons will stay at the top left regardless of how long the information paragraph is */
}

.info-icon-text 
{
  display: flex;
  align-items: flex-start;
}

.info-content p 
{
  font-size: 1em;
}

/* button styling in information section */
.info-button 
{
  width: 100%;
  margin-left: 5em;
  text-decoration: none;
  font-weight: 600;
  background-color: rgba(242, 84, 119, 1);
  border-radius: 8px;
  border-style: none;
  box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-size: 100%;
  padding: 10px 21px;
  text-align: center;
  transition:
    color 0.13s ease-in-out,
    background 0.13s ease-in-out,
    opacity 0.13s ease-in-out,
    box-shadow 0.13s ease-in-out;
}

.info-button:active 
{
  background-color: rgba(255, 167, 166, 1);
}

.info-button:hover 
{
  background-color: rgba(255, 167, 166, 1);
}

/* Information section animations */
.info-date-content,
section aside iframe 
{
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

/* scale by 1.02 when mouse hover */
.info-date-content:hover,
section aside iframe:hover 
{
  transform: scale(1.02);
}

/* shadow effect on hover */
.info-content:hover 
{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Disable hover effects for mobile devices */
@media (hover: none) 
{
  .info-date-content:hover,
  section aside iframe:hover,
  .info-button:hover,
  .info-content:hover 
  {
    transform: none;
    box-shadow: none;
  }

  /* Disable transitions */
  .info-date-content,
  section aside iframe,
  .info-button,
  .info-content 
  {
    transition: none;
  }
}

/* Information section for mobile phone size */
@media screen and (max-width: 650px) 
{
  .info-left 
  {
    width: 100%;
  }

  .info-right 
  {
    width: 100%;
    height: 20em;
  }

  .info-wrapper 
  {
    flex-direction: column;
  }

  section aside iframe 
  {
    padding: 0 4vw 4vw 4vw;
  }
}

/* Home: Frequently Asked Question section */
details 
{
  margin-bottom: 1.5em;
}

summary 
{
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
}

.faq-section 
{
  background-color: rgba(245, 231, 203, 1);
}

summary, details[open] summary 
{
  background-color: rgba(244, 86, 131, 1);
  border: rgba(203, 0, 45, 1) solid;
  color: rgba(254, 240, 238, 1);
  font-weight: 600;
  font-size: larger;
  border-radius: 20px;
}

section div details 
{
  width: 40%;
  border-radius: 20px;
  height: 0px;
  margin-bottom: 80px;
  color: rgba(245, 231, 203, 1);
  transition: 
    height 0.2s ease-in-out, 
    margin-bottom 0.3s ease-in-out, 
    color 0.3s ease-in-out;
}

section div details[open] 
{
  background-color: rgba(254, 240, 238, 1);
  height: 150px;
  margin-bottom: 40px;
  color: rgba(14, 16, 19, 1);
  transition: 
    height 0.2s ease-in-out, 
    margin-bottom 0.3s ease-in-out, 
    color 0.3s ease-in-out;
}

.faq-dropdowns 
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.faq-answer 
{
  padding: 16px;
  border-radius: 5px;
  border-top: none;
}

details div p a
{
  color: rgba(236, 39, 95, 1);
}

/* Footer */
#footer-section
{
  font-family: Poppins;
  position: relative;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.index::before
{
  background-color: rgba(245, 231, 203, 1);
}

#footer-section::before 
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  z-index: -1;
}

#footer-section::after 
{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: rgba(106, 133, 90, 1);
  z-index: -1;
}

#footer-container 
{
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  background-color: rgba(252, 221, 227, 1);
  padding: 2rem 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.41);
}

#email
{
  display: flex;
}

#footer-container input 
{
  padding: 1rem;
  border: none;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  width: 300px;
  outline: none;
  background-color: white;
}

#footer-container button 
{
  padding: 1rem;
  border: none;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  outline: none;
  background-color: rgba(222, 237, 254, 1);
  font-weight: 600;
}

#subscribetxt
{
  font-weight: 600;
  font-size: 1.2rem;
  margin-right: 2rem;
}

#footer-container input 
{
  margin-right: 0.8rem;
}

#footer-container2 
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: rgba(241, 241, 241, 1);
  gap: 6rem;
  justify-content: center;
}

#footer-container2-1 img.footer-logo 
{
  width: 150px;
  height: 150px;
}

#footer-section h1
{
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: rgba(223, 231, 218, 1);
  font-weight: bold;
}

#footer-section h2
{
  margin-bottom: 0rem;
  font-size: 1.4rem;
  margin-top: 2rem;
  color: rgba(223, 231, 218, 1);
  font-weight: bold;
  text-decoration: underline;
}

.terms
{
  padding-top: 0.3rem;
}

.tnc
{
  padding-top: 0.3rem;
  display: none;
}

#footer-container2-2 
{
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}

#footer-container2-2-logo 
{
  display: flex;
  gap: 0.5rem;
}

.footer-logo
{
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.footer-logo a
{
  fill: rgba(241, 241, 241, 1);
}

#footer-container2-3 
{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer-container2-3 a
{
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: rgba(241, 241, 241, 1);
}

#footer-container2-4 
{
  display: flex;
  flex-direction: column;
  align-items: center;
}

table 
{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(67, 85, 58, 1);
  font-family: Arial, sans-serif;
}

caption 
{
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

th 
{
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(67, 85, 58, 1);
  padding: 8px;
  color: rgba(241, 241, 241, 1);
}

td 
{
  border: 1px solid rgba(67, 85, 58, 1);
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: rgba(241, 241, 241, 1);
  text-align: center;
}

tr 
{
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(241, 241, 241, 1);
}

#footer-container3
{
  background-color: rgba(67, 85, 58, 1);
  color: rgba(212, 222, 206, 1);
  font-weight: bold;
  display: flex;
  padding: 1rem;
  justify-content: space-between;
}

#footer-container3 h4
{
  margin: 0rem;
}

/* Footer for mobile phone size */
@media screen and (max-width: 650px) 
{
  #footer-section::before 
  {
    height: 17.5%;
  }

  #footer-section::after 
  {
    height: 82.5%;
  }

  #footer-container
  {
    flex-direction: column;
    gap: 1rem;
  }

  #footer-container input
  {
    width: 150px;
  }

  #subscribetxt
  {
    margin: 0;
  }

  #footer-container2-1
  {
    display: none;
  }

  #footer-container2
  {
    gap: 2rem;
  }

  .terms
  {
    display: none;
  }

  .tnc
  {
    display: flex;
  }
}

/* Faq section for mobile phone size */
@media screen and (max-width: 650px) 
{
  .faq-dropdowns 
  {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section div details 
  {
    width: 100%;
  }
}

/*Tickets: Tickets BG*/
.buytix-cont 
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: 10px;
  /* flex-wrap: wrap; */
  /* overflow-x: hidden; */
}

.background-color 
{
  width: 400px;
  height: 550px;
  border: 0.3em solid rgba(244, 86, 131, 1);
  margin-top: 3em;
  margin-bottom: 3em;
  margin-left: 3em;
  margin-right: 3em;
  position: relative;
  border-radius:16px ;
  transition: 0.3s ease-in-out;
}

.background-color:hover
{
  transform: scale(1.05);
  background-color: rgba(239, 156, 180, 0.8);
  transition: 0.3s ease-in-out;
}

.buytix-img 
{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-top-left-radius:11.5px ;
  border-top-right-radius:11.5px ;
  border-bottom-right-radius: 7.5px ;
  border-bottom-left-radius: 7.5px ;
}

form
{
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
}

form div
{
  background-color: rgba(254, 148, 165);
  padding: 1em;
  border-radius: 1em;
  align-items: center;
  color: rgba(255, 252, 252);
  font-weight: 600;
  justify-content: center;
}

form select, form input {
  /* background-color: rgba(254, 148, 165,0.5); */
  font-family: 'Poppins', sans-serif;
  border-radius: 0.5em;
  border: 0.1em solid;
}

form button 
{
  background-color: rgba(242, 84, 119, 1);
  color: white;
  border: none;
  border-radius: 1em;
  padding: 1em 1em;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
}

form button:hover 
{
  transform: scale(1.02);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.buytix-title 
{
  font-size: 1.3em;
  text-align: center;
  margin-top: -0.5em;
  padding:0.9375em 2em;
}

.buytix-desc 
{
  font-size: 1em;
  text-align: center;
  margin-top: -2.5em;
  padding: 0.9375em 2em;
}

/* ticket packages' cards Responsiveness */
@media screen and (max-width: 650px)
{
  .buytix-cont 
  {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .background-color
  {
    width: 100%;
    height: auto;
    margin-left: 0%;
    margin-right: 10%;
    /* overflow-x: auto; */
  }

  .buytix-img
  {
    width: 80vw;
  }
}

/* Partners */
.partner-logo 
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: 0.625em;
  margin-right: 0.625em;
}

.partner-logo-img 
{
  width: 200px;
  height: 200px;
  border-radius: 18px;
}

/* attractions webpage */
.container-attractions 
{
  display: flex;
}

/* side bar  */
.sidebar 
{
  position: sticky;
  margin-top: 100px;
  top: 130px;
  align-self: flex-start;
  background-color: rgba(255, 192, 203, 1); 
  border: 2px solid rgba(242, 84, 119, 1);
  border-radius: 10px; 
  padding: 10px; 
  width: 200px; 
  margin-left: 80px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.header-attractions 
{
  margin: 30px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}

.header-attractions a {
  color: rgba(242, 84, 119, 1); 
  text-decoration: none; 
}

.header-attractions :hover {
  color: white;            
  text-decoration: none;   
}

/* container for attraction gallery */
.content-attractions 
{
  margin-bottom: 50px;
  flex: 3;
  padding-left: 30px;
  padding-top: 80px;
  font-size: 30px;
  overflow-x: hidden;
}

.attraction-header
{
  margin-bottom: 10px;
  scroll-margin-top: 120px;
}

/* attraction gallery */
.attraction-gallery
{
  display: flex;
  gap: 20px; 
  overflow-x: auto;
  padding: 10px;
}

/* attraction card */
.attraction-card
{
  background-color: white;
  position: relative;
  width: 400px; 
  height: 350px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #ccc; 
  border-radius: 10px; 
  padding: 10px; 
}

.attraction-card:hover
{
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.attraction-card img
{
  width: 400px; 
  height: 200px; 
  object-fit: cover; 
}

.attraction-name 
{
  position: absolute;
  top: 187px; 
  left: 2%;
  font-weight: bold;
  font-size: 25px;
  color: rgba(242, 84, 119, 1);
}

.attraction-description
{
  color: grey;
  position: absolute;
  top: 250px; 
  left: 2%;
  right: 2%;
  font-size: 14px; 
}

/* Responsiveness */
@media screen and (max-width:650px)
{
  .sidebar 
  {
    display: none; 
  }
  .content-attractions
  {
    margin-top: -100px;
  }
  .attraction-gallery 
  {
    display: block;
    overflow-x: hidden; 
  }

  .attraction-card:hover 
  {
    transform: none;
  }

  .attraction-card
  {
    width: 90%;
    margin-top: 10px; 
    transition: none;
  }

  .attraction-card img
  {
    width: 100%;
    height: 200px;
  }
}

