/*(2024) Template A ;*/

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

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  height: 100%;
}

h1 { margin-top: 15px; margin-bottom: 15px; font-family: "Inter", sans-serif; font-weight: 700; font-style: normal; font-size: 30px;  line-height: 30px; }
	
h2 { margin-bottom: 10px; margin-top: 30px; font-size: 1.6em; font-family: 'Inter', sans-serif; font-weight: 500; font-style: normal;  line-height:30px; }

h3 { font-size: 1.5em; font-family: 'Inter', sans-serif;  font-weight: 300; font-style: normal;  }

h4 { font-size: 1.3em; font-family: 'Roboto Condensed', sans-serif;  font-weight: 300; font-style: normal; }

h5 {font-size: 1.2em; font-family: 'Roboto Condensed', sans-serif; font-style: italic; color: #6e6e6e;}

h6 {font-size: 1.0em; font-family: 'Inter', sans-serif;  font-weight: 300; font-style: italic;}

p { font-size: 1.1em;  line-height: 30px; font-style: normal;} 

img {
  max-width: 100%;
  height: auto;
}
 
 
 /* **********LINKS*************************************************************************************************************************************************/
 a:link {
  color: #FFFFFF; /* Default link color */
  text-decoration: none; /* Remove underline */
  transition: color 0.6s ease-in-out;
}

/* Visited link */
a:visited {
  color: #FFFFFF; /* Ensures visited links stay white */
}

/* Mouse over link */
a:hover {
  color: #72b62b; /* Hover effect */
}

/* Selected (clicked) link */
a:active {
  color: #72b62b; /* Keeps the same color as hover */
}


/* **********  Settings for Vertical  Horizontal Lines  ***********************************************************************************************************/
  hr {width: 50%;						
    height:1px;
	background-color:#FFF;
	}
	
/* horizontal line which would use class long*/   
hr.long {width: 75%;
        height:2px;
		background-color:#772023;
	}
	
/* vertical line which runs alongside text*/  
.va {
  border-left: 6px solid lightgrey;
  height: 150px;
	}




/* **********BUTTONS*************************************************************************************************************************************************/	
.discover-button {
    display: inline-block;
    font-family: 'Arial', sans-serif; /* Or any clean sans-serif font */
    font-weight: bold;
    text-transform: uppercase; /* Make text all caps */
    text-align: center;
    padding: 15px 40px; /* Adjust padding for size */
    font-size: 16px; /* Adjust font size */
    color: #000; /* Initial text color */
    text-decoration: none; /* Remove underline */
    background: #72b62b; /* Solid initial background */
    border: 1px solid #fff; 
    position: relative; /* Makes this element a stacking context */
    overflow: hidden; /* Ensures hover effect stays within bounds */
    transition: color 0.3s ease; /* Smooth transition for text color */
    z-index: 0; /* Ensure proper stacking */
}

.discover-button::before {
    content: '';
    position: absolute;
    top: 100%; /* Start below the button */
    left: 0;
    width: 100%;
    height: 100%;
    background: #cbbba0; /* Hover background color */
    z-index: -1; /* Push the hover effect behind the button content */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.discover-button:hover::before {
    transform: translateY(-100%); /* Move the hover background into view */
}

.discover-button:hover {
    color: #000; /* Change text color on hover */
}


.discover-button:link,
.discover-button:visited,
.discover-button-small:link,
.discover-button-small:visited {
  color: #000;
}

/* **********SMALL BUTTONS*********************************************************************************************************************************************/	


.discover-button-small {
    display: inline-block;
    font-family: 'Arial', sans-serif; /* Or any clean sans-serif font */
 
    text-transform: uppercase; /* Make text all caps */
    text-align: center;
    padding: 15px 30px; /* Adjust padding for size */
    font-size: 12px; /* Adjust font size */
    color: #000; /* Initial text color */
    text-decoration: none; /* Remove underline */
    background: #356a2c; /* Solid initial background */
    border: 1px solid #fff; 
    position: relative; /* Makes this element a stacking context */
    overflow: hidden; /* Ensures hover effect stays within bounds */
    transition: color 0.3s ease; /* Smooth transition for text color */
    z-index: 0; /* Ensure proper stacking */
}

.discover-button-small::before {
    content: '';
    position: absolute;
    top: 100%; /* Start below the button */
    left: 0;
    width: 100%;
    height: 100%;
    background: #cbbba0; /* Hover background color */
    z-index: -1; /* Push the hover effect behind the button content */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.discover-button-small:hover::before {
    transform: translateY(-100%); /* Move the hover background into view */
}

.discover-button-small:hover {
    color: #000; /* Change text color on hover */
}


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

.navbar{ 
padding-bottom: 15px;
padding-top: 15px;
padding-left: 20px;
padding-right: 20px;
}

/* Modify the background color of the navbar */
.navbar-custom {background-color:rgba(0, 0, 0, 1);}

/*specifies the colour of nav-link which is contained in nav-item, nav and navbar*/
.navbar .navbar-nav .nav-item .nav-link {color:#FFFFFF;}

.navbar .navbar-nav .nav-item .nav-link:hover {color:#6bcb66;}

.navbar-toggler {
    background-color: black; /* Black background for the toggle button */
    border: none; /* Removes any default border */
    outline: none; /* Removes the focus outline */
}

.navbar-toggler-icon {
    background-image: 
        linear-gradient(#6bcb66, #6bcb66), 
        linear-gradient(#f7e761, #f7e761), 
        linear-gradient(#6bcb66, #6bcb66);
    background-size: 20px 2px; /* Width and height of each line */
    background-position: center, center, center;
    background-repeat: no-repeat;
    background-position: 50% 20%, 50% 50%, 50% 80%; /* Positioning of each line */
}
 

.navbar-toggler:focus {
    box-shadow: none; /* Optional: Removes the shadow that appears on focus */
}
  
  .navbar-brand img{
  height: 40px;      /* pick what you want */
  width: auto;
}


/* **********Accordion for FAQs*************************************************************************************************************************************************/

/* Accordion container (optional, adds overall structure) */
.accordion {
  background-color: #eeebdd;
}

/* Accordion item with soft shadow */
.accordion-item {
  background-color: #f5f3e7; /* Slightly lighter for contrast */
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Soft shadow */
  margin-bottom: 0.75rem;
  border-radius: 0.35rem;
  overflow: hidden;
}



.accordion-button {
  font-size: 1rem;
  font-style: normal;
  border: none;
  box-shadow: none;
  color: #000 !important;
  background-color: #f5f3e7; /* Match item bg */
  transition: all 0.2s ease;
  white-space: normal; /* Allows text wrapping */
  align-items: center; /* Fixes vertical spacing */
  line-height: 1.4; /* Adjust line height */
  padding-top: 0.75rem;  /* Reduce top padding slightly */
  padding-bottom: 0.75rem; /* Reduce bottom padding slightly */
}


/* Remove focus ring */
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Expanded state */
.accordion-button:not(.collapsed) {
  background-color: #e8e6d5; /* Slightly darker for contrast */
}

/* Hover effect */
.accordion-button:hover {
  color: #f7e761;
  background-color: #eae7d7; /* A gentle hover background */
}

/* Accordion body */

.accordion-body {
  text-align: left; /* Make sure the text is aligned to the left */
  padding: 1rem 1.25rem;
  background-color: #fdfcf8;
  color: #000;
}


.accordion-button,
.accordion-body {
  font-family: 'Segoe UI', sans-serif; /* Replace with your preferred font */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}



.accordion-header {
  margin: 0 !important;
}


 
  /* **********SET-UPS*************************************************************************************************************************************************/

 
.setupa {                        /*centres the text in the middle of the screen*/
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}


.setupb {                        /*centres the text in the middle of the screen*/
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  text-align: left;
}


.standard{   
padding-top: 3rem;
padding-bottom: 1rem;
padding-left: 1rem;
padding-right: 1rem;
}

.standardtop{   				 /*to be used when this goes at the top of the page*/
padding-top: 6rem;
padding-bottom: 1rem;
padding-left: 1rem;
padding-right: 1rem;
}



.colorbg1 {						/*use to change the background*/
background-color:#fff;
color:#000;
}


.colorbg2 {						/*use to change the background*/
background-color:#000;
color:#fff;
}

.colorbg3 {						/*use to change the background*/
background-color:#356a2c;
color:#000;
}

.colorbg4 {						/*use to change the background*/
background-color:#fff;
color:#356a2c;
}

.image {
display: block;
width: 100%;
height: auto;
}

.chevron-container {
    position: absolute;
    bottom: 10px; /* Position the chevron 10px above the bottom */
    width: 100%;
    text-align: center; /* Center the chevron horizontally */
}


   /* **********SECTIONS************************************************************************************************************************************************/
 

#cover {
	margin-top: 0;
	background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/cover.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	position: relative;
	color: #FFF;
}

#footer{
		padding-top: 2rem;
		padding-bottom: 2rem;
		padding-left: 1rem;
		padding-right: 1rem;
		background-color:#6e6e6e ;
		}


#footerbottom{
		padding-left: 1rem;
		padding-right: 1rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
		background-color:#000 ;
		color:#fff;
			}
			
			

@media (min-width: 576px) {
	
		h1 { margin-top: 15px; margin-bottom: 15px;  font-weight: 700;  font-size: 50px;  line-height: 50px; }
			
		h2 { margin-bottom: 10px; margin-top: 1px;  font-size: 2.2em;  font-weight: 500;   line-height: 50px; }

		h3 { font-size: 1.5em;  font-weight: 300;  }

		h4 { font-size: 1.6em;   font-weight: 100;  }


		
		 
		.standard{   
		padding-top: 4rem;
		padding-bottom: 4rem;
		padding-left: 2rem;
		padding-right: 2rem;
		}
		
		.standardtop{   				 /*to be used when this goes at the top of the page*/
		padding-top: 4rem;
		padding-bottom: 1rem;
		padding-left: 2rem;
		padding-right: 2rem;
		}
					


}

@media (min-width: 768px) {

#cover{ margin-top: 30px;}

}


@media (min-width: 992px) {

body{font-weight: 400; height: 100%; }

}


@media (min-width: 1200px) {

p { font-size: 1.2em;  line-height: 40px;   } 


}


@media (min-width: 1400px) {
	

		h1 { margin-bottom: 45px; font-weight: 700;  font-size: 100px; line-height: 80px;}
			
		h2 { font-size: 2.4em;  font-weight: 500;   line-height: 50px; }

		h3 { font-size: 1.8em;   font-weight: 600;  }

		h4 { font-size: 1.6em;   font-weight: 500;  }

}





 






	
			 
		
		 
	
		
		







			

