| Current Path : /home/s/u/n/sunflowe/www/component/ |
| Current File : /home/s/u/n/sunflowe/www/component/mailto.html |
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sunflower Villa | Luxury Vacation Rental</title>
<style>
/* Reset & Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #fcfbf7;
color: #333;
line-height: 1.6;
}
/* Variables */
:root {
--primary: #f4b41a; /* Sunflower Yellow */
--dark: #143d30; /* Deep Nature Green */
--light: #f9f6f0;
}
/* Header & Navigation */
header {
background-color: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.logo {
font-weight: bold;
font-size: 24px;
color: var(--dark);
text-decoration: none;
}
.logo span {
color: var(--primary);
}
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}
.nav-links a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--primary);
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://unsplash.com') no-repeat center center/cover;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
padding: 20px;
}
.hero-content h1 {
font-size: 48px;
margin-bottom: 20px;
letter-spacing: 1px;
}
.hero-content p {
font-size: 20px;
margin-bottom: 30px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
background-color: var(--primary);
color: var(--dark);
padding: 12px 30px;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: transform 0.3s, background-color 0.3s;
}
.btn:hover {
transform: translateY(-3px);
background-color: #e0a107;
}
/* Features Section */
.features {
max-width: 1200px;
margin: 80px auto;
padding: 0 20px;
text-align: center;
}
.section-title {
font-size: 32px;
color: var(--dark);
margin-bottom: 40px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.card {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
border-top: 5px solid var(--primary);
}
.card h3 {
margin-bottom: 15px;
color: var(--dark);
}
/* Footer */
footer {
background-color: var(--dark);
color: white;
text-align: center;
padding: 40px 20px;
margin-top: 80px;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="nav-container">
<a href="#" class="logo">Sunflower<span>Villa</span></a>
<ul class="nav-links">
<li><a href="#">Beranda</a></li>
<li><a href="#">Fasilitas</a></li>
<li><a href="#">Galeri</a></li>
<li><a href="#">Kontak</a></li>
</ul>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Rasakan Kehangatan Liburan Mewah</h1>
<p>Temukan ketenangan dan kenyamanan eksklusif di Sunflower Villa, tempat terbaik untuk menciptakan momen tak terlupakan.</p>
<a href="#" class="btn">Pesan Sekarang</a>
</div>
</section>
<!-- Features Section -->
<section class="features">
<h2 class="section-title">Mengapa Memilih Kami?</h2>
<div class="grid">
<div class="card">
<h3>Lokasi Strategis</h3>
<p>Terletak di kawasan asri dengan pemandangan alam memukau namun tetap dekat dengan pusat wisata.</p>
</div>
<div class="card">
<h3>Fasilitas Premium</h3>
<p>Kolam renang pribadi, dapur modern standar koki, dan ruang santai terbuka yang luas.</p>
</div>
<div class="card">
<h3>Pelayanan 24/7</h3>
<p>Staf ramah dan profesional yang siap melayani seluruh kebutuhan liburan Anda kapan saja.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2026 sunflowervilla.com. Hak Cipta Dilindungi.</p>
</footer>
</body>
</html>