/* Root Variables */
:root {
    --primary-blue: #2248b5;
    --white: #fff;
    --black: #18181a;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --max-width: 1440px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    margin-bottom: 0;
}

.top-bar-content {
    text-align: right;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-blue);
}

/* Navigation */
.navigation {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 24px;
    position: relative;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    /* really need to crop the image a little differently to get the boat a little further up in the frame */
    background-image: url('images/catfish-guide-boat.jpeg');
    /* background-position-y: -310px; */
    background-position: center;
    margin: 0 auto;
    max-width: 1440px;

    /* requires margin: 0 auto 0 400px override on hero container, left aligned copy. really need to crop the image a little differently to get the face further out to the right */
    /* background-image: url('images/_7809190 copy.jpeg');
    background-position: center; */
    background-size: cover;
    /* background-attachment: fixed; */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 72, 181, 0.8), rgba(24, 24, 26, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content p {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subhead {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 18px 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-blue);
    color: var(--white);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Where We Fish Section */
.location {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.location h2 {
    font-size: 42px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-text h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.location-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.location-details {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-blue);
}

.location-details p {
    margin-bottom: 12px;
    font-size: 16px;
}

.location-details p:last-child {
    margin-bottom: 0;
}

.location-details strong {
    color: var(--primary-blue);
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-map iframe {
    display: block;
    border-radius: 10px;
}

/* Rates Section */
.rates {
    padding: 80px 0;
    background-color: var(--white);
}

.rates h2 {
    font-size: 42px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
}

.rates-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 45px;
    color: #333;
}

.rates-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.rates-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rates-table thead {
    background-color: var(--primary-blue);
    color: var(--white);
}

.rates-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
}

.rates-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 16px;
}

.rates-table tbody tr:last-child td {
    border-bottom: none;
}

.rates-table tbody tr:hover {
    background-color: #f9f9f9;
}

.rates-content-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}

.rates-column {
    flex: 1;
    min-width: 0;
}

.rates-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

/* What to Bring Section */
.what-to-bring {
    background-color: var(--light-gray);
    padding: 15px 30px 30px;
    border-radius: 8px;
    height: 100%;
}

.what-to-bring h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    margin-top: 0;
}

.hook-list {
    list-style: none;
    padding-left: 0;
}

.hook-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.hook-list li::before {
    content: '🪝';
    position: absolute;
    left: 0;
    margin-top: -5px;
    font-size: 24px;
    filter: hue-rotate(325deg) saturate(2);
    /* filter: grayscale(1) brightness(0); */
    /* color: var(--primary-blue); */
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery h2 {
    font-size: 42px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
}

.gallery-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-grid a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-grid a:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

.footer p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Rates Section */
    .rates-content-wrapper {
        flex-direction: column;
    }
    
    .rates-column {
        width: 100%;
    }

    /* Top Bar */
    .top-bar-content {
        text-align: center;
        font-size: 12px;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hero */
    .hero {
        height: 500px;
        background-attachment: scroll;
    }

    .hero-content p {
        font-size: 36px;
    }

    .hero-subhead {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 15px 25px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    /* Location */
    .location {
        padding: 60px 0;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location h2 {
        font-size: 32px;
    }

    .location-text h3 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 16px;
    }

    /* Rates */
    .rates {
        padding: 60px 0;
    }

    .rates h2 {
        font-size: 32px;
    }

    .rates-intro {
        font-size: 16px;
        padding: 0 10px;
    }

    .rates-table th,
    .rates-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    /* Gallery */
    .gallery {
        padding: 60px 0;
    }

    .gallery h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-grid img {
        height: 250px;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 32px;
    }

    .contact p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 28px;
    }

    .hero-subhead {
        font-size: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .rates-table th,
    .rates-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
}
