
/* -- Branding -- Set Vars -- */
:root {
  --primary-bg: #8ca784;
  --dark-bg: rgb(60, 70, 57);
  --secondary-bg: #ffffff;
  --primary-text: #000000;
  --secondary-text: #ffffff;
  --lightgreen: #98b590;

  --wave-color: #8ca784;   /* wave color */
  --wave-h: 40px;         /* wave height */
  --wave-repeat-w: 2000px;  /* tile width for smoother variation */
}

html, body {
  height: 100%;            /* Make sure the page takes full height */
  margin: 0;               /* Remove default margins */
  font-family: 'Georgia', Georgia, serif !important;
}

body {
  display: flex;           /* Use flex layout */
  flex-direction: column;  /* Stack content vertically */
  overflow-x: hidden;
}

main {
  flex: 1;                 /* Push footer to bottom if content is short */
  min-height: 100vh;       /* Full viewport height */
}

.primary-section {
  background-color: var(--primary-bg);
}
.secondary-section {
  background-color: var(--secondary-bg);
}

@media (max-width: 1199px) {
  .headerimage {
    height: 500px;           /* Maintain specific height */
    width: 100vw;             /* Scale width automatically */
    object-fit: cover;       /* Fill container, crop edges if needed */
    object-position: center; /* Keep the center of the image visible */
  }
  /* White overlay */
  .headerimagecover {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px;
    background: rgba(255, 255, 255, 0.15); 
    z-index: 1;
  }
  /* .bookbutn { margin-top: 100px !important; } */
}

@media (min-width: 1200px) {
  .headerimage {
    height: 800px;           /* Maintain specific height */
    width: 100vw;             /* Scale width automatically */
    object-fit: cover;       /* Fill container, crop edges if needed */
    object-position: center; /* Keep the center of the image visible */
  }
    /* White overlay */
  .headerimagecover {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 850px;
    background: rgba(255, 255, 255, 0.15); 
    z-index: 1;
  }
  /* .bookbutn { margin-top: 350px !important; } */
}



.greenheader {
    background-color: var(--primary-bg) !important;
}

.instagram-embed {
  max-width: 540px;
  margin: 0 auto;
  border: none;
  box-shadow: none;
}


