@import url("https://fonts.googleapis.com/css2?family=The+Seasons:wght@400&display=swap");

* {
  user-select: none;
}

body {
  margin: 0;
  font-family: 'The Seasons', sans-serif;
}

a {
  text-decoration: none;
}

/***************** NAVBAR ****************/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 24px;
  color: #000;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
  flex-grow: 1;
  text-align: center;
  margin-left: 70px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

nav .sign-up {
  margin-left: 20px;
  background-color: #0044cc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

nav .sign-up:hover {
  background-color: #0033a0;
  transition: all 0.2s ease-in-out;
}

nav .arrow {
  margin-left: 5px;
  font-size: 12px;
}

.user-profile{
  cursor: pointer;
}

/************** DROPDOWN ****************/

nav .dropdown:hover .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 200px;
  z-index: 1000;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

.page-banner h1{
  font-size: 3.7rem;
  text-align: center;
  margin-top: 20px;
}


/***************** SLIDER *****************/
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.slider-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%; /* Circular buttons */
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  text-align: center;
  padding: 10px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.active {
  background-color: #717171;
}

/****************** Information ****************/

/* Paragraph Styles */

.about-content{
  margin: 0 50px;
  margin-bottom: 2rem; 
}

.information{
  padding: 0px 50px;
}

.information h2{
  margin-bottom: 1rem;
}

.container-info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px;
}

.container-info:nth-child(odd){
  background-color: #aaa6a6;
}

.container-info p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  text-align: left; /* Aligns text to the left for better readability */
  text-align: justify;
  max-width: 800px;
  margin-left: auto;
  /* margin-bottom: 2rem; */
  /* margin-right: auto; */
  margin: 10px 10px 0px 0px;
}

.content h2{
  text-align: center;
  margin-top: 10px;
  font-size: 2rem;
}

.content h3 {
  font-family: "The Seasons", serif;
  font-style: bold;
  font-size: 28px;
  /* margin-top: 30px; */
  color: #333;
  text-align: left;
  margin-left: 10px;
}

.content ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
}

.content ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.content ul li strong {
  color: #000;
}

.map {
  height: 600px;
}

/*************** FOOTER ****************/

.container {
  width: 80%;
  margin: 0 auto;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  font-family: "Montserrat", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.about-us,
.query-form {
  flex: 1;
}

.about-us h4,
.query-form h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-us p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.social-icons img {
  width: 35px;
  height: auto;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.query-form form {
  display: flex;
  flex-direction: column;
}

.query-form input,
.query-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  border: none;
}

.query-form input:focus,
.query-form textarea {
  outline: none;
}

.query-form button {
  background-color: #008cba;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.query-form button:hover {
  background-color: #005f6b;
  transform: scale(1.05);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001; /* Ensure it stays above the nav */
}

.menu-toggle span {
  background-color: #000;
  height: 3px;
  width: 100%;
  border-radius: 2px;
}

/********************** Media Query ***********************/

/* Default styles are for desktop */

@media screen and (max-width: 1200px) {
  nav ul {
    margin-left: 20px;
  }

  nav ul li {
    margin-left: 40px;
  }

  .sign-up {
    padding: 8px 15px;
  }

  /* content */

  .about-content {
    margin: 0 30px;
    font-size: 18px;
    margin: 0px 10px 20px;
    text-align: justify;
  }

  .information {
    padding: 0px 30px;
  }

  .container-info{
    padding: 10px;
  }

  .container-info p {
    font-size: 16px;
  }

  .content h3 {
    font-size: 26px;
    margin-left: 0px;
  }

  .content ul li {
    font-size: 15px;
  }
}

/* For tablets (landscape and portrait) */
@media screen and (max-width: 992px) {
  header {
    padding: 10px 15px;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: white;
    width: 100%;
    height: 100vh;
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
  }

  nav ul li {
    margin-left: 0;
    margin-bottom: 20px;
  }

  nav ul li a {
    font-size: 18px;
    padding: 10px;
    display: block;
    text-align: left;
  }

  nav .sign-up {
    margin-left: 0;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  nav ul.open {
    display: flex;
  }
}

/* For mobile devices */
@media screen and (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 10px 15px;
  }

  nav {
    /* width: 100%; */
    display: contents;
  }

  nav .dropdown-menu {
    left: 0;
    position: static;
    width: fit-content;
    display: none;
  }

  nav .dropdown:hover .dropdown-menu {
    position: static;
    height: auto;
    overflow-y: visible;
  }

  .menu-toggle {
    display: flex;
    height: 25px;
    cursor: pointer;
  }

  nav ul.open {
    display: flex;
  }

  nav .sign-up {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  /* Make sure nav is hidden by default and fully opens on toggle */
  nav ul {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    left: 0;
    width: 80%;
    background-color: white;
    height: auto;
    padding: 10px 20px;
    z-index: 1000;
    overflow-y: auto;
  }

  /* Ensure ul opens properly */
  nav ul.open {
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
  }

  /* Reduce space between items */
  nav ul li {
    width: 100%; /* Makes the items take up full width */
    margin-bottom: 15px; /* Add space between items */
    margin: 10px 0;
    flex-grow: 0;
  }

  nav ul li a {
    font-size: 16px;
    padding: 8px 20px; /* Adjust padding for better appearance */
    display: block;
    text-align: left;
    /* width: 100%; */
    font-size: 18px;
    padding: 15px 0;
    text-align: center;
  }

  /* Sign-up button styling */
  nav .sign-up {
    margin-top: 15px;
    padding: 10px;
    font-size: 16px;
    width: 50%;
    text-align: center;
    background-color: #0044cc;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
  }

  nav .sign-up:hover {
    background-color: #0033a0;
  }

  /* Content */

  .about-content {
    margin: 0 20px;
    font-size: 16px;
    margin: 0px 10px 20px;
    text-align: justify;
  }

  .information {
    padding: 0px 20px;
  }

  .container-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .container-info p {
    font-size: 15px;
    max-width: 100%;
    margin: 10px 0px 0px 0px;
  }

  .content h2 {
    font-size: 1.8rem;
  }

  .content h3 {
    font-size: 24px;
    margin-left: 0px;
  }

  .content ul li {
    font-size: 14px;
  }

}

/*For very small mobile devices */
@media screen and (max-width: 480px) {
  nav ul li a {
    font-size: 16px;
    padding: 12px 0;
  }

  nav .dropdown:hover .dropdown-menu {
    position: static;
    height: auto;
    display: inline-block;
  }

  .sign-up {
    padding: 10px;
  }

  /* Content */

  .about-content {
    margin: 0 10px;
    font-size: 14px;
    margin: 0px 10px 20px;
    text-align: justify;
  }

  .information {
    padding: 0px 10px;
  }

  .container-info {
    padding: 10px;
    margin-bottom: 5px;
  }

  .container-info p {
    font-size: 14px;
    max-width: 100%;
    margin: 5px 0px 0px 0px;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content h3 {
    font-size: 20px;
    margin-left: 0px;
  }

  .content ul li {
    font-size: 12px;
  }

}
