@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

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

:root {
    --bg: #ffffff;
    --bg-dark: #4f5962;
    --bg-card: #ffffff;
    --accent: #2d5a27;
    --accent-light: #4a8c3f;
    --accent-green: #4a8c3f;
    --accent-gold: #c9a84c;
    --text: #3b4249;
    --text-light: #4f5962;
    --text-white: #ffffff;
    --border: #d8dce1;
    --shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.24);
    --shadow-light: 0 1px 3px rgba(0,0,0,0.08);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

/* NAV - light, minimal */
nav {
    background: #ffffff;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-logo {
    color: var(--accent);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 0;
}
.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    flex-wrap: wrap;
}
.nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.88em;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5em;
    cursor: pointer;
}

/* HERO - tall, immersive */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
        url('/images/island-photo.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 140px 24px 120px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero .wave-divider,
.hero-sub .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}
.hero .wave-divider svg,
.hero-sub .wave-divider svg {
    display: block;
    width: 100%;
    height: 40px;
    transform: rotate(180deg);
}
.hero .wave-divider path,
.hero-sub .wave-divider path {
    fill: #ffffff;
}
.hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    line-height: 1.2;
}
.hero p {
    font-size: 1.25em;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 36px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    line-height: 1.7;
}
.hero-btn {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: 16px 42px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 4px 15px rgba(45,90,39,0.3);
}
.hero-btn:hover {
    background: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
    transform: translateY(-1px);
}

.hero-sub {
    padding: 120px 24px 100px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)),
        url('/images/campground-wide.jpg') center/cover;
    color: white;
    text-align: center;
    position: relative;
}
.hero-sub h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    line-height: 1.2;
}
.hero-sub p {
    font-size: 1.15em;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 24px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    line-height: 1.7;
}

/* IMAGES - rounded, floating */
.photo-break {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    padding: 0 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.photo-break img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}
.photo-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden;
}
.photo-single img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}
.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin: -32px -32px 24px -32px;
    width: calc(100% + 64px);
}

/* SECTIONS - seamless, airy */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}
section {
    padding: 80px 0;
}
section:nth-child(even) {
    background: transparent;
}
section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.3;
}
section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    color: var(--text);
    margin: 24px 0 12px;
}

/* CARDS - floating, rounded, no hard borders */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 32px;
}
.card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    border-top: none;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
}
.card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}
.card.has-img {
    padding-top: 0;
}
.card.has-img .card-img {
    margin: 0 0 24px 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
}
.card.has-img h3,
.card.has-img p,
.card.has-img ul {
    padding: 0 32px;
}
.card.has-img h3:last-child,
.card.has-img p:last-child,
.card.has-img ul:last-child {
    padding-bottom: 32px;
}
.card h3 {
    color: var(--text);
    margin: 0 0 12px;
    font-size: 1.2em;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}
.card p {
    color: var(--text-light);
    line-height: 1.7;
}
.card ul {
    list-style: none;
    margin-top: 14px;
}
.card ul li {
    padding: 6px 0;
    color: var(--text);
    line-height: 1.5;
}
.card ul li::before {
    content: '\2713  ';
    color: var(--accent-green);
    font-weight: bold;
}

/* FEATURES - floating cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.feature {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.25s ease-in-out;
}
.feature:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}
.feature-icon {
    font-size: 2.8em;
    margin-bottom: 16px;
}
.feature h3 {
    margin-bottom: 10px;
    text-align: center;
    color: var(--text);
    font-family: 'Quicksand', sans-serif;
}
.feature p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.7;
}

/* TABLES - rounded, clean */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
th, td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f1f3;
}
th {
    background: var(--accent);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.95em;
}
tr:last-child td { border-bottom: none; }
tr:hover { background: rgba(45,90,39,0.04); }

/* CTA - softer, integrated */
.cta {
    background: #f5f0e8;
    color: var(--text);
    text-align: center;
    padding: 80px 24px;
}
.cta h2 {
    color: var(--text);
    margin-bottom: 16px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.2em;
}
.cta p {
    font-size: 1.15em;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: 16px 42px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.05em;
    margin: 6px 10px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 4px 15px rgba(45,90,39,0.3);
}
.cta-btn:hover {
    background: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
    transform: translateY(-1px);
}
.cta-btn.outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: none;
}
.cta-btn.outline:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-1px);
}

/* GENERIC BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 42px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.05em;
    margin: 6px 10px;
    transition: all 0.25s ease-in-out;
}
.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(45,90,39,0.3);
}
.btn-primary:hover { background: var(--accent-gold); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #ffffff; }
.btn-secondary {
    background: var(--accent-gold);
    color: white;
}
.btn-secondary:hover { background: var(--accent); color: white; }

/* EVENTS - clean cards */
.event-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--accent);
    transition: all 0.25s ease-in-out;
}
.event-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.event-card h3 {
    color: var(--text);
    margin: 0 0 8px;
    font-family: 'Quicksand', sans-serif;
}
.event-card .date {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95em;
    font-family: 'Quicksand', sans-serif;
}
.event-card p { margin-top: 8px; color: var(--text-light); line-height: 1.7; }

/* BLOG */
.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.25s ease-in-out;
}
.blog-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}
.blog-card-body {
    padding: 28px;
}
.blog-card h3 { margin: 0 0 8px; }
.blog-card h3 a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
}
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--text-light); font-size: 0.95em; line-height: 1.7; }
.blog-card .meta {
    font-size: 0.82em;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* FOOTER - light, clean */
footer {
    background: #f5f6f7;
    color: var(--text);
    padding: 60px 32px 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
footer h3, footer h4 {
    color: var(--text);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 16px;
}
footer p, footer a {
    color: var(--text-light);
    font-size: 0.93em;
    line-height: 2;
}
footer a { text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent); }
.footer-col ul {
    list-style: none;
}
.footer-col ul li a {
    display: block;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: var(--text-light);
    font-size: 0.82em;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* DEMO BANNER */
.demo-banner {
    background: var(--accent);
    color: #ffffff;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9em;
    font-family: 'Quicksand', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2em; }
    .hero { padding: 80px 20px 70px; min-height: 350px; }
    .hero-sub h1 { font-size: 1.9em; }
    .hero-sub { padding: 80px 20px 70px; min-height: 300px; }
    .photo-break img { height: 200px; }
    nav { flex-wrap: wrap; padding: 0 20px; }
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 8px 0;
        border-top: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 14px; }
    section { padding: 50px 0; }
    section h2 { font-size: 1.7em; }
    .card-grid { grid-template-columns: 1fr; }
    .photo-break { padding: 0 16px; }
    .photo-break img { height: 200px; }
    table { font-size: 0.9em; }
    th, td { padding: 10px 14px; }
    .cta { padding: 60px 20px; }
    .cta h2 { font-size: 1.7em; }
    .container { padding: 0 20px; }
}

/* CONTENT PAGES - generous spacing */
.content-section {
    padding: 70px 0;
}
.content-section + .content-section {
    padding-top: 0;
}
.content-section .container > p,
.content-section .container > ul {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.content-section ul {
    margin: 16px 0;
    padding-left: 24px;
}
.content-section li {
    padding: 4px 0;
    line-height: 1.7;
}
.content-section p {
    margin: 12px 0;
    color: var(--text);
    line-height: 1.7;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}
@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; }
}
