/* FONTS */
/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/poppins-v24-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/poppins-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/poppins-v24-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/poppins-v24-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* GENERAL */
* {
  padding: 0;
  box-sizing: border-box;
}

p,
ul,
li {
  font-size: 22px;
}

a {
  text-decoration: none;
}

body {
  background: #020024;
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgb(3, 107, 226) 100%
  );
  color: white;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  margin: 0;
}

/* NAVBAR */
nav,
.about-section,
.split-section,
.button-container {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 40px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  height: 80px;
}

.nav-left .website-name {
  color: white;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 6.8px;
  transition: text-shadow 0.3s;
}

.nav-left .website-name:hover {
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgb(93, 238, 238),
    0 0 20px rgb(174, 233, 233),
    0 0 40px #0ff;
}

.nav-left p {
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 3.5px;
}

.nav-right a {
  color: white;
  display: inline-flex;
  align-items: center;
  margin: 0 15px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3.5px;
  transition: text-shadow 0.3s;
}

.nav-right a:hover {
  color: #ffffff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgb(93, 238, 238),
    0 0 20px rgb(174, 233, 233),
    0 0 40px #0ff;
}

.nav-right a.active {
  color: #ffffff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgb(93, 238, 238),
    0 0 20px rgb(174, 233, 233),
    0 0 40px #0ff;
}

/* HOME PAGE */
.header-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 30px;
}

.header-image-container img {
  max-width: 1600px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  margin-top: 40px;
  border: 5px solid white;
}

.intro-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 60px;
  margin-left: 30px;
  margin-right: 30px;
  gap: 20px;
  padding-left: 100px;
  padding-right: 100px;
}

.introduction h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3.5px;
}

.introduction p {
  line-height: 1.5;
}

.hero-image {
  flex: 2;
  display: flex;
  justify-content: right;
  margin-top: 30px;
}

.hero-image img {
  border-radius: 50%;
  width: 450px;
  height: 450px;
  object-fit: cover;
  object-position: 50% 35%;
}

.split-section .cells {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 300px;
  margin-left: 30px;
}

.split-section .cell h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3.5px;
}

.split-section .cell ul {
  margin-left: 30px;
  line-height: 1.5;
}

.button-container {
  min-height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button {
  display: inline-block;
  text-align: center;
  margin: 20px auto;
  background-color: transparent;
  color: white;
  border: 3px solid white;
  padding: 20px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  border-radius: 20px;
  cursor: pointer;
  transition:
    text-shadow 0.3s,
    border-color 0.3s;
}

.button:hover {
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgb(93, 238, 238),
    0 0 20px rgb(174, 233, 233),
    0 0 40px #0ff;
  border-color: rgb(161, 255, 255);
}

.social-media-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.social-media-links,
.social-media-links h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3.5px;
}

.social-media-links img {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
}
/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 14px;
}

footer p,
footer ul {
  font-size: 14px;
}

footer a {
  color: rgb(4, 172, 238);
}

/* ABOUT PAGE*/
.about-page .about {
  max-width: 1800px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about-image-container {
  flex: 1;
}

.about-text {
  flex: 2;
}

.about h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3.5px;
  margin-bottom: 20px;
  text-align: center;
}

.about-image-container img {
  width: 500px;
  height: 600px;
  object-fit: cover;
  object-position: 50% 20%;
  margin-top: 30px;
  display: block;
  margin-bottom: 30px;
}

.about p {
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
  margin-top: 76px;
}

/* SERVICES PAGE */

/* Container & Layout */
.services-page .services-section {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

/* Heading */
.services-heading h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3.5px;
}

.services-heading p {
  line-height: 1.5;
}

/* Service Cells Container */
.services-section .cells {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

/* Service Cell Boxes */
.services-section .cell {
  padding: 20px;
  margin: 20px;
  flex: 1 calc(50% - 40px);
  border: 3px solid white;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.services-section .cell h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3.5px;
  margin-bottom: 15px;
}

.services-section .cell p,
.services-section .cell ul {
  line-height: 1.5;
}

.services-section .cell ul {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 20px;
}

.services-section .cell .price {
  margin-top: auto;
}

.booking-button {
  display: inline-block;
  text-align: center;
  margin: 20px auto;
  background-color: transparent;
  color: white;
  border: 3px solid white;
  padding: 20px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  border-radius: 20px;
  cursor: pointer;
  transition:
    text-shadow 0.3s,
    border-color 0.3s;
}

.booking-button:hover {
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgb(93, 238, 238),
    0 0 20px rgb(174, 233, 233),
    0 0 40px #0ff;
  border-color: rgb(161, 255, 255);
}

/* TESTIMONIAL CAROUSEL */

.carousel-container h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3.5px;
  margin-top: 50px;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 20px auto;
  overflow: hidden;
}

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

