@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.back-to-top {
  display:none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.back-to-top:hover {
  transform: translateY(-3px);
	text-decoration:none;
}


body {
 font-family: "Aleo", serif;
  background-color: #ffffff;
  color: #1f2d3d;
  line-height: 1.5;
  font-size:16px;
}
/* color palette extracted from screenshots */
:root {
  --primary-orange: #dc5449;
  --primary-yellow: #fbbf42;
  --dark-blue: #1f2d3d;
  --sky-blue: #e3f2fd;
  --light-bg: #f8f9fc;
  --text-dark: #1f2d3d;
  --text-gray: #1f2d3d;
  --army-green: #848d36;
  --border-light: #eaeef2;
}
a {
  text-decoration: none;
  color: var(--primary-orange);
	transition: 0.5s;
}

a:hover{
	text-decoration:underline;
	transition: 0.5s;
}
/* navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  padding: 0.8rem 0;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--dark-blue) !important;
  letter-spacing: -0.02em;
}
.navbar-brand i {
  color: var(--primary-orange);
  font-size: 2rem;
  margin-right: 6px;
}
.navbar .nav-link {
  font-weight: 600;
  color: var(--dark-blue) !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.navbar .nav-link:hover {
  color: var(--primary-orange) !important;
}

.btn:hover{
	text-decoration:none;
}

.btn-green {
  background-color: var(--army-green);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: none;
  transition: 0.2s;
}
.btn-green:hover {
  background-color: #d94410;
  color:#ffffff;
  transform: translateY(-2px);
}
/* hero section (now without countdown) */
.hero {
  background: linear-gradient( rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45) ), url('../img/hero-img.jpg') top/cover no-repeat;
  padding: 5rem 0 6rem;
  color: white;
}
.hero-sub {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-yellow);
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 4800;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0.5rem 0 1rem;
  font-family: "Luckiest Guy", cursive;
  font-style: normal;
}
.hero-title span {
  color: var(--primary-yellow);
  display: block;
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 3px;
}
.btn-hero {
  background-color: var(--primary-orange);
  color: #ffffff;
  font-weight: 800;
  padding: 15px 45px;
  border-radius: 40px;
  text-transform: uppercase;
  font-size: 1.1rem;
  border: none;
  margin: 1.5rem 0 0;
}
.btn-hero:hover {
  background-color: #f2b100;
  color: #1a2532;
}

.info-chip{
	background: rgba(223, 154, 24, 0.5);
	color: #ffffff;
	font-family: "Luckiest Guy", cursive;
	font-size: 24px;
	line-height: 1.2;
	display:block;
}
.info-chip i{
	color: var(--primary-orange);
	font-size: 20px;
	vertical-align: middle;
}


.info-chip .sub{
	font-size: 18px;
	font-family: "Aleo", serif;
}

.subhead-section {
  background-color: var(--primary-yellow);
  padding: 2.5rem 0;
  text-align: left;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading .pre-title,
.pre-title{
  color: var(--primary-orange);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 3px;
}
.section-heading .pre-title i{
  color: var(--primary-orange);
  font-size: 1.5rem;
  width: 2.3rem;
}

.section-heading h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-blue);
  text-transform: uppercase;
}
.section-heading h2 span {
  color: var(--primary-orange);
}
.section-heading p {
  color: var(--text-gray);
  max-width: 650px;
  margin: 1rem auto 0;
}

/* cards */
.camp-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 35px -8px rgba(0,40,60,0.1);
  border: 1px solid var(--border-light);
  transition: 0.2s;
  height: 100%;
  color:#ffffff;
}

.b-y{
	background: var(--primary-yellow);
}

.b-o{
	background: var(--primary-orange);
}

.b-g{
	background: var(--army-green);
}

.camp-card:hover {
  transform: translateY(-6px);
}
.camp-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.camp-card-body {
  padding: 2rem 1.5rem;
}

.camp-title {
  font-weight: 800;
  font-size: 2rem;
  color: #ffffff;
  margin: 0.5rem 0 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
}
.benefits-list li {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefits-list li i {
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-card {
  background: rgba(223, 154, 24, 0.5);
  border-radius: 40px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  height: 100%;
  color:#ffffff
}
.pricing-card h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
}
.price {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  font-family: "Luckiest Guy", cursive;
}
.price small {
  font-size: 1.2rem;
  color: #6a7b8c;
}
.date-badge {
  background: #fef1e6;
  color: var(--primary-orange);
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  display: inline-block;
  margin: 1rem 0;
}
.btn-more { 
  background: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  color: white;
  font-weight: 700;
  border-radius: 40px;
  padding: 10px 32px;
  margin-top: 1.2rem;
  transition: 0.2s;
}
.btn-more:hover {
 background: none;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.testimonial-block {
  background: var(--light-bg);
  border-radius: 80px 20px 80px 20px;
  padding: 3rem;
  border: 2px solid var(--border-light);
}
.quote-mark {
  font-size: 6rem;
  color: var(--primary-orange);
  opacity: 0.2;
  line-height: 0.8;
}
.testimonial-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark-blue);
  margin: 1rem 0;
}
.author {
  font-weight: 700;
  color: var(--primary-orange);
}

.blog-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}
.blog-card img {
  width: 180px;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.8rem;
}
.blog-card h5 {
  font-weight: 800;
  color: var(--dark-blue);
  font-size: 1.4rem;
}

footer {
  background: var(--dark-blue);
  color: #b0c4d9;
  padding: 2rem 0;
  border-top: 6px solid var(--primary-orange);
}

.main-nav{
	width:100%;
}

.activity-tag {
  background-color: #ededed;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  font-size:20px;
}

.activity-tag:hover {
  transform: translateY(-3px);
}

.activity-tag i{
	color: var(--primary-orange);
}

@media(min-width:768px) {
	
	
	}

@media(min-width:992px) {

	body {
		font-size:18px;
	}

.info-chip{
	font-size:40px;
	display:inline-block;
	}
	
.info-chip i{
	font-size:28px;
	}
	
.main-nav{
	width:auto;
}	
	
.benefits-list li {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.benefits-list i {
  color: var(--primary-orange);
  font-size: 1.5rem;
  width: 2.2rem;
}
	
}
	
@media(min-width:1200px) {
	
	}
