@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

nav {
  padding: 20px 50px;
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, rgb(220, 233, 248), rgb(84, 181, 250));
  position: relative;
  height: 100px;
}

.logo img {
  max-width: 200%;
  height: auto;
  margin-top: 10px;
  max-height: 180px;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li {
  list-style-type: none;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 5px 0;
  padding-top: 10px;
  font-weight: 500;
  font-size: 20px;
  transition: color 0.3s, transform 0.3s ease-in-out;
}

nav ul li a:hover {
  color: rgb(9, 44, 110);
  transform: scale(1.1); 
}

nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(9, 44, 110);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

nav ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.menu-icon {
  display: none;
}

.hero {
  width: 100%;
  height: 700px;
  background: linear-gradient(to right, rgb(220, 233, 248), rgb(84, 181, 250));
  padding-top: 65px;
}

@keyframes waveMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hero .container {
  height: 100%;
}

.hero .mid {
  padding: 0 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero .mid .desc {
  width: 40%;
  font-size: 130%;
  font-family: "Roboto Mono", monospace;
}

.hero .mid .desc h2 {
  text-transform: uppercase;
  color: rgb(9, 44, 110);
  font-family: "Roboto Mono", monospace;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero .mid .desc h5 {
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: rgb(9, 44, 110);
  font-weight: 200;
}

.hero .mid .desc h2 span {
  color: black;
}

.hero .mid .desc p {
  font-family: "Roboto Mono", monospace;
  color: rgb(9, 44, 110);
  font-size: 20px;
  margin-bottom: 35px;
}

.hero .mid .cta {
  margin-bottom: 40px;
}

.hero .mid .desc .cta a {
  font-weight: 600;
  font-family: "Roboto Mono", monospace;
  text-decoration: none;
  padding: 12.5px;
  border: 2px solid rgb(9, 44, 110);
  border-radius: 50px;
  transition-duration: 0.3s;
  transition-property: background-color, border, color, box-shadow;
}

.hero .mid .desc .cta a:first-child {
  background-color: rgb(9, 44, 110);
  color: #ffffff;
  margin: 0 15px 10px 0;
}

.hero .mid .desc .cta a:first-child:hover {
  background-color: rgb(23, 95, 230);
  border: 2px solid rgb(23, 95, 230);
}

.hero .mid .placeholder {
  width: 50%;
  height: 400px;
  background-color: rgb(9, 44, 110);
  background-image: url(./assets/home.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  object-fit: cover;
  border-radius: 15px 0 0 0;
  box-shadow: 0 0 15px rgb(9, 44, 110);
}

.about-section {
  padding: 120px 0;
  background-color: white;
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.about-title {
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-size: 30px;
  font-family: "Roboto Mono", monospace;
  color: rgb(9, 44, 110);
}

.about-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: 8px;
  background: rgb(9, 44, 110);
}

.about-why h5 {
  text-align: center;
  color: rgb(9, 44, 110);
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 130%;
  font-family: "Roboto Mono", monospace;
}

.about-why p {
  text-align: center;
  font-size: 110%;
  line-height: 1.3;
  font-family: "Roboto Mono", monospace;
}

.about-details .text {
  line-height: 30px;
  font-family: "Roboto Mono", monospace;
  text-align: center;
  font-size: 20px;
}

.contact-about {
  display: flex;
  justify-content: center;
  color: white;
  background-color: rgb(9, 44, 110);
  border-radius: 20px;
  width: 200px;
  margin: 0 auto;
  margin-top: 40px;
}

.one-contact-about {
  text-decoration: none;
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-about:hover {
  background-color: rgb(23, 95, 230);
}

.gallery-section {
  padding-left: 85px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 60px;
  background: linear-gradient(to right, rgb(220, 233, 248), rgb(84, 181, 250));
}

.gallery-section .gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  text-decoration: none;
}

.gallery-section .gallery-list .gallery-item {
  overflow: hidden;
  border-radius: 10px;
  width: calc(100% / 3 - 32px);
}

.gallery-section .gallery-item .gallery-image {
  width: 100%;
  height: 400px;
  cursor: zoom-in;
  transition: 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(1.3);
}

.gallery-title {
  text-align: center;
  margin-bottom: 50px;
  margin-right: 30px;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  font-size: 30px;
  color: rgb(9, 44, 110);
}

.gallery-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: 8px;
  background: rgb(9, 44, 110);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
  width: 100%;
  background: #222;
  color: white;
  padding: 15px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  font-family: "Roboto Mono", monospace;
  align-items: center;
}

.cookie-banner button {
  background: rgb(9, 44, 110);
  color: white;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Roboto Mono", monospace;
}

.contact-section {
  padding: 50px 0 100px;
  background: white;
}

.contact-title {
  text-align: center;
  color: rgb(9, 44, 110);
  margin-top: 20px;
  font-family: "Roboto Mono", monospace;
  font-size: 30px;
  margin-bottom: 50px;
}

.content-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: 8px;
  background: rgb(9, 44, 110);
}

.contact-content {
  display: flex;
  margin-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: -30px;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info-list {
  background-color: rgb(9, 44, 110);
  border-radius: 20px;
  padding: 20px;
}

.contact-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  color: white;
  font-size: 16px;
}

.contact-info i {
  font-size: 20px;
}

.contact-form {
  max-width: 50%;
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  color: rgb(9, 44, 110);
  outline: none;
  margin-bottom: 16px;
  background: rgb(176, 197, 236);
  border-radius: 10px;
  border: 1px solid black;
  font-family: "Roboto Mono", monospace;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgb(4, 4, 4); 
}

.contact-form .form-textarea {
  padding-top: 15px;
  height: 100px;
  font-family: "Roboto Mono", monospace;
}

.contact-form .submit-button {
  padding: 10px 26px;
  margin-top: 20px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  background: rgb(9, 44, 110);
  border-radius: 20px;
  font-family: "Roboto Mono", monospace;
}

.contact-form .submit-button:hover {
  background: white;
  border: 1px solid rgb(9, 44, 110);
  color: rgb(9, 44, 110);
}

.footer-section {
  padding: 50px 0;
  background: linear-gradient(to right, rgb(220, 233, 248), rgb(84, 181, 250));
}

.footer-section .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 110%;
}

.copyright-text {
  color: rgb(9, 44, 110);
}

.language-selector {
  background: rgb(84, 181, 250);
  
}

@media screen and (min-width: 1200px) {
  .contact-info p {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .hero .mid .desc {
    margin-top: 40px;
  }

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

  .hero {
    padding-top: 130px;
  }

  nav {
    padding-top: 80px;
  }

  .contact-content {
    padding-left: 275px;
    padding-right: 275px;
  }
}

@media screen and (max-width: 1024px) {
  .hero .mid .desc h2 {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 1150px) {
  .menu-icon {
    display: block;
  }

  .menu-icon i {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  nav ul li a {
    font-size: 16px;
  }

  .logo img {
    max-width: 100%;
    max-height: 80px;
  }

  nav ul {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(to right, rgb(220, 233, 248), rgb(84, 181, 250));
    gap: 0;
    overflow: hidden;
  }

  nav ul li {
    padding: 20px;
  }

  nav ul li:last-child {
    margin-bottom: 25px;
  }

  #menuList {
    transition: all 0.5s ease-in-out;
  }

  .hero {
    padding-top: 6.5vh;
    height: 800px;
  }

  .hero .mid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero .mid .desc {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero .mid .placeholder {
    width: 70%;
    height: 300px;
    border-radius: 15px;
    margin: 0 auto;
  }

  .gallery-section .gallery-list .gallery-item {
    width: calc(100% / 2 - 30px);
  }
}

@media screen and (min-width: 650px) and (max-width: 1100px) {
  .contact-info p {
    font-size: 20px;
  }
}

@media screen and (max-width: 900px) {
  .about-section .section-content {
    flex-direction: column;
    gap: 70px;
  }

  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner button {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    height: 850px;
  }

  .gallery-section {
    padding-left: 40px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 600px) {
  .hero .mid .placeholder {
    height: 200px;
  }

  nav {
    padding: 20px 20px;
  }

  #menuList {
    margin-top: 20px;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-form {
    max-width: 100%;
  }

  .footer-section .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-section .gallery-list .gallery-item {
    width: calc(100% / 1 - 30px);
  }

  .gallery-section .gallery-list .gallery-image {
    height: 400px;
  }
}

@media screen and (max-width: 350px) {
  .hero {
    padding-top: 10vh;
  }

  .hero .mid .placeholder {
    margin: 20px auto 0px;
  }

  .hero .mid .desc h2 {
    font-size: 2rem;
  }

  .contact-info p {
    font-size: 12px;
  }

  .contact-info-list {
    padding: 10px;
  }
}

@media screen and (max-width: 400px) {
  .gallery-section .gallery-list .gallery-image {
    height: 300px;
  }

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

@media screen and (max-width: 375px) {
  .gallery-section .gallery-list .gallery-image {
    height: 200px;
  }
}