.carousel img {
  /* make each slide exactly as wide as the container, preserving aspect ratio */
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  /* use contain so images aren’t cropped; change to cover if you prefer filling the area */
  object-fit: contain;
}

.carousel-container button {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 1;
  outline: none;
}

.carousel-container .prev-btn {
  left: 10px;
}

.carousel-container .next-btn {
  right: 10px;
}

/* WISHING WELL SECTION */
.wishing-well-card {
  padding: 20px;
  margin: 10px auto;
  max-width: 1360px;
  border: 3px solid white;
  background-color: rgba(0, 183, 255, 0.452);
  display: flex;
  flex-direction: column;
}

.wishing-well-content h3,
.wishing-well-content h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3.5px;
}

.wishing-well-content ul {
  list-style-position: inside;
  padding: 0;
  margin-bottom: 20px;
}

.wishing-well-content .price {
  margin-top: auto;
}

/* CONTACT PAGE */
.contact-page .contact-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-cells .cells {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-align: center;
}

.contact-page .contact-text {
  text-align: center;
}

.contact-page form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 24px;
}

.contact-page form input,
.contact-page form textarea {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  padding: 10px;
  font-size: 24px;
  border: none;
  border-radius: 5px;
  margin-bottom: 28px;
  resize: none;
}

.contact-page form button {
  align-self: center;
  background-color: transparent;
  color: white;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  padding: 26px;
  margin-bottom: 30px;
  border: 3px solid white;
  border-radius: 18px;
  cursor: pointer;
  transition:
    text-shadow 0.3s,
    border-color 0.3s;
}

.contact-page form button:hover {
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgb(93, 238, 238),
    0 0 20px rgb(174, 233, 233),
    0 0 40px #0ff;
  border-color: rgb(161, 255, 255);
}

.contact-page .contact-info h1 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3.5px;
  margin-bottom: 30px;
}

.contact-page .contact-info h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3.5px;
  margin-bottom: 30px;
}

.contact-page .contact-info p {
  line-height: 1.5;
  margin-bottom: 40px;
}

.contact-page .whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: white;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 4px;
  width: 300px;
  padding: 18px;
  border: 3px solid white;
  border-radius: 25px;
  margin-bottom: 40px;
  cursor: pointer;
  transition:
    text-shadow 0.3s,
    border-color 0.3s;
}

.contact-page .whatsapp-button img {
  margin-left: 20px;
  width: 48px;
  height: auto;
  margin-right: 20px;
  transition: filter 0.3s;
}

.contact-page .whatsapp-button:hover {
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgb(93, 238, 238),
    0 0 20px rgb(174, 233, 233),
    0 0 40px #0ff;
  border-color: rgb(161, 255, 255);
}

.contact-page .whatsapp-button:hover img {
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 8px rgb(93, 238, 238))
    drop-shadow(0 0 3px rgb(138, 187, 187)) drop-shadow(0 0 8px #0ff);
}

/* Payment pages*/
.payment-page {
  text-align: center;
  margin-top: 30px;
}

.payment-page h1,
.payment-page h2,
.payment-page h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3.5px;
}

.payment-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-page li {
  margin-bottom: 10px;
}

