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

:root {
    --slate: #3d5a6c;
    --river: #4a90a4;
    --forest: #2d4a3e;
    --tan: #c9b896;
    --cream: #f8f6f2;
    --dark: #1a2a32;
}

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

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--dark), transparent);
}

.logo {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--cream);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--river);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    background: linear-gradient(rgba(26, 42, 50, 0.85), rgba(26, 42, 50, 0.9)),
        linear-gradient(135deg, var(--slate), var(--dark));
    color: var(--cream);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%234a90a4' fill-opacity='0.2' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,85.3C672,75,768,85,864,112C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.tagline {
    font-family: 'Fjalla One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--river);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(248, 246, 242, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--river);
    color: white;
    text-decoration: none;
    font-family: 'Fjalla One', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #3a8094;
}

/* Gear Section */
.gear-section {
    padding: 6rem 5%;
    background-color: var(--cream);
}

.gear-section h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gear-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.gear-card:hover {
    transform: translateY(-8px);
}

.gear-image {
    height: 200px;
}

.rod { background: linear-gradient(145deg, var(--slate), var(--dark)); }
.reel { background: linear-gradient(145deg, var(--river), #3a8094); }
.waders { background: linear-gradient(145deg, var(--forest), #1d3a2e); }
.vest { background: linear-gradient(145deg, var(--tan), #b9a886); }

.gear-info {
    padding: 1.5rem;
}

.category {
    font-family: 'Fjalla One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--river);
}

.gear-info h3 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.gear-info p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 300;
}

.price {
    font-family: 'Fjalla One', sans-serif;
    color: var(--dark);
}

/* Rivers Section */
.rivers-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.rivers-content {
    padding: 4rem;
    background-color: var(--dark);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rivers-content h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.rivers-content p {
    color: rgba(248, 246, 242, 0.8);
    margin-bottom: 1rem;
    font-weight: 300;
}

.rivers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.rivers-list span {
    padding: 0.5rem 1rem;
    background-color: rgba(74, 144, 164, 0.2);
    border: 1px solid var(--river);
    font-size: 0.85rem;
    color: var(--river);
}

.rivers-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--river), var(--slate));
}

/* CTA Section */
.cta-section {
    padding: 5rem;
    text-align: center;
    background-color: var(--river);
    color: white;
}

.cta-content h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: var(--dark);
}

.cta-section .cta-button:hover {
    background-color: #0d1a20;
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    background-color: var(--dark);
    color: var(--cream);
}

.footer-logo {
    font-family: 'Fjalla One', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.8rem;
    color: rgba(248, 246, 242, 0.6);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

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

    .rivers-section {
        grid-template-columns: 1fr;
    }

    .rivers-image {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .gear-grid {
        grid-template-columns: 1fr;
    }
}
