/* Lake Ontario Fishing Charters */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Merriweather:wght@400;700&display=swap');

:root {
    --navy: #1b2a4a;
    --navy-light: #2c3e6b;
    --ocean: #1a5276;
    --green: #2e7d32;
    --green-muted: #4a7c59;
    --sand: #f5f1eb;
    --text: #333;
    --text-light: #666;
    --white: #fff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: var(--navy);
    line-height: 1.3;
}

a { color: var(--ocean); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }

/* Navigation */
.site-nav {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.site-nav .logo {
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1rem 0;
    text-decoration: none;
}
.site-nav .logo:hover { color: rgba(255,255,255,0.85); }
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}
.site-nav ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 1.1rem 1rem;
    display: block;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.site-nav ul li a:hover,
.site-nav ul li a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 1rem; }
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .site-nav ul { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: var(--navy); }
    .site-nav ul.open { display: flex; }
    .site-nav .container { flex-wrap: wrap; }
}

/* Hero */
.hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 6rem 1.5rem;
    text-align: center;
    color: var(--white);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,42,74,0.75), rgba(26,82,118,0.65));
}
.hero .hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.hero h1 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
.hero .btn { margin-top: 0.5rem; }
@media (min-width: 768px) {
    .hero { padding: 8rem 2rem; }
    .hero h1 { font-size: 3rem; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-muted); color: #fff; transform: translateY(-1px); }
.btn-outline { border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }

/* Content */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Section */
.section { padding: 3rem 0; }
.section-alt { background: var(--sand); padding: 3rem 0; }
.section-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.section-sub {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}
.section-divider {
    width: 50px;
    height: 3px;
    background: var(--green);
    margin: 0 auto 2rem;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card-body {
    padding: 1.25rem;
}
.card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.card-body h3 a { color: var(--navy); }
.card-body h3 a:hover { color: var(--ocean); }
.card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Article content */
.article-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green);
}
.article-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}
.article-content ul {
    margin: 0 0 1.5rem 1.5rem;
    font-size: 1.05rem;
}
.article-content ul li { margin-bottom: 0.4rem; }
.article-content img {
    width: 100%;
    border-radius: 6px;
    margin: 1.5rem 0;
}
.article-content .caption {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

/* Charter listing */
.charter-listing {
    background: var(--sand);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--ocean);
}
.charter-listing h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.charter-listing .details {
    font-size: 0.9rem;
    color: var(--text-light);
}
.charter-listing .species {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.2em 0.6em;
    border-radius: 3px;
    margin-right: 0.3rem;
    font-weight: 500;
}

/* Report entry */
.report-entry {
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
}
.report-entry:last-child { border-bottom: none; }
.report-entry h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.report-entry .date { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.75rem; }

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.65); }
.site-footer a:hover { color: #fff; }
