/* Importing a Google Font */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap');
@import url("https://use.typekit.net/ylu4uzr.css");
@import url("https://use.typekit.net/ylu4uzr.css");
/* Changing the main font and background colour */

body {
	font-family: Parabolica, sans-serif;
	background-color: #fffcf8;
}

/* Changing the background colour for the header */

header {
	color: #ffffff;
	font-family: "coolvetica", sans-serif;
}


h2 {
 	font-family: "coolvetica", sans-serif;
 }
 
h3 {
 	font-family: "coolvetica", sans-serif;
 }

h6 {
  font-family: "coolvetica", sans-serif;
  font-size:larger;
  font-weight: 500;
  font-style: italic;
  color:#143109;
  padding-bottom: 1em;
  padding-top: 2em;
  padding-left: 1em;
}

/* Changing the background color for the navigation bar */

.navbar {
	background-color: #ffffff;
}

/* Effect on social media buttons */

footer a:hover {
	opacity: .5;
}


/* Hero Section shadow */

.white-shadow {
	text-shadow: -.01em -.01em .01em white,
		.02em .02em .02em white,
		0 0 .2em white,
		0 0 .5em white;
}

/* CORPORATE PAGE CLASSES */
.co-paragraphs {
	font-family: "parabolica", sans-serif;
	font-weight: 400;
	font-style: normal;
	color:#000000;
}
.co-row {
	background-color: #efefef;
}

.co-row-bigtitles
{
	font-family: "parabolica-text", sans-serif;
	font-weight: 900;
	font-style: italic;
	color: #000060;
}
.co-info-title { 
	font-family: "coolvetica", sans-serif;
	font-weight: 400;
	font-style: italic;
	position: relative;
    z-index: 1;  
    color: white; 
	
}
.co-custom-header {
    position: relative;
	background-image: url(../images/corporate/mike-pexels.jpg); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}


.co-custom-header .overlay {
    position: absolute;  
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);  
}

.logo-img {
	max-width: 200px; 
	height: auto;
}

.coolvetica-ex {
  font-family: "coolvetica", sans-serif;
  font-weight: 600;
  font-size: large;
  font-style: italic;
}

.parabolica-ex {
  font-family: "parabolica", sans-serif;
  font-size: large;
}

.img-padding {
  padding-bottom: 3em;
  padding-top: 3em;
}

.spaces-text {
  margin-top: 3em;
  margin-bottom: 2em;
}


/* Button color*/
.custom-yellow {
	background-color: #ffde21 !important;
	color: #000; 
	border-color: #ffde21 !important; 
	padding: 12px 24px;
	border-radius: 12px;
  }
  .custom-yellow:hover {
	background-color: #e6c800 !important;
	border-color: #e6c800 !important;
  }

 .custom-green {
 	background-color: #143109 !important;
 	color: #ffffff; 
 	border-color: #143109 !important; 
 	padding: 12px 24px;
 	border-radius: 12px;
   }
   .custom-green:hover {
 	background-color: #2a521b !important;
 	border-color: #2a521b !important;
 	color: #ffffff; 
   }

/* The icons */
 .service-icon {
 	max-width: 80px;
 	max-height: 80px;
 	width: auto;
 	height: auto;
 	object-fit: contain;
 	display: block;
 	margin: 0 auto;
   }

/* Value Cards - ChatGPT helped */

.values-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* not sure why there is an error here */
  gap: 20px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.value-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
 /* The benefits*/
  .card-body {
	padding: 60px;
  }
  
  .container {
	padding-top: 10px;
	padding-bottom: 10px;
  }
  
  .row.g-5 {
	--bs-gutter-x: 3rem;
	--bs-gutter-y: 3rem;
  }

  .full-width-trusted-section {
	background-color: #143109; 
	padding: 80px 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
  }


.full-width-trusted-section-event {
 	background-color: #d0d6b3; 
 	padding: 80px 0;
 	border-top: 1px solid #e0e0e0;
 	border-bottom: 1px solid #e0e0e0;
   }
   
   .trusted-title {
 	font-weight: 700;
 	font-size: 1.75rem;
 	color: #ffffff;
   }
   
   .brand-logo {
 	max-height: 60px;
 	object-fit: contain;
 	filter: grayscale(100%); 
 	opacity: 0.8;
 	transition: all 0.3s ease;
   }
   
   .brand-logo:hover {
 	opacity: 1;
 	filter: grayscale(0%);
   }

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

 /*Image zoom in*/
   .img-zoom-hover {
 	transition: transform 0.3s ease;
   }
   
   .img-zoom-hover:hover {
 	transform: scale(1.05); 
   }

.value-card .icon {
   font-size: 40px;
   margin-bottom: 15px;
 }
 
 /* Target all date inputs */
 .input[type="date"] {
   font-family: "parabolica", sans-serif;
   font-size: 14px;
   padding: 8px 12px;
   border: 1px solid #ccc;
   border-radius: 6px;
   background-color: #FFFFFF;
}

 .value-card h3 {
   font-size: 1.4rem;
   margin-bottom: 10px;
   color: #333;
   outline: none;
   transition: all 0.2s ease-in-out;
 }
 
.custom-date-focus:focus {
  border-color: #f7c600 !important;
  box-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
  outline: none;
}

.custom-date-hover:hover {
  border-color: #e0b800 !important;
  cursor: pointer;
}
	 
 .value-card p {
   font-size: 0.95rem;
   color: #666;
   line-height: 1.5;
}

.cards-container {
  background-color: #aaae7f;
  padding: 20px;
  margin-bottom: 0px;
}

footer {
  margin-top: 0;
}

.progress-container {
  position: absolute;
  top: 30%; 
  left: 50%;
  transform: translateX(-50%);
  width: 50%; 
}

.progress {
  height: 20px; 
  border-radius: 10px; 
}

.progress-bar {
  height: 100%; 
  border-radius: 10px; 
}

/* carousel */
.my-carousel .carousel-inner {
  max-height: 400px; 
}

.my-carousel .carousel-item img {
  object-fit: cover;
  height: 500px; 
}

  .tag {
    display: inline-block;
    padding: 0.4em 0.8em;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.6em;
  }

 .green-tag-individual { 
	 background-color: #d0d6b3; 
	 color: #143109;
}

 .yellow-tag-team { 
	 background-color: #ffde21; 
	 color: #143109;
}