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

:root {
    --sand: #f5f0e8;
    --sea: #0c4a6e;
    --sky: #38bdf8;
    --foam: #e8f4fc;
    --coral: #e07a5f;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    color: #1e3a5f;
    background: var(--sand);
}

h1, h2, h3, .font-display {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.hero-gradient {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 40%, #38bdf8 100%);
}

.hero-photo {
    position: relative;
    overflow: hidden;
}

.hero-photo > img.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo > .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.88) 0%, rgba(3, 105, 161, 0.75) 50%, rgba(56, 189, 248, 0.55) 100%);
}

.hero-photo > nav,
.hero-photo > .hero-content {
    position: relative;
    z-index: 1;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(12, 74, 110, 0.12);
}

.prose-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #475569;
}

.prose-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sea);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--sea);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose-content ul, .prose-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #475569;
}

.prose-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.prose-content a {
    color: #0369a1;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose-content a:hover {
    color: var(--coral);
}

.nav-link {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.cta-button {
    background: var(--coral);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.cta-button:hover {
    background: #c96a52;
    transform: scale(1.02);
}

.attraction-card {
    border-left: 4px solid var(--sky);
}