/* Park and Rest Landing Page Styles */

:root {
    --primary: #2E7D32;
    --primary-light: #4CAF50;
    --primary-dark: #1B5E20;
    --accent: #FF8F00;
    --text: #333;
    --text-light: #666;
    --bg: #FAFAFA;
    --bg-alt: #F0F4F0;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --radius: 12px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.hero {
    background: url('hero-bg.png') center/cover no-repeat;
    color: var(--white);
    min-height: 500px;
    display: flex;
    align-items: stretch;
}

.hero-overlay {
    width: 100%;
    min-height: 100%;
    padding: 80px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.google-play-badge {
    height: 80px;
    transition: transform 0.2s;
}

.cta-link {
    display: inline-block;
    text-decoration: none;
    border: none;
    outline: none;
}

.google-play-badge:hover {
    transform: translateY(-2px);
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features h2, .how-it-works h2, .activities h2, .screenshots h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    background: var(--bg);
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-alt);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 0 1 200px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.step h3 a {
    color: inherit;
    text-decoration: underline;
}

.step p {
    color: var(--text-light);
}

/* Activities & Services */
.activities {
    padding: 80px 0;
    background: var(--white);
}

.activities:nth-of-type(even) {
    background: var(--bg-alt);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -32px;
    margin-bottom: 40px;
}

.activities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.activity-tag {
    background: var(--bg-alt);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    transition: background 0.2s;
}

.activity-tag:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero .tagline { font-size: 1.2rem; }
    .footer-content { grid-template-columns: 1fr; }
}
