:root {
    --bg: #f8f9fa;
    --text: #2d3436;
    --accent: #2ecc71;
    --accent-dark: #27ae60;
    --soft-shape: #e9ecef;
    --card-bg: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
    font-weight: 400;
    margin-left: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.accent {
    color: var(--accent);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    background: var(--accent-dark);
}

.hero-shape {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 60vw;
    height: 80vh;
    background: var(--soft-shape);
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 40%;
    z-index: 1;
    animation: morph 15s ease-in-out infinite;
}

@keyframes morph {
    0% { border-radius: 60% 40% 70% 30% / 40% 50% 60% 40%; }
    50% { border-radius: 30% 60% 40% 70% / 50% 40% 30% 60%; }
    100% { border-radius: 60% 40% 70% 30% / 40% 50% 60% 40%; }
}

.trails {
    padding: 8rem 10%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.map-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trail-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.trail-card:hover {
    transform: translateY(-10px);
}

.trail-img {
    height: 200px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.trail-card h3 {
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--soft-shape);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.organic-cta {
    padding: 8rem 10%;
    background: var(--text);
    color: white;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.tips-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tip {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
}

footer {
    padding: 4rem 10%;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-shape { width: 100vw; right: -20%; }
    nav ul { display: none; }
}
