/* =========================
   Meet Neo. Let's follow the white rabbit :)
   Author: Qbit
   Build Date: 24/11/2025
   Version: 1.1.1

   Notes: [24/11/2025] Addition of css form styles.

   File path: /uploads/
========================= */

/* =========================
   Import fonts 
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

/* =========================
   Root styles 
========================= */

:root {

}

/* =========================
   Global styles 
========================= */

* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
   min-height: 100dvh;
   font-size: 1rem;
   font-family: 'Quicksand', sans-serif;
   color: #333;
   line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 {
   font-size: 1.6rem;
   font-family: 'Poppins', sans-serif; 
   color: #333;
   line-height: 1.5;
   margin-bottom: 1.25rem;
}

p {
   margin-bottom: 1.25rem;
}

a {
   text-decoration: none;
   transition: color 0.3s ease, transform 0.5s ease-in-out;
   color: #333;
}

a:hover {
   color: #99cc33;
}

ul {
   list-style: none;
   margin-bottom: 1.25rem;
}

img {
    width: 100%;
    vertical-align: bottom;
}

/* =========================
   Main styles 
========================= */

#main {
  width: 100%;
  background-color: #fff;
  padding: 1.875rem 0;
}

/* =========================
   Header styles 
========================= */

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1000;
}

.logo {
  width: 13.125rem;
}

/* =========================
   Navigation
========================= */

header .col-4 {
  position: relative;
}

header nav {
  position: absolute;
  top: 0.625rem;
  right: 0;
}

header nav ul {
  display: flex;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

header nav a {
  color: #fff;
  padding: 0.625rem;
  text-decoration: none; /* cleaner link style */
}

/* =========================
   Burger menu
========================= */

.burger {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  display: none;
  z-index: 1;
}

.burger div {
  width: 1.875rem;
  height: 0.0625rem;
  background: #fff;
  margin-bottom: 0.4375rem;
  transition: transform 0.4s, opacity 0.4s;
}

/* Burger animation */
.change .bar1 {
  transform: translateY(0.75rem) rotate(-45deg);
}

.change .bar2,
.change .bar3 {
  opacity: 0;
}

.change .bar4 {
  transform: translateY(-0.75rem) rotate(45deg);
}

/* =========================
   Footer styles 
========================= */

footer {
   color: #999;
   background: linear-gradient(to bottom, #333 33.3%, #000 100%); 
   padding-top: 1.875rem;
}

footer h6 {
   color: #999;
}

footer a {
   color: #999;
}

.tag {
   width: 4.375rem;
   height: 3.125rem;
   display: block;
   background: url('/uploads/svg/tag.svg') no-repeat center / contain;
   text-indent: -625rem;
}

/* =========================
   Social styles 
========================= */

.social li {
   display: inline-block;
}

.social a {
   display: inline-block;
   width: 2.2rem;
   height: 2.2rem;
   border-radius: 50%;
   background-color: #99cc33;
   background-position: center;
   background-size: 1.9rem;
   background-repeat: no-repeat;
}

.social a.facebook { 
   background-image: url('/uploads/svg/facebook.svg'); 
}

.social a.twitter { 
   background-image: url('/uploads/svg/twitter.svg'); 
}
.social a.instagram { 
   background-image: url('/uploads/svg/instagram.svg'); 
}

.social a.linkedin { 
   background-image: url('/uploads/svg/linkedin.svg'); 
}

.social a.youtube { 
   background-image: url('/uploads/svg/youtube.svg'); 
}

.social a.tiktok { 
   background-image: url('/uploads/svg/tiktok.svg'); 
}

.social a.threads { 
   background-image: url('/uploads/svg/threads.svg'); 
}

.social a.pinterest { 
   background-image: url('/uploads/svg/pinterest.svg'); 
}

.social a.google { 
   background-image: url('/uploads/svg/google.svg'); 
}

/* =========================
   Contact styles 
========================= */

#contact {
   background-color: #f0f0f0;
   padding: 1.875rem 0;
}

.address,.telephone,.mobile,.email,.whatsapp,.pin {
   background-size: 2rem;
   background-repeat: no-repeat;
   padding: 0.625rem 0 0.625rem 2.5rem;
}

.address {
   background-position: left top 0.3125rem;
}

.telephone,.mobile,.email,.whatsapp,.pin {
   background-position: left center;
}

.address {
   background-image: url('/uploads/svg/address.svg');
}

.telephone { 
   background-image: url('/uploads/svg/telephone.svg'); 
}

.mobile { 
   background-image: url('/uploads/svg/mobile.svg'); 
}

.email { 
   background-image: url('/uploads/svg/email.svg'); 
}

.whatsapp { 
   background-image: url('/uploads/svg/whatsapp.svg'); 
}

.pin { 
   background-image: url('/uploads/svg/pin.svg'); 
}

/* =========================
   Button styles 
========================= */

.btn {
   font-family: 'Poppins', sans-serif;
   font-size: 0.8rem;
   border: solid 0.0625rem #99cc33;
   border-radius: 0.2rem;
   background-color: #99cc33;
   display: inline-block;
   color: #333;
   cursor: pointer;
   transition: background-color 0.5s ease, transform 0.5s ease-in-out;
   padding: 0.625rem 0.9375rem;
}

.btn:hover {
   border: solid 0.0625rem #333;
   background-color: #333;
   color: #fff;
}

.more {
   border: solid 0.0625rem #fff;
   background-color: transparent;
}

.btns li {
   display: inline;
   margin-right: 0.3125rem;
}

/* =========================
   Back to top styles 
========================= */

.top { 
   width: 2.8125rem;
   height: 2.8125rem;
   position: fixed; 
   border-radius: 6.25rem;
   bottom: 0; 
   left: 50%; 
   transform: translate(-50%, -50%);
   display: none;
   background: rgba(255, 255, 255, 0.5) url('/uploads/svg/top.svg') center center / 1.25rem no-repeat;
   cursor: pointer;
}

/* =========================
   Map styles 
========================= */

#map iframe {
   display: block;
   width: 100%;
   height: 18.75rem;
   border: none;
   vertical-align: top;
}

/* Cookie Bar styles */
#cookie {
   width: 100%;
   position: fixed;
   left: 0;
   top: 0;
   display: none;
   color: #fff;
   background: rgba(20,20,20,0.8); 
   text-align: center;
   padding: 1.25rem;
   z-index: 1000;
}

#cookie p {
   margin: 0;
}

#cookie a {
   color: #fff;
}

#cookie .btn {
   color: #333;
   cursor: pointer;
}

#cookie .btn:hover {
   color: #fff;
}

/* =========================
   Carousel styles 
========================= */

#carousel {
   height: 100vh;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
}

#carousel main {
   text-align: center;
   justify-content: center;
   align-items: center;
   z-index: 999;
}

#carousel h1 {
   font-size: 3.0rem;
   color: #fff;
}

#carousel #img {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   animation: zoomInBackground 10s forwards; 
   z-index: -1;
}

#carousel .gradient {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.arrow {
   width: 1.875rem;
   height: 1.25rem;
   position: absolute;
   bottom: 1.25rem;
   display: block;
   background: url('../../../../uploads/svg/arrow.svg') center center / 1.875rem no-repeat;
   animation: bounce 1s infinite;
}

/* =========================
   Bounce animation 
========================= */

@keyframes bounce {
   0%, 100% {
      transform: translateY(0);
   }
   50% {
      transform: translateY(-0.5rem);
   }
}

/* =========================
   Image animation 
========================= */

@keyframes zoomInBackground { 
  0% { 
   transform: scale(1.2); 
  }
  100% { 
   transform: scale(1); 
  } 
}

/* =========================
   Accreditation styles 
========================= */

#accreditations {
  width: 100%;
  background: #f8f8f8;
  display: flex;
  padding: 1.875rem 0.625rem;
}

#accreditations main {
   justify-content: center;
   align-items: center;
}

.accreditation {
  width: 7.5rem;
}

/* =========================
   Form styles
========================= */

input[type="text"],select,textarea,input[type="number"] {
   width: 100%;
   border: solid 1px #f0f0f0;
   background-color: #f0f0f0;
   border-radius: 3px;
   font-family: 'Poppins', sans-serif;
   font-size: 1.0em;
   color: #333;
   margin-bottom: 10px;
   padding: 15px;
}

select {
   background: #f0f0f0 url('/uploads/svg/select.svg') right 10px center / 15px no-repeat;#
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
}

textarea {
   height: 150px;
}

input[type="submit"] {
   border-radius: 3px;
   cursor: pointer;
   margin-top: 10px;
}

::placeholder {
   color: #ccc;
}

label {
   font-family: 'Poppins', sans-serif;
}

.required {
   color: red;
}

/* =========================
   Responsive styles
========================= */

@media (max-width: 48rem) { 

   /* =========================
      Header styles 
   ========================= */

   .logo {
      width: 10.9375rem;
    }

   /* =========================
      Cookie bar styles 
   ========================= */

   #cookie .btn {
      display: block;
      margin-top: 0.625rem;
   }

   /* =========================
      Navigation
   ========================= */

   header nav {
      position: fixed;
      inset: 0 0 auto 0; /* shorthand for top:0; left:0; right:0; */
   }

   header nav ul {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      list-style: none;
      margin: 0;
      padding: 0;
   }

   header nav li {
      display: block;
   }

   /* =========================
      Burger menu
   ========================= */

   .burger {
      display: block;
   }

   .main-nav {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      text-align: left;
      background: #333;
      opacity: 0;
      transform: translateY(-10%);
      pointer-events: none;
      visibility: hidden;
      transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
      margin: 0;
      padding: 3.125rem 0 0 1.25rem;
      z-index: 1000;
   }

   body.menu-open .main-nav,
   .main-nav.menu-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
   }

   body.menu-open,
   html.menu-open {
        overflow: hidden;
        height: 100%;
   }

   /* =========================
      Carousel styles 
   ========================= */

   #carousel h1 {
      font-size: 2.0rem;
   }

   /* =========================
      Accreditation styles 
   ========================= */ 

   .accreditation {
      width: 35%;
   }  

}