@charset "utf-8";
/* CSS Document */

* {
	text-decoration: none;
	margin: 0px;
}

body {
	background-image:url("Emerald-Park-rollercoster-banner-2-16x9-1-Picsart-AiImageEnhancer.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

@font-face {
	font-family: 'grotesk';
	src: 
	url("Demo_Fonts/Fontspring-DEMO-breulgroteska-bold.otf") format('woff'),
}

@font-face {
	font-family: 'regulargrotesk';
	src: 
	url("Demo_Fonts/Fontspring-DEMO-breulgroteska-black.otf") format('woff')
}

.navbar {
	background-color: white;
    font-family: "grotesk";
	padding-right: 15px;
	padding-left: 15px;
}

.navdiv {
	align-items: center;
	justify-content: space-between;
}

li {
	list-style: none;
	display: inline-block;
	padding-top: 30px;
	padding-bottom: 30px;

}

li a {
	color: black;
	font-size: 25px;
	font-weight: bold;
	margin-right: 40px;
}

ul {
	text-align: center;
}

.img1 {
	margin-left: 5px;
	margin-top: 15px;
	position: absolute;
}

.gradient {
	position: absolute;
	height: 822px;
	width: 1910px;
	background-image: linear-gradient(to top, lightgreen, transparent);

}


:root {
  --gd:  #1a4d2e;  
  --gm:  #216b38;   
  --gb:  #2e9e4a;  
  --gl:  #3cb54a;   
  --yellow: #f5c800;
  --red:    #d42020;
  --white:  #ffffff;
  --cream:  #f5f5f0;
  --card-shadow: 0 8px 32px rgba(0,0,0,.18);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Nunito Sans', sans-serif;
  background:var(--cream);
  overflow-x:hidden;
  color:#222;
}









.navbar {
  background:var(--gd);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 44px 0 170px;
  height:84px;          /* was 68px — now noticeably bigger */
  position:sticky; top:0; z-index:1000;
  box-shadow:0 3px 18px rgba(0,0,0,.35);
}




.logo-anchor {
  position:fixed; top:23px; left:22px; z-index:1002;
  display:flex; align-items:center;
}
.logo-disc {
  width:118px; height:118px; border-radius:50%;
  background:transparent;
  display:flex; align-items:center; justify-content:center;
  filter:drop-shadow(0 5px 16px rgba(0,0,0,.55));
  transition:transform .3s; cursor:default;
}
.logo-disc:hover { transform:scale(1.05); }

/* ── NAV LINKS ── */
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-links > li { position:relative; }
.nav-links > li > a {
  display:flex; align-items:center; gap:5px;
  color:white; text-decoration:none;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:16px;
  padding:10px 16px; border-radius:7px; transition:background .2s;
}
.nav-links > li > a:hover { background:rgba(255,255,255,.13); }
.nav-links > li > a svg { width:14px; height:14px; opacity:.7; }

.dropdown {
  display:none; position:absolute; top:calc(100% + 8px); left:0;
  background:white; border-radius:12px; min-width:210px;
  box-shadow:0 10px 36px rgba(0,0,0,.18); overflow:hidden; z-index:1100;
}
.nav-links > li:hover .dropdown { display:block; }
.dropdown a {
  display:block; padding:12px 22px;
  color:#1a2e1a; text-decoration:none;
  font-family:'Nunito',sans-serif; font-weight:600; font-size:14.5px;
  border-bottom:1px solid #f0f0f0; transition:background .15s,color .15s;
}
.dropdown a:last-child { border-bottom:none; }
.dropdown a:hover { background:var(--gl); color:white; }




.nav-right { display:flex; align-items:center; gap:10px; }
.nav-text-btn {
  display:flex; align-items:center; gap:6px;
  color:white; text-decoration:none;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:15px;
  padding:8px 12px; border-radius:7px; transition:background .2s; white-space:nowrap;
}
.nav-text-btn:hover { background:rgba(255,255,255,.13); }
.nav-text-btn svg { width:18px; height:18px; stroke:var(--yellow); }
.nav-icon-btn {
  background:none; border:none; color:white; cursor:pointer;
  padding:7px; border-radius:7px; transition:background .2s; display:flex; align-items:center;
}
.nav-icon-btn:hover { background:rgba(255,255,255,.13); }
.nav-icon-btn svg { width:22px; height:22px; }
.btn-book {
  background:var(--red); color:white; border:none; border-radius:9px;
  padding:12px 26px; font-family:'Nunito',sans-serif; font-weight:800; font-size:16px;
  cursor:pointer; transition:background .2s,transform .15s;
  text-decoration:none; display:inline-flex; align-items:center; white-space:nowrap;
}
.btn-book:hover { background:#b01a1a; transform:translateY(-1px); }







.hero {
  position:relative; width:100%;
  height:calc(100vh - 124px); min-height:560px; max-height:820px;
  overflow:hidden;
  /* dark-green gradient as the hero background colour */
  background:linear-gradient(160deg, #143d24 0%, #1e6335 40%, #164d2a 100%);
}
.hero-bg {
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.12) 0%, rgba(0,0,0,.04) 40%, rgba(20,60,34,.75) 100%),
    url('https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Emerald_Park_coaster.jpg/1280px-Emerald_Park_coaster.jpg')
    center/cover no-repeat;
  transform:scale(1);
}



.hero-arrows {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  display:flex; gap:14px; z-index:5;
}
.arrow-btn {
  background:rgba(255,255,255,.2); border:2px solid rgba(255,255,255,.5); color:white;
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; backdrop-filter:blur(6px); font-size:22px; transition:background .2s;
}
.arrow-btn:hover { background:rgba(255,255,255,.4); }






.hero-cards {
  position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  display:flex; gap:24px; padding-bottom:38px; z-index:10;
  opacity:1;
}




.hero-card {
  border-radius:22px; width:210px; height:155px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:11px;
  position:relative; overflow:hidden; cursor:default;
  box-shadow:0 8px 28px rgba(0,0,0,.35);
}

.hero-card-overlay { position:absolute; inset:0; }
.hero-card svg  { position:relative; z-index:2; color:white; width:38px; height:38px; }
.hero-card span {
  position:relative; z-index:2; color:white;
  font-family:'Nunito',sans-serif; font-weight:800; font-size:16px;
  text-align:center; text-shadow:0 1px 6px rgba(0,0,0,.4); line-height:1.3;
}
.card-orange .hero-card-overlay { background:linear-gradient(150deg,#c97820,#e09030); }
.card-teal   .hero-card-overlay { background:linear-gradient(150deg,#17a88e,#28ccb5); }
.card-blue   .hero-card-overlay { background:linear-gradient(150deg,#1c68b0,#2884d5); }
.card-red    .hero-card-overlay { background:linear-gradient(150deg,#b51c1c,#d43030); }







.hero-wave {
  display:block; line-height:0;

	
  background:linear-gradient(to bottom, #164d2a 0%, #1a5530 50%, #1e5e35 100%);
  margin-top:-2px;
}
.hero-wave svg { display:block; width:100%; height:110px; }






.tagline-section {
  text-align:center; padding:70px 24px 65px; background:white;
}
.tagline-section h2 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:48px;
  color:#1a4d2e; margin-bottom:18px; line-height:1.1;
}
.tagline-section p {
  font-size:18px; color:#4a4a4a; max-width:700px; margin:0 auto; line-height:1.75;
}





.explore-section {
  background:var(--cream); padding:16px 48px 80px;
}
.explore-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:26px; max-width:1380px; margin:0 auto;
}




.explore-card {
  border-radius:24px; overflow:hidden;
  box-shadow:var(--card-shadow); cursor:default;
  position:relative; height:300px; display:flex; align-items:flex-end;
  opacity:1; transform:none;
}

.ec-bg  { position:absolute; inset:0; }
.ec-shade {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(to top, rgba(0,0,0,.52) 0%, transparent 55%);
}
.bg-tan  { background:linear-gradient(145deg,#c9a050 0%,#8a6020 100%); }
.bg-gold { background:linear-gradient(145deg,#a07830 0%,#6a4e10 100%); }
.bg-teal { background:linear-gradient(145deg,#2dd0bc 0%,#18a090 100%); }
.bg-pink { background:linear-gradient(145deg,#cc3d9e 0%,#8c1870 100%); }

.explore-card-label { position:relative; z-index:2; padding:22px 26px; width:100%; }
.explore-card-label h3 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:22px;
  color:white; text-shadow:0 2px 8px rgba(0,0,0,.3); line-height:1.25;
}
.explore-card-label p {
  font-size:14px; color:rgba(255,255,255,.88); font-weight:600;
  margin-top:5px; text-shadow:0 1px 5px rgba(0,0,0,.25);
}







.stats-banner {
  background:linear-gradient(135deg, #1a4d2e 0%, #2a7a40 50%, #1a4d2e 100%);
  padding:56px 48px;
}
.stats-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:20px; max-width:1200px; margin:0 auto; text-align:center;
}
.stat-item { padding:24px 16px; }
.stat-num {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:56px;
  color:var(--yellow); line-height:1;
}
.stat-unit { font-size:28px; color:var(--yellow); font-weight:900; }
.stat-label {
  font-family:'Nunito',sans-serif; font-weight:700; font-size:16px;
  color:rgba(255,255,255,.85); margin-top:8px;
  text-transform:uppercase; letter-spacing:.5px;
}






.highlights {
  background:white; padding:80px 48px;
}
.highlights-inner { max-width:1300px; margin:0 auto; }
.section-label {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:13px;
  letter-spacing:2.5px; text-transform:uppercase; color:var(--gb); margin-bottom:12px;
}
.section-title {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:40px;
  color:#1a2e1a; margin-bottom:14px; line-height:1.15;
}
.section-sub { font-size:17px; color:#555; max-width:560px; line-height:1.7; margin-bottom:48px; }

.highlights-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.highlight-card {
  border-radius:20px; overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.1);
  transition:transform .3s, box-shadow .3s;
}
.highlight-card:hover { transform:translateY(-6px); box-shadow:0 14px 36px rgba(0,0,0,.16); }
.hc-image {
  height:200px; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.hc-icon { font-size:72px; line-height:1; }
.hc-body { padding:24px; background:white; }
.hc-tag {
  display:inline-block; background:var(--cream); color:var(--gd);
  font-family:'Nunito',sans-serif; font-weight:800; font-size:11px;
  letter-spacing:1.5px; text-transform:uppercase; padding:4px 10px;
  border-radius:20px; margin-bottom:10px;
}
.hc-body h3 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:20px;
  color:#1a2e1a; margin-bottom:8px;
}
.hc-body p { font-size:14.5px; color:#555; line-height:1.65; }





.plan-section {
  background:var(--cream); padding:80px 48px;
}
.plan-inner { max-width:1300px; margin:0 auto; }
.plan-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.plan-text .section-title { font-size:38px; }
.timeline { margin-top:36px; display:flex; flex-direction:column; gap:0; }
.tl-item { display:flex; gap:20px; position:relative; padding-bottom:28px; }
.tl-item:last-child { padding-bottom:0; }
.tl-left { display:flex; flex-direction:column; align-items:center; }
.tl-dot {
  width:42px; height:42px; border-radius:50%;
  background:var(--gb); display:flex; align-items:center; justify-content:center;
  flex-shrink:0; box-shadow:0 4px 12px rgba(46,158,74,.35);
}
.tl-dot svg { width:20px; height:20px; color:white; }
.tl-line { width:2px; flex:1; background:rgba(46,158,74,.25); margin-top:4px; }
.tl-item:last-child .tl-line { display:none; }
.tl-content { padding-top:8px; }
.tl-time {
  font-family:'Nunito',sans-serif; font-weight:800; font-size:12px;
  letter-spacing:1.5px; text-transform:uppercase; color:var(--gb); margin-bottom:4px;
}
.tl-content h4 {
  font-family:'Nunito',sans-serif; font-weight:800; font-size:17px; color:#1a2e1a; margin-bottom:4px;
}
.tl-content p { font-size:14px; color:#666; line-height:1.6; }

.plan-visual {
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.pv-card {
  border-radius:18px; padding:28px 22px;
  display:flex; flex-direction:column; gap:10px;
  box-shadow:0 4px 20px rgba(0,0,0,.1);
}
.pv-icon { font-size:36px; }
.pv-card h4 { font-family:'Nunito',sans-serif; font-weight:800; font-size:17px; }
.pv-card p  { font-size:13.5px; color:#555; line-height:1.55; }
.pvc-green  { background:linear-gradient(135deg,#e8f7eb,#d4f0da); }
.pvc-blue   { background:linear-gradient(135deg,#e8f0fb,#d4e4f7); }
.pvc-yellow { background:linear-gradient(135deg,#fdf7e0,#f9edbb); }
.pvc-pink   { background:linear-gradient(135deg,#fce8f5,#f7d0ec); }




.events-section {
  background:linear-gradient(135deg, #1a3d28 0%, #1e5232 100%);
  padding:80px 48px;
}
.events-inner { max-width:1300px; margin:0 auto; }
.events-inner .section-label { color:var(--yellow); }
.events-inner .section-title { color:white; }
.events-inner .section-sub   { color:rgba(255,255,255,.75); }
.events-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.event-card {
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  border-radius:18px; overflow:hidden;
  transition:background .25s, transform .25s;
}
.event-card:hover { background:rgba(255,255,255,.14); transform:translateY(-4px); }
.event-header {
  padding:28px 26px 20px;
  display:flex; align-items:flex-start; justify-content:space-between;
}
.event-date-badge {
  background:var(--yellow); border-radius:12px;
  padding:8px 14px; text-align:center;
  font-family:'Nunito',sans-serif; font-weight:900;
}
.event-date-badge .day  { font-size:26px; color:#1a2e1a; line-height:1; display:block; }
.event-date-badge .mon  { font-size:12px; color:#1a2e1a; font-weight:800; text-transform:uppercase; display:block; }
.event-icon { font-size:44px; }
.event-body { padding:0 26px 28px; }
.event-body h3 { font-family:'Nunito',sans-serif; font-weight:900; font-size:19px; color:white; margin-bottom:8px; }
.event-body p  { font-size:14px; color:rgba(255,255,255,.72); line-height:1.65; }
.event-tag {
  display:inline-block; margin-top:14px;
  background:rgba(255,255,255,.15); color:white;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:12px;
  padding:5px 12px; border-radius:20px; letter-spacing:.5px;
}




.cta-section {
  background:white; padding:90px 48px;
}
.cta-inner {
  max-width:1300px; margin:0 auto;
  display:grid; grid-template-columns:1.1fr 1fr; gap:70px; align-items:center;
}
.cta-content .section-title { font-size:42px; }
.cta-content .section-sub { margin-bottom:36px; }
.cta-perks { display:flex; flex-direction:column; gap:16px; margin-bottom:38px; }
.perk-row { display:flex; align-items:center; gap:14px; }
.perk-icon {
  width:44px; height:44px; border-radius:12px;
  background:linear-gradient(135deg,#e8f7eb,#c8efd0);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.perk-icon svg { width:22px; height:22px; stroke:var(--gd); }
.perk-text h4 { font-family:'Nunito',sans-serif; font-weight:800; font-size:16px; color:#1a2e1a; }
.perk-text p  { font-size:13.5px; color:#666; margin-top:1px; }
.cta-btns { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary {
  background:var(--gd); color:white; border:none; border-radius:10px;
  padding:14px 30px; font-family:'Nunito',sans-serif; font-weight:800; font-size:16px;
  cursor:pointer; text-decoration:none; display:inline-flex; align-items:center;
  transition:background .2s, transform .15s;
}
.btn-primary:hover { background:#123a20; transform:translateY(-2px); }
.btn-secondary {
  background:transparent; color:var(--gd); border:2px solid var(--gd); border-radius:10px;
  padding:14px 28px; font-family:'Nunito',sans-serif; font-weight:800; font-size:16px;
  cursor:pointer; text-decoration:none; display:inline-flex; align-items:center;
  transition:all .2s;
}
.btn-secondary:hover { background:var(--gd); color:white; }

.membership-card {
  background:linear-gradient(145deg, #1e5232 0%, #2a7a45 50%, #1a4d2e 100%);
  border-radius:28px; padding:42px 36px;
  box-shadow:0 16px 48px rgba(30,82,50,.3);
  position:relative; overflow:hidden;
}
.membership-card::before {
  content:''; position:absolute;
  width:260px; height:260px; border-radius:50%;
  background:rgba(255,255,255,.05);
  top:-80px; right:-80px;
}
.mc-badge {
  background:var(--yellow); color:#1a2e1a;
  font-family:'Nunito',sans-serif; font-weight:900; font-size:13px;
  letter-spacing:1.5px; text-transform:uppercase;
  padding:6px 16px; border-radius:20px;
  display:inline-block; margin-bottom:22px;
}
.mc-title {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:34px; color:white;
  margin-bottom:6px; line-height:1.1;
}
.mc-sub { font-size:16px; color:rgba(255,255,255,.75); margin-bottom:28px; }
.mc-price {
  margin-bottom:28px;
}
.mc-price .amount {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:54px;
  color:var(--yellow); line-height:1;
}
.mc-price .period { font-size:16px; color:rgba(255,255,255,.65); margin-left:6px; }
.mc-features { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.mc-feature {
  display:flex; align-items:center; gap:10px;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:15px; color:white;
}
.mc-feature svg { width:20px; height:20px; stroke:var(--yellow); flex-shrink:0; }
.mc-btn {
  width:100%; background:var(--yellow); color:#1a2e1a; border:none; border-radius:10px;
  padding:15px; font-family:'Nunito',sans-serif; font-weight:900; font-size:17px;
  cursor:pointer; transition:filter .2s, transform .15s;
  text-align:center; display:block; text-decoration:none;
}
.mc-btn:hover { filter:brightness(1.08); transform:translateY(-2px); }





.testimonials {
  background:var(--cream); padding:80px 48px;
}
.testimonials-inner { max-width:1300px; margin:0 auto; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.testi-card {
  background:white; border-radius:20px; padding:30px 26px;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}
.testi-stars { color:var(--yellow); font-size:18px; letter-spacing:2px; margin-bottom:14px; }
.testi-quote {
  font-size:15.5px; color:#333; line-height:1.7; font-style:italic; margin-bottom:20px;
}
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Nunito',sans-serif; font-weight:900; font-size:17px; color:white;
}
.ta-green  { background:linear-gradient(135deg,#2a9e45,#1a6b2f); }
.ta-blue   { background:linear-gradient(135deg,#2a6db0,#1a4880); }
.ta-orange { background:linear-gradient(135deg,#d07020,#a04810); }
.testi-name { font-family:'Nunito',sans-serif; font-weight:800; font-size:15px; color:#1a2e1a; }
.testi-loc  { font-size:13px; color:#888; }

.faq-section {
  background:var(--cream); padding:88px 48px;
  scroll-margin-top:84px;
}
.faq-inner { max-width:900px; margin:0 auto; }

.faq-list { display:flex; flex-direction:column; gap:14px; margin-top:0; }
.faq-item {
  background:white; border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.07);
  overflow:hidden;
}
.faq-question {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 28px; text-align:left;
  font-family:'Nunito',sans-serif; font-weight:800; font-size:17px; color:#1a2e1a;
}
.faq-question:hover { background:rgba(0,0,0,.02); }
.faq-question svg {
  width:20px; height:20px; stroke:var(--gb); flex-shrink:0;
}
.faq-item.open .faq-question svg { transform:rotate(180deg); }
.faq-answer {
  display:none;
  padding:0 28px 22px;
  font-size:16px; color:#555; line-height:1.75;
}
.faq-item.open .faq-answer {
  display:block;
}



.location-section {
  background:linear-gradient(135deg,#1a3d28 0%,#1e5232 100%); padding:80px 48px;
}
.location-inner {
  max-width:1300px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.location-info .section-title { color:white; }
.location-info .section-label { color:var(--yellow); }
.location-info .section-sub   { color:rgba(255,255,255,.75); margin-bottom:32px; }
.loc-detail-row {
  display:flex; align-items:center; gap:14px;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:16px; color:white;
  margin-bottom:16px;
}
.loc-detail-row svg { width:22px; height:22px; stroke:var(--yellow); flex-shrink:0; }
.map-placeholder {
  background:rgba(255,255,255,.08); border:2px solid rgba(255,255,255,.15);
  border-radius:22px; height:340px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
}
.map-placeholder svg { width:56px; height:56px; stroke:rgba(255,255,255,.4); }
.map-placeholder p { font-size:15px; color:rgba(255,255,255,.5); font-family:'Nunito',sans-serif; font-weight:700; }





.footer {
  background:#0f2d1c; color:rgba(255,255,255,.6);
  padding:52px 48px 28px;
  font-family:'Nunito Sans',sans-serif; font-size:14px;
}
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px; max-width:1300px; margin:0 auto 40px;
}
.footer-brand p { color:rgba(255,255,255,.55); font-size:14px; line-height:1.7; margin-top:14px; max-width:280px; }
.footer-col h4 {
  font-family:'Nunito',sans-serif; font-weight:800; font-size:15px;
  color:white; margin-bottom:16px; letter-spacing:.3px;
}
.footer-col a {
  display:block; color:rgba(255,255,255,.55); text-decoration:none; margin-bottom:10px;
  font-size:14px; transition:color .2s;
}
.footer-col a:hover { color:var(--gl); }
.footer-socials { display:flex; gap:12px; margin-top:20px; }
.footer-socials a {
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; background:rgba(255,255,255,.08);
  border-radius:50%; color:white; transition:background .2s;
}
.footer-socials a:hover { background:var(--gb); }
.footer-socials svg { width:17px; height:17px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:22px; max-width:1300px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px; color:rgba(255,255,255,.4);
}
.footer-bottom a { color:rgba(255,255,255,.4); text-decoration:none; transition:color .2s; }
.footer-bottom a:hover { color:var(--gl); }














:root {
  --gd:  #1a4d2e;
  --gm:  #216b38;
  --gb:  #2e9e4a;
  --gl:  #3cb54a;
  --yellow: #f5c800;
  --red:    #d42020;
  --white:  #ffffff;
  --cream:  #f5f5f0;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Nunito Sans', sans-serif;
  background:var(--cream);
  overflow-x:hidden;
  color:#222;
}



.top-bar {
  background:var(--yellow);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 36px; height:40px;
  font-family:'Nunito',sans-serif; font-size:13.5px; font-weight:700; color:#1a2e1a;
  position:relative; z-index:1001;
}
.top-bar-left { display:flex; align-items:center; gap:8px; }
.top-bar-left svg { width:16px; height:16px; }
.top-bar-right { display:flex; align-items:center; gap:30px; }
.top-bar-right a { color:#1a2e1a; text-decoration:none; font-weight:700; transition:opacity .2s; }
.top-bar-right a:hover { opacity:.55; }



.navbar {
  background:var(--gd);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 44px 0 170px;
  height:84px;
  position:sticky; top:0; z-index:1000;
  box-shadow:0 3px 18px rgba(0,0,0,.35);
}



.logo-anchor {
  position:fixed; left:22px; z-index:1002;
  display:flex; align-items:center;
}
.logo-disc {
  width:118px; height:118px; border-radius:50%;
  background:transparent;
  display:flex; align-items:center; justify-content:center;
  filter:drop-shadow(0 5px 16px rgba(0,0,0,.55));
  transition:transform .3s; cursor:pointer;
}
.logo-disc:hover { transform:scale(1.05); }

.nav-links { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-links > li { position:relative; }
.nav-links > li > a {
  display:flex; align-items:center; gap:5px;
  color:white; text-decoration:none;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:16px;
  padding:10px 16px; border-radius:7px; transition:background .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background:rgba(255,255,255,.13); }
.nav-links > li > a svg { width:14px; height:14px; opacity:.7; }

.dropdown {
  display:none; position:absolute; top:calc(100% + 8px); left:0;
  background:white; border-radius:12px; min-width:210px;
  box-shadow:0 10px 36px rgba(0,0,0,.18); overflow:hidden; z-index:1100;
}
.nav-links > li:hover .dropdown { display:block; }
.dropdown a {
  display:block; padding:12px 22px;
  color:#1a2e1a; text-decoration:none;
  font-family:'Nunito',sans-serif; font-weight:600; font-size:14.5px;
  border-bottom:1px solid #f0f0f0; transition:background .15s,color .15s;
}
.dropdown a:last-child { border-bottom:none; }
.dropdown a:hover { background:var(--gl); color:white; }

.nav-right { display:flex; align-items:center; gap:10px; }
.nav-text-btn {
  display:flex; align-items:center; gap:6px;
  color:white; text-decoration:none;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:15px;
  padding:8px 12px; border-radius:7px; transition:background .2s; white-space:nowrap;
}
.nav-text-btn:hover { background:rgba(255,255,255,.13); }
.nav-text-btn svg { width:18px; height:18px; stroke:var(--yellow); }
.nav-icon-btn {
  background:none; border:none; color:white; cursor:pointer;
  padding:7px; border-radius:7px; transition:background .2s; display:flex; align-items:center;
}
.nav-icon-btn:hover { background:rgba(255,255,255,.13); }
.nav-icon-btn svg { width:22px; height:22px; }
.btn-book {
  background:var(--red); color:white; border:none; border-radius:9px;
  padding:12px 26px; font-family:'Nunito',sans-serif; font-weight:800; font-size:16px;
  cursor:pointer; transition:background .2s,transform .15s;
  text-decoration:none; display:inline-flex; align-items:center; white-space:nowrap;
}
.btn-book:hover { background:#b01a1a; transform:translateY(-1px); }




.page-hero {
  position:relative; width:100%; height:420px; overflow:hidden;
  background:linear-gradient(145deg, #0e3320 0%, #1a4d2e 40%, #2a7a45 100%);
  display:flex; align-items:center; justify-content:center;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:
    url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
  opacity:.4;
}
/* Decorative accent shapes */
.page-hero::after {
  content:'';
  position:absolute; bottom:-60px; right:-60px;
  width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(245,200,0,.12) 0%, transparent 70%);
  pointer-events:none;
}
.page-hero-content {
  position:relative; z-index:2; text-align:center; max-width:780px; padding:0 24px;
}
.breadcrumb {
  display:flex; align-items:center; justify-content:center; gap:8px;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:13px;
  color:rgba(255,255,255,.6); margin-bottom:18px; letter-spacing:.5px;
}
.breadcrumb a { color:rgba(255,255,255,.6); text-decoration:none; transition:color .2s; }
.breadcrumb a:hover { color:var(--yellow); }
.breadcrumb svg { width:14px; height:14px; }
.page-hero h1 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:64px;
  color:white; margin-bottom:16px; line-height:1;
  text-shadow:0 4px 20px rgba(0,0,0,.3);
}
.page-hero p {
  font-size:19px; color:rgba(255,255,255,.85); line-height:1.6;
  text-shadow:0 2px 8px rgba(0,0,0,.2);
}


.hero-anchors {
  display:flex; align-items:center; justify-content:center; gap:12px;
  margin-top:28px; flex-wrap:wrap;
}
.hero-anchor-pill {
  background:rgba(255,255,255,.15); color:white; border:1.5px solid rgba(255,255,255,.3);
  border-radius:50px; padding:9px 22px;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:14px;
  text-decoration:none; display:flex; align-items:center; gap:7px;
  transition:background .2s, border-color .2s;
  backdrop-filter:blur(4px);
}
.hero-anchor-pill:hover { background:rgba(255,255,255,.28); border-color:rgba(255,255,255,.6); }
.hero-anchor-pill svg { width:15px; height:15px; }



.steps-strip {
  background:var(--yellow);
  padding:28px 48px;
}
.steps-inner {
  max-width:1300px; margin:0 auto;
  display:flex; align-items:center; justify-content:center; gap:0;
}
.step-item {
  display:flex; align-items:center; gap:14px;
  flex:1;
}
.step-num {
  width:42px; height:42px; border-radius:50%;
  background:#1a2e1a; color:var(--yellow);
  font-family:'Nunito',sans-serif; font-weight:900; font-size:18px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.step-text strong {
  display:block; font-family:'Nunito',sans-serif; font-weight:900;
  font-size:15px; color:#1a2e1a;
}
.step-text span { font-size:13px; color:#2e4a2e; font-weight:600; }
.step-divider {
  width:40px; height:2px; background:rgba(0,0,0,.15);
  flex-shrink:0; margin:0 8px;
}




.section-label {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:13px;
  letter-spacing:2.5px; text-transform:uppercase; color:var(--gb); margin-bottom:10px;
}
.section-title {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:42px;
  color:#1a2e1a; margin-bottom:14px; line-height:1.15;
}
.section-desc { font-size:17px; color:#555; line-height:1.7; }
.section-intro {
  text-align:center; max-width:680px; margin:0 auto 52px;
}



.ticket-section {
  background:white; padding:88px 48px;
  scroll-margin-top:84px;
}
.ticket-inner { max-width:1300px; margin:0 auto; }

.ticket-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
  margin-top:0;
}
.ticket-card {
  border-radius:24px; overflow:hidden;
  box-shadow:0 6px 28px rgba(0,0,0,.1);
  border:2px solid transparent;
  transition:transform .3s, box-shadow .3s, border-color .3s;
  display:flex; flex-direction:column;
  position:relative;
}
.ticket-card:hover {
  transform:translateY(-6px);
  box-shadow:0 16px 44px rgba(0,0,0,.16);
}
.ticket-card.featured {
  border-color:var(--yellow);
  box-shadow:0 8px 36px rgba(245,200,0,.25);
}
.ticket-card.featured:hover {
  box-shadow:0 20px 52px rgba(245,200,0,.35);
}
.ticket-badge-pop {
  position:absolute; top:20px; right:20px;
  background:var(--red); color:white;
  font-family:'Nunito',sans-serif; font-weight:900; font-size:11px;
  letter-spacing:1px; text-transform:uppercase;
  padding:5px 12px; border-radius:20px;
}
.ticket-header {
  padding:36px 32px 28px;
  display:flex; flex-direction:column; gap:10px;
}
.ticket-icon { font-size:44px; margin-bottom:4px; }
.ticket-header h3 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:26px; color:#1a2e1a;
}
.ticket-price {
  display:flex; align-items:baseline; gap:4px; margin-top:4px;
}
.ticket-price .amount {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:48px; color:var(--gd);
}
.ticket-price .currency {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:22px; color:var(--gd);
  margin-top:6px;
}
.ticket-price .per {
  font-size:14px; color:#888; font-weight:600; margin-left:2px;
}
.ticket-tagline {
  font-size:14px; color:#666; line-height:1.6;
}
.ticket-body {
  padding:0 32px 32px;
  flex:1; display:flex; flex-direction:column; gap:20px;
}
.ticket-features { list-style:none; display:flex; flex-direction:column; gap:10px; }
.ticket-features li {
  display:flex; align-items:center; gap:10px;
  font-size:15px; color:#444; font-weight:600;
}
.ticket-features li svg { width:18px; height:18px; color:var(--gb); flex-shrink:0; }
.ticket-features li.muted { color:#aaa; }
.ticket-features li.muted svg { color:#ccc; }
.ticket-cta {
  display:block; text-align:center;
  background:var(--gd); color:white; border:none; border-radius:12px;
  padding:15px; font-family:'Nunito',sans-serif; font-weight:900; font-size:16px;
  cursor:pointer; text-decoration:none; transition:background .2s, transform .15s;
  margin-top:auto;
}
.ticket-cta:hover { background:var(--gm); transform:translateY(-1px); }
.ticket-card.featured .ticket-cta {
  background:var(--yellow); color:#1a2e1a;
}
.ticket-card.featured .ticket-cta:hover { filter:brightness(1.08); }
.ticket-divider { height:1px; background:#f0f0f0; margin:0 32px; }



.plan-section {
  background:var(--cream); padding:88px 48px;
  scroll-margin-top:84px;
}
.plan-inner { max-width:1300px; margin:0 auto; }

.plan-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
}
.plan-card {
  background:white; border-radius:22px;
  box-shadow:0 4px 22px rgba(0,0,0,.09);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .3s, box-shadow .3s;
  opacity:0; transform:translateY(28px);
  transition:opacity .55s ease, transform .55s ease;
}
.plan-card.revealed { opacity:1; transform:translateY(0); }
.plan-card:hover { transform:translateY(-5px); box-shadow:0 14px 40px rgba(0,0,0,.14); }
.plan-card.revealed:hover { transform:translateY(-5px); }

.plan-card-header {
  height:180px; display:flex; align-items:center; justify-content:center;
  font-size:72px; position:relative; overflow:hidden;
}
.plan-card-header .pc-gradient {
  position:absolute; inset:0;
}
.plan-card-header .pc-emoji { position:relative; z-index:2; }

.plan-card-body { padding:30px 32px 36px; flex:1; }
.plan-card-body h3 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:24px;
  color:#1a2e1a; margin-bottom:12px;
}
.plan-card-body p {
  font-size:15.5px; color:#555; line-height:1.7; margin-bottom:20px;
}
.plan-info-list { list-style:none; display:flex; flex-direction:column; gap:9px; }
.plan-info-list li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14.5px; color:#444; font-weight:600; line-height:1.5;
}
.plan-info-list li svg { width:17px; height:17px; color:var(--gb); flex-shrink:0; margin-top:2px; }
.plan-card-link {
  display:inline-flex; align-items:center; gap:6px; margin-top:22px;
  color:var(--gd); text-decoration:none;
  font-family:'Nunito',sans-serif; font-weight:800; font-size:14.5px;
  transition:gap .2s;
}
.plan-card-link:hover { gap:10px; }
.plan-card-link svg { width:16px; height:16px; }




.getting-here-section {
  background:white; padding:88px 48px;
  scroll-margin-top:84px;
}
.getting-here-inner { max-width:1300px; margin:0 auto; }

.transport-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.transport-card {
  background:var(--cream); border-radius:20px;
  padding:32px 24px; text-align:center;
  box-shadow:0 3px 14px rgba(0,0,0,.07);
  transition:transform .3s, box-shadow .3s;
  opacity:0; transform:translateY(24px);
  transition:opacity .5s ease, transform .5s ease;
}
.transport-card.revealed { opacity:1; transform:translateY(0); }
.transport-card:hover { transform:translateY(-5px); box-shadow:0 10px 30px rgba(0,0,0,.12); }
.transport-card.revealed:hover { transform:translateY(-5px); }

.transport-icon { font-size:52px; margin-bottom:16px; display:block; }
.transport-card h4 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:18px;
  color:#1a2e1a; margin-bottom:10px;
}
.transport-card p {
  font-size:14px; color:#666; line-height:1.65;
}

.map-placeholder {
  margin-top:44px; border-radius:22px; overflow:hidden;
  background:linear-gradient(135deg, #1a4d2e 0%, #2a7a45 50%, #216b38 100%);
  height:300px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 28px rgba(0,0,0,.14);
  position:relative;
}
.map-placeholder::before {
  content:'';
  position:absolute; inset:0;
  background:url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.06)"/></svg>');
}
.map-inner { position:relative; z-index:2; text-align:center; }
.map-inner .map-pin { font-size:56px; display:block; margin-bottom:12px; }
.map-inner h3 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:26px; color:white;
  text-shadow:0 2px 10px rgba(0,0,0,.3); margin-bottom:6px;
}
.map-inner p { font-size:16px; color:rgba(255,255,255,.8); margin-bottom:20px; }
.map-btn {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--yellow); color:#1a2e1a;
  padding:13px 26px; border-radius:10px;
  font-family:'Nunito',sans-serif; font-weight:900; font-size:15px;
  text-decoration:none; transition:filter .2s, transform .15s;
}
.map-btn:hover { filter:brightness(1.08); transform:translateY(-2px); }
.map-btn svg { width:16px; height:16px; }




.faq-section {
  background:var(--cream); padding:88px 48px;
  scroll-margin-top:84px;
}
.faq-inner { max-width:900px; margin:0 auto; }

.faq-list { display:flex; flex-direction:column; gap:14px; margin-top:0; }
.faq-item {
  background:white; border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.07);
  overflow:hidden;
  opacity:0; transform:translateY(20px);
  transition:opacity .5s ease, transform .5s ease;
}
.faq-item.revealed { opacity:1; transform:translateY(0); }
.faq-question {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 28px; text-align:left;
  font-family:'Nunito',sans-serif; font-weight:800; font-size:17px; color:#1a2e1a;
  transition:background .2s;
}
.faq-question:hover { background:rgba(0,0,0,.02); }
.faq-question svg {
  width:20px; height:20px; stroke:var(--gb); flex-shrink:0;
  transition:transform .3s;
}
.faq-item.open .faq-question svg { transform:rotate(180deg); }
.faq-answer {
  max-height:0; overflow:hidden;
  transition:max-height .4s ease, padding .4s ease;
  padding:0 28px;
  font-size:16px; color:#555; line-height:1.75;
}
.faq-item.open .faq-answer {
  max-height:300px;
  padding:0 28px 22px;
}



.cta-banner {
  background:linear-gradient(135deg, #1a4d2e 0%, #2a7a45 50%, #1a4d2e 100%);
  padding:70px 48px; text-align:center;
}
.cta-banner-inner { max-width:760px; margin:0 auto; }
.cta-banner h2 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:44px;
  color:white; margin-bottom:16px; line-height:1.15;
}
.cta-banner p {
  font-size:18px; color:rgba(255,255,255,.8); line-height:1.7; margin-bottom:32px;
}
.cta-buttons { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.btn-primary {
  background:var(--yellow); color:#1a2e1a; border:none; border-radius:10px;
  padding:15px 32px; font-family:'Nunito',sans-serif; font-weight:900; font-size:17px;
  cursor:pointer; text-decoration:none; display:inline-flex; align-items:center;
  transition:filter .2s, transform .15s;
}
.btn-primary:hover { filter:brightness(1.1); transform:translateY(-2px); }
.btn-secondary {
  background:transparent; color:white; border:2px solid white; border-radius:10px;
  padding:15px 32px; font-family:'Nunito',sans-serif; font-weight:900; font-size:17px;
  cursor:pointer; text-decoration:none; display:inline-flex; align-items:center;
  transition:all .2s;
}
.btn-secondary:hover { background:white; color:var(--gd); }




.footer {
  background:#0f2d1c; color:rgba(255,255,255,.6);
  padding:52px 48px 28px;
  font-family:'Nunito Sans',sans-serif; font-size:14px;
}
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px; max-width:1300px; margin:0 auto 40px;
}
.footer-brand p { color:rgba(255,255,255,.55); font-size:14px; line-height:1.7; margin-top:14px; max-width:280px; }
.footer-col h4 {
  font-family:'Nunito',sans-serif; font-weight:800; font-size:15px;
  color:white; margin-bottom:16px; letter-spacing:.3px;
}
.footer-col a {
  display:block; color:rgba(255,255,255,.55); text-decoration:none; margin-bottom:10px;
  font-size:14px; transition:color .2s;
}
.footer-col a:hover { color:var(--gl); }
.footer-socials { display:flex; gap:12px; margin-top:20px; }
.footer-socials a {
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; background:rgba(255,255,255,.08);
  border-radius:50%; color:white; transition:background .2s;
}
.footer-socials a:hover { background:var(--gb); }
.footer-socials svg { width:17px; height:17px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:22px; max-width:1300px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px; color:rgba(255,255,255,.4);
}
.footer-bottom a { color:rgba(255,255,255,.4); text-decoration:none; transition:color .2s; }
.footer-bottom a:hover { color:var(--gl); }



/* What CSS is used for:
   CSS (Cascading Style Sheets) is used to define the visual presentation 
   of a document written in HTML. It handles the "look and feel" of a site, 
   including layout, colors, fonts, spacing, and responsiveness across 
   different device sizes. By separating content (HTML) from design (CSS), 
   it makes code cleaner and easier to maintain.

   Why a single linked stylesheet is best:
   1. Consistency: It ensures every page on your site follows the same 
      design rules, creating a unified user experience.
   2. Easier Maintenance: You only have to change a line of code in one 
      place to update the styling across the entire website.
   3. Faster Loading: Browsers cache the external CSS file after the first 
      page load, meaning subsequent pages load faster because the 
      styles don't need to be downloaded again.
   4. Cleaner HTML: It keeps your HTML files focused on structure and 
      content rather than being cluttered with inline styles. */