/* -- Branding Text and Fonts -- */
/* Georgia Regular */
@font-face {
  font-family: 'Georgia';
  src: url('/fonts/georgia.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Georgia Bold */
@font-face {
  font-family: 'Georgia';
  src: url('/fonts/georgiab.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
/* Georgia Italic */
@font-face {
  font-family: 'Georgia';
  src: url('/fonts/georgiai.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
/* Georgia Bold Italic */
@font-face {
  font-family: 'Georgia';
  src: url('/fonts/georgiaz.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}
.logo_text {
  font-family: 'Georgia', Georgia, serif;
  font-weight: bold;
  font-size: 80px;
}
.logo_sub_text_white {
  font-family: 'Georgia', Georgia, serif;
  font-weight: normal;
  font-size: 20px;
  color: var(--secondary-text);
}
.logo_sub_text_white_small {
  font-family: 'Georgia', Georgia, serif;
  font-weight: normal;
  font-size: 15px;
  color: var(--secondary-text);
}
.logo_sub_text {
  font-family: 'Georgia', Georgia, serif;
  font-weight: normal;
  font-size: 20px;
  color: var(--primary-text);
}
.logo_sub_text_small {
  font-family: 'Georgia', Georgia, serif;
  font-weight: normal;
  font-size: 15px;
  color: var(--primary-text);
}
.inform_text {
  font-family: 'Georgia', Georgia, serif;
  font-weight: bold;
  font-size: 35px;
}
.inform_sub_text {
  font-family: 'Georgia', Georgia, serif;
  font-weight: bold;
  font-size: 20px;
}
.fabled_feedback_text {
  font-family: 'Georgia', Georgia, serif;
  font-weight: normal;
  font-size: 50px;    
}
.content_text {
  font-family: 'Georgia', Georgia, serif;
  font-weight: normal;
  font-size: 20px;  
  padding: 0px 20px;
}


/* -- Nav bar -- */
img.nav-logo {
    height: 30px !important;
}

.bgnav {
  background-color: var(--primary-bg);  
}

nav li {
  color: var(--secondary-text);
}

.active:not(.carousel-item):not(.carousel-indicators li) {
    font-weight: 900 !important;
    border-bottom: 3px double var(--dark-bg);
}

.nav-item:hover {
  color: #fff !important;
}

.hover-button {
    background-color: var(--primary-bg) !important;
    color: var(--secondary-text) !important;
    border: 1px solid var(--secondary-bg) !important;
}

.hover-button:hover {
    background-color: var(--secondary-bg) !important;
    color: var(--primary-text) !important;
    border: 1px solid var(--secondary-bg) !important;
    transition: all 0.3s ease;
}

.hover-button:focus, .hover-button:active { 
    outline: 2px solid rgba(102, 175, 233, 0.5) !important;
    outline-offset: 2px !important;
}

.logocontainer {
  position: relative;
  left: 0px;
  top: 0px;
  background: url("/images/home_banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  z-index: 0;
}

  /* -- Mobile phone view -- */
@media (max-width: 768px) {
    .logostacked{
        position: relative;
        width: 60% !important;
        margin-top: 40%;
        z-index: 1;
    }
    .logolinear {
      display: none;
    }
}

  /* -- Desk top view -- */
@media (min-width: 769px) {
    .logolinear {
        position: relative;
        width: 45% !important;
        margin-top: 25%;
        z-index: 1;
    }
    .logostacked {
      display: none;
    }
}


.text {
  text-align: center;
  margin-top: 5%;
}

.sub_text {
  text-align: center;
  position: relative;
}

.bg_primary {
  background-color: var(--primary-bg);
  color: var(--secondary-text);
}

/* White overlay */
.cover {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3); 
  z-index: 1;
}


/* -- Sections with green wavy edges top or bottom -- */
section {
    position: relative;
}

.section_gap {
  margin: 80px 0px;
}


/* Base wave strips */
.wave-top::before,
.wave-bottom::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: var(--wave-h);
    background-repeat: repeat-x;
    background-size: var(--wave-repeat-w) 100%;
    pointer-events: none;
}
/* wave facing up */
.wave-top::before {
    top: calc(-1 * var(--wave-h));
    background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'>\
    <path d='M0,100 \
        C50,60 120,140 200,80 \
        C280,20 360,160 440,70 \
        C520,-10 580,120 600,60 \
        L600,0 L0,0 Z' fill='%238ca784'/>\
    </svg>");
    transform: rotate(180deg);
}

/* wave facing down */
.wave-bottom::after {
    bottom: calc(-1 * var(--wave-h));
    background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'>\
    <path d='M0,0 \
        C50,40 120,-40 200,30 \
        C280,100 360,-20 440,50 \
        C520,120 580,-30 600,40 \
        L600,100 L0,100 Z' fill='%238ca784'/>\
              <!-- Faint outline only on top wavy edge -->\
      <path d='M0,0 \
        C50,40 120,-40 200,30 \
        C280,100 360,-20 440,50 \
        C520,120 580,-30 600,40' \
        fill='none' stroke='rgba(60,70,57,0.25)' stroke-width='3'/>\
    </svg>");
    transform: rotate(180deg);
}

.footer {
    position: relative;
    width: 100%;
    background-color: var(--primary-bg) !important;
    color: var(--secondary-text);
    text-align: center;
    height: 80px;
    padding: 3rem 1rem;
    margin-top: 100px;
}


  #progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-bg);
    z-index: 9999;
  }

  #progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary-bg);
    transition: width 2.5s linear;
  }

  .social-bar {
  list-style: none;
  display: flex;
  justify-content: center; /* centers horizontally */
  gap: 30px;               /* spacing between icons */
  padding: 0;
  margin: 0;
}

.social-bar li {
  display: inline-block;
}

.social-bar img {
  width: 50px; /* ensures consistent size */
  height: auto;
}


/* ============ ABOUT BANNER ================= */
  /* -- Mobile phone view -- */
@media (max-width: 768px) {
    .about_banner_mob{
        margin-top: -60px;
    }
    .about_banner {
      display: none;
    }
}

  /* -- Desk top view -- */
@media (min-width: 769px) {
    .about_banner {
        margin-top: 60px;
    }
    .about_banner_mob {
      display: none;
    }
}

/* ======== SERVICES BORDER ================*/
/* -- Mobile phone view -- */

  /* -- Desk top view -- */
@media (min-width: 769px) {
    .services_border {
        border-right: 6px var(--primary-bg) solid;
    }
}


.video-container {
    position: relative;
    width: 100% !important;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }
  
  .video-container iframe {
    position: absolute;
    padding: 5px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video_thumb {
    cursor:pointer !important; 
    border-radius:6px !important; 
    width:100% !important; 
    height:140px !important; 
    object-fit:cover !important;
  }

  /* Tablet */
  @media (min-width: 768px) and (max-width: 991px) {
      .video_thumb {
          height: 160px !important;
      }
  }

  /* Desktop */
  @media (min-width: 992px) {
      .video_thumb {
          height: 230px !important;
      }
  }


  .video_thumb:hover {
      transform: scale(101%) !important;
      filter: grayscale(100%) !important;
  }



  .contact_form {
    width: 80%;
    padding: 20px;
    background: var(--greenheader);
    color: var(--white) !important;
    font-family: sans-serif;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 60px 60px var(--transparent-charcoal);
}

.contact_form .label {
    font-size: 16px;
    font-weight: 300;
    color: var(--white) !important;
    padding-top: 20px;
}

.field {
    width: 100%;
    line-height: 25px;
    font-size: 16px;
    font-weight: 300;
    border: solid 1px #333;
    border-radius: 30px;
    padding: 10px;
}

.texta {
    width: 100%;
    height: 150px;
    font-size: 16px;
    font-weight: 300;
    border: solid 1px #333;
    border-radius: 30px;
    padding: 10px;
}

.dfield {
  background: #fff !important;
  width: 100%;
  line-height: 25px;
  font-size: 16px;
  font-weight: 300;
  border: solid 1px #333;
  border-radius: 30px;
  padding: 10px;
  /* max-height: 60px; */
}

.dfield .date-part {
  border: none;
  outline: none;
  text-align: center;
  width: 2em; /* day/month */
  padding: 0;
  margin: 0 10px;
}

.dfield .date-part:last-child {
  width: 4em; /* year */
}

.dfield .separator {
  margin: 0 4px;
  font-weight: 300;
  font-size: 16px;
  color: #333;
}




/* ============== TESTIMONIALS ========================= */
#testimonialCarousel .card,  #packageCarousel .card{
    border-radius: 1rem;
    border-color: var(--lightgreen);
    background-color: rgba(255, 255, 255, 0.5) !important;
    color: var(--primary-text) !important;
    min-height: 350px !important;  /* adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) { 
  #testimonialCarousel .card, #packageCarousel .card {
    min-height: 450px !important;  /* adjust as needed */
  }
}

.card-text {
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Georgia', Georgia, serif;
    font-weight: 300;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 75%;
}

@media (min-width: 768px) {  
  #testimonialCarousel .carousel-control-prev, #packageCarousel .carousel-control-prev {
      left: -10% !important; /* move it outward */
  }

  #testimonialCarousel .carousel-control-next, #packageCarousel .carousel-control-next  {
      right: -10% !important; /* move it outward */
  }
}

/* ADMIN */
.collapse-item {
  font-size: 12px !important;
}