| Linux premium201.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 Path : /home/burnskfl/clearskytreecare.com/ |
| Current File : /home/burnskfl/clearskytreecare.com/index.php |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Explore Nature 2026</title>
<style>
:root{
--bg:#071a12;
--card:#0e2a1f;
--accent:#1db954;
--accent-soft:#34d399;
--text:#e6fff5;
--muted:#9be3c7;
}
*{box-sizing:border-box}
body{
margin:0;
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(120deg,#071a12,#0e2a1f);
color:var(--text);
}
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;
background:rgba(7,26,18,0.8);
backdrop-filter: blur(8px);
border-bottom:1px solid rgba(29,185,84,0.2);
}
nav a{
color:var(--muted);
margin-left:20px;
text-decoration:none;
transition:0.3s;
}
nav a:hover{color:var(--accent)}
.hero{
padding:120px 50px;
text-align:center;
}
.hero h2{
font-size:48px;
margin-bottom:10px;
}
.hero p{
max-width:600px;
margin:auto;
color:var(--muted);
}
.btn{
margin-top:20px;
padding:12px 25px;
background:var(--accent);
border:none;
color:white;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}
.btn:hover{
background:var(--accent-soft);
}
.section{
padding:70px 50px;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}
.card{
background:var(--card);
padding:25px;
border-radius:14px;
border:1px solid rgba(29,185,84,0.2);
transition:0.3s;
}
.card:hover{
transform:translateY(-6px);
border-color:var(--accent);
}
.card h3{margin-top:0}
.footer{
text-align:center;
padding:30px;
border-top:1px solid rgba(29,185,84,0.2);
color:var(--muted);
}
select{
padding:10px;
border-radius:8px;
border:none;
background:#0e2a1f;
color:var(--text);
}
</style>
</head>
<body>
<header>
<h1>Nature Travel 2026</h1>
<nav>
<a href="#">Home</a>
<a href="#destinations">Destinations</a>
<a href="#experience">Experience</a>
</nav>
</header>
<section class="hero">
<h2>Discover Natural Wonders</h2>
<p>Explore breathtaking destinations, immersive landscapes, and eco-friendly travel experiences designed for the future of tourism.</p>
<button class="btn" onclick="go('destinations')">Start Exploring</button>
</section>
<section id="destinations" class="section">
<h2>Top Destinations</h2>
<div class="grid" id="list">
<div class="card" data-type="mountain">
<h3>Green Valley Peaks</h3>
<p>Fresh mountain air, scenic hiking trails, and panoramic views.</p>
</div>
<div class="card" data-type="beach">
<h3>Emerald Coastline</h3>
<p>Crystal-clear waters and peaceful coastal relaxation.</p>
</div>
<div class="card" data-type="forest">
<h3>Deep Forest Retreat</h3>
<p>Reconnect with nature in lush green forests.</p>
</div>
</div>
<br>
<label>Filter Destination:</label>
<select onchange="filter(this.value)">
<option value="all">All</option>
<option value="mountain">Mountain</option>
<option value="beach">Beach</option>
<option value="forest">Forest</option>
</select>
</section>
<section id="experience" class="section">
<h2>Travel Experience</h2>
<div class="grid">
<div class="card">
<h3>Eco Tourism</h3>
<p>Sustainable travel that protects and preserves nature.</p>
</div>
<div class="card">
<h3>Adventure Trips</h3>
<p>Exciting journeys filled with exploration and thrill.</p>
</div>
<div class="card">
<h3>Relaxation</h3>
<p>Peaceful environments for rest and rejuvenation.</p>
</div>
</div>
</section>
<div class="footer">
<p>© 2026 Nature Travel. All rights reserved.</p>
</div>
<script>
function go(id){
document.getElementById(id).scrollIntoView({behavior:'smooth'});
}
function filter(type){
const cards = document.querySelectorAll('.card[data-type]');
cards.forEach(card=>{
if(type==='all' || card.dataset.type===type){
card.style.display='block';
} else {
card.style.display='none';
}
});
}
</script>
</body>
</html>