.payment-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.payment-page .payment-option {
  padding: 20px;
  margin: 20px;
  flex: 1 1 300px;
  max-width: 600px;
  border: 3px solid white;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.eft-payment-button,
.proof-of-payment button {
  display: inline-block;
  text-align: center;
  margin: 20px auto;
  background-color: transparent;
  color: white;
  border: 3px solid white;
  padding: 20px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  border-radius: 20px;
  cursor: pointer;
  transition:
    text-shadow 0.3s,
    border-color 0.3s;
}

.eft-payment-button:hover,
.proof-of-payment button:hover {
  text-shadow:
    0 0 5px #fff,
    0 0 10px rgb(93, 238, 238),
    0 0 20px rgb(174, 233, 233),
    0 0 40px #0ff;
  border-color: rgb(161, 255, 255);
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
  nav {
    padding: 0 20px;
    height: auto;
  }

  .nav-left .website-name {
    font-size: 24px;
  }

  p,
  ul,
  li {
    font-size: 18px;
  }
}

@media (max-width: 980px) {
  /* Home Page */
  nav {
    padding: 0 20px;
    flex-direction: column;
  }

  .nav-left .website-name {
    padding-bottom: 30px;
  }

  .header-image-container img {
    width: 800px;
    height: auto;
  }

  .intro-section {
    display: flex;
    flex-direction: column;
    padding: 30px;
  }

  .intro-section h2,
  .intro-section p {
    text-align: center;
  }

  .hero-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    object-position: 50% 35%;
  }

  .split-section .cells {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .split-section .cell {
    text-align: left;
    width: 100%;
    max-width: 100%;
  }

  .social-media-links,
  .social-media-section h3 {
    font-size: 25px;
  }

  footer {
    padding-bottom: 40px;
  }

  /* About Page*/
  .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about-image-container img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    object-position: 60% 15%;
    margin-bottom: 10px;
  }

  .about p {
    margin: 20px;
    padding: 10px;
  }

  /* Services page*/

  .services-heading p {
    margin-left: 30px;
    margin-right: 30px;
  }

  .services-section .cells {
    display: flex;
    flex-direction: column;
  }

  .wishing-well-card {
    max-width: 850px;
  }

  .carousel-container h2 {
    font-size: 28px;
  }

  .carousel-container {
    max-width: 800px;
  }

  /* Contact Page*/
  .contact-page form {
    max-width: 600px;
    gap: 10px;
    font-size: 18px;
  }

  .contact-page form input,
  .contact-page form textarea {
    font-size: 18px;
  }

  .contact-page form button {
    font-size: 18px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .nav-left .website-name,
  .nav-left p {
    font-size: 18px;
  }

  .nav-right a {
    font-size: 16px;
  }

  p,
  ul,
  li {
    font-size: 16px;
  }

  .wishing-well-card {
    max-width: 400px;
  }

  .carousel-container {
    max-width: 400px;
  }

  .contact-page form {
    max-width: 400px;
  }
  .payment-container {
    flex-direction: column;
    align-items: center;
  }

  .payment-page .payment-option {
    width: 90%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  nav {
    text-align: center;
  }
  .nav-left .website-name,
  .nav-left p {
    font-size: 15px;
  }

  .nav-right a {
    font-size: 14px;
  }

  p,
  ul,
  li {
    font-size: 14px;
  }

  .header-image-container {
    max-width: 460px;
  }

  .intro-section {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    width: 280px;
    height: 280px;
    display: block;
    object-position: 50% 35%;
  }

  .wishing-well-card {
    max-width: 320px;
  }

  .carousel-container {
    max-width: 320px;
  }

  .contact-page form {
    max-width: 320px;
  }

  .intro-section h2,
  .about h2,
  .services-section h2 .contact-split-section h2 {
    font-size: 18px;
  }

  .split-section h3,
  .services-section .cells h3,
  .wishing-well-content h3 {
    font-size: 17px;
  }

  .wishing-well-card .booking-button {
    font-size: 12px;
  }
}
@media (max-width: 395px) {
  .nav-left .website-name,
  .nav-left p {
    font-size: 12px;
  }

  .nav-right a {
    font-size: 12px;
  }

  p,
  ul,
  li {
    font-size: 12px;
  }

  .header-image-container {
    width: 250px;
  }

  .intro-section {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    width: 200px;
    height: 200px;
    display: block;
    object-position: 50% 35%;
  }

  .button-container a {
    font-size: 14px;
  }

  .split-section .cells h3,
  .social-media-section h3 {
    font-size: 16px;
  }

  .wishing-well-card {
    width: 280px;
  }

  .carousel-container {
    width: 280px;
  }

  .contact-page form {
    max-width: 280px;
  }

  .intro-section h2,
  .about h2,
  .services-section h2,
  .contact-split-section h2 {
    font-size: 16px;
    letter-spacing: 1.3px;
  }

  .services-section button {
    font-size: 14px;
  }

  .contact-page form {
    max-width: 250px;
    gap: 8px;
    font-size: 14px;
  }

  .contact-page form input,
  .contact-page form textarea {
    font-size: 14px;
  }

  .contact-page form button {
    font-size: 14px;
    padding: 20px;
  }

  .contact-page .contact-info h1 {
    font-size: 14px;
  }

  .contact-page .contact-info h2 {
    font-size: 14px;
  }

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

  .contact-page .whatsapp-button {
    width: auto;
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .whatsapp-button img {
    width: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  footer p {
    font-size: 12px;
  }
}
