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

:root {
    --accent: #ff6a00;
    --muted: #6b7280;
    --bg: #ffffff;
    --card-bg: #ffffff;
    --max-width: 1200px;
}

html,
body {
    height: 100%
}

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    color: #1f2937;
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 0
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(4px);
    z-index: 50;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0
}

.brand {
    font-weight: 700;
    color: #111;
    text-decoration: none;
    font-size: 1.05rem
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
    align-items: center
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px
}

.nav-links a:hover {
    background: rgba(255, 106, 0, 0.08);
    color: var(--accent)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 1.3rem
}

/* Hero */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.25)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.hero-inner {
    padding: 6rem 0
}

.hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 1.05;
    margin-bottom: 0.5rem
}

.lead {
    opacity: 0.95;
    margin-bottom: 1.1rem
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600
}

.btn:hover {
    transform: translateY(-2px);
    transition: all .18s ease
}

/* Sections */
.section-title {
    font-size: 1.6rem;
    margin-bottom: 10px
}

.section-sub {
    color: var(--muted);
    margin-bottom: 28px
}

/* Attraction card/article */
.attraction {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 36px;
    align-items: start;
    background: linear-gradient(180deg, #fff, #fbfbfb);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06)
}

.attraction-media {
    margin: 0
}

.attraction-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px
}

.attraction-media figcaption {
    font-size: .9rem;
    color: var(--muted);
    margin-top: 8px
}

.attraction-body h3 {
    margin-bottom: 8px
}

.attraction-body h4 {
    margin-top: 12px;
    margin-bottom: 8px;
    color: #111
}

.attraction-body ul {
    margin-left: 18px;
    list-style: disc;
    color: #374151
}

.attraction-body p {
    color: #374151
}

/* About & Contact */
.about p,
.contact p {
    color: var(--muted)
}

/* Footer */
.site-footer {
    background: #0b1220;
    color: #e6eef8;
    padding: 28px 0;
    text-align: center;
    font-size: .95rem
}

.site-footer a {
    color: #bfe3ff
}
.site-footer {
    background-color: #111;
    color: #ccc;
    text-align: center;
    padding: 30px 15px;
    font-size: 14px;
    margin-top: 50px;
}

.site-footer a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}

.footer-content p {
    margin: 8px 0;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:980px) {
    .attraction {
        grid-template-columns: 1fr;
        padding: 16px
    }

    .attraction-media img {
        height: 300px
    }
}

@media(max-width:720px) {
    .nav-links {
        display: none
    }

    .nav-toggle {
        display: inline-block
    }

    .hero-inner {
        padding: 4rem 0
    }

    .container {
        padding: 20px 0
    }
}
