/* Copy of styles.css from baitshop project. Sarah Tokarz*/

:root {
    --wood: #5a4634;
    --forest: #2f5530;
    --sage: #dce4da;
    --cream: #e3daca;
    --accent: #cfa15a;
    --text: #1a1a1a;
    ---gold: #efd423;
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

.page-header {
    background: linear-gradient(rgba(20, 40, 25, 0.5), rgba(20, 40, 25, 0.5)),
        url("bass.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    border-radius: var(--radius);
}

.page-header h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 0.5em;
}

.page-header .note {
    font-size: 1.1rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    background: var(--cream);
    color: var(--text);
}


.site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 20px;
    background: var(--forest);
    color: #fff;
    text-align: center;
}

.header-left {
    justify-self: start;
}

.header-center {
    justify-self: center;
}

.site-nav {
    justify-self: end;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.brand-text:hover {
    color: var(--accent);
}

.logo {
    height: 200px;
    width: auto;
    border-radius: 50%;
}

.logo:hover {
    transform: scale(1.05);
}


.site-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 14px;
    padding: 6px 10px;
    border-radius: var(--radius);
    font-size: 1.5rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
    background: var(--accent);
    color: #000;
}


.hero {
    background: linear-gradient(rgba(20, 40, 25, 0.5), rgba(20, 40, 25, 0.5)),
        url("bucklakehead.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: .3em;
}

.hero-inner {
    max-width: 800px;
    margin: auto;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    margin: 6px;
}

.btn:hover {
    background: #e0b25f;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #000;
}

.intro,
.info-grid,
.video-section,
.extras,
.extras a,
.cta {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.intro h2,
.info-grid h3,
.extras h2,
.extras a,
.cta h2 {
    color: var(--forest);
}

.features {
    list-style: none;
    padding: 0;
}

.features li::before {
    content: "✓ ";
    color: var(--accent);
}

.info-grid {
    display: grid;
    gap: 20px;
}

.info-grid article {
    background: var(--sage);
    padding: 20px;
    border-radius: var(--radius);
}

.info-grid iframe {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: var(--radius);
}

.note {
    color: #877302;
    font-size: 0.9rem;
}


.video-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: var(--radius);
}


.table-section {
    padding: 30px 20px;
    max-width: 900px;
    margin: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

th,
td {
    padding: 10px 14px;
    border-bottom: 1px solid #ddd;
}

th {
    background: var(--forest);
    color: #fff;
    text-align: left;
}

.extras {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: auto;
    padding: 30px 20px;
}

.extras article {
    background: var(--sage);
    padding: 20px;
    border-radius: var(--radius);
}

.site-footer {
    background: var(--forest);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-grid h2 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.5em;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: var(--radius);
    margin-bottom: 8px;
}

.footer-grid a {
    color: var(--accent);
    text-decoration: none;
}

.footer-grid a:hover {
    text-decoration: underline;
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    font-size: 0.9rem;
    color: #ddd;
    text-align: center;
}

@media (min-width: 700px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .site-footer {
        text-align: left;
    }
}

@media (min-width: 600px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .extras {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .hero {
        padding: 90px 20px;
    }
}