/* ---------- IMPORTS & VARIABLES ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@400;700&display=swap');

:root {
    --primary-color: #004A7C;  /* A deep, professional blue */
    --secondary-color: #007CC7; /* A brighter, watery blue */
    --accent-color: #FF6700;   /* An accent orange (like a lure) */
    --brand-green: #39b54a; /* Green from your logo */
    --dark-grey: #333;
    --light-grey: #f4f4f4;
    --text-color: #555;
    --font-main: 'Roboto', sans-serif; /* NEW: Use Roboto for body */
    --font-headings: 'Oswald', sans-serif; /* NEW: Use Oswald for headings */
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-headings); /* USE NEW FONT */
    color: var(--dark-grey);
    font-weight: 700;
    letter-spacing: 0.5px; /* Add a little space */
}

h1 { font-size: 3rem; }
h2 { 
    font-size: 2.5rem; /* Slightly larger */
    text-align: center; 
    margin-bottom: 40px; 
    color: var(--brand-green); /* Headings are GREEN */
    text-transform: uppercase; /* Give headings more style */
}
h3 { 
    font-size: 1.5rem; /* Slightly larger */
    color: var(--accent-color); /* Sub-headings are ORANGE */
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

p {
    margin-bottom: 20px;
    font-family: var(--font-main); /* Ensure paragraphs use Roboto */
    font-size: 1.1rem;
    line-height: 1.7;
}

section {
    padding: 60px 0;
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 5px 0; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 120px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 30px;
}

nav a {
    font-family: var(--font-headings); /* USE NEW FONT */
    font-size: 1.1rem;
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.header-icons a {
    color: var(--dark-grey);
}

/* ---------- BUTTONS ---------- */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: var(--secondary-color);
}

.cta-button-secondary {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 10px 22px;
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}


/* ---------- HERO SECTION (EQUAL WIDTH FIX) ---------- */
.hero {
    height: 70vh; 
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden; 
    background-color: #000; 
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; /* Side-by-side layout */
    justify-content: center;
    align-items: center;
    z-index: 1; 
}

/* THIS IS THE FIX FOR UNEVEN VIDEOS */
.hero-video-wrapper video {
    flex: 1;           /* Force all videos to share space equally */
    min-width: 0;      /* Allow videos to shrink if needed */
    width: 33.33%;     /* Target width */
    height: 100%;      /* Full height */
    object-fit: cover; /* Crop to fill the box perfectly */
    margin: 0;
    padding: 0;
}

.hero-content {
    position: relative; 
    z-index: 2;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 40px;
    border-radius: 8px;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 10px;
}

.hero-content p {
    font-family: var(--font-main);
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #fff; 
}


/* ---------- FEATURED PRODUCTS ---------- */
.featured-products {
    background-color: var(--light-grey); 
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    border: 1px solid #eee;
    background: #fff; 
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-image-container {
    height: 300px; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; 
    box-sizing: border-box; 
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
}

.product-card h3 {
    margin: 20px 0 10px 0;
    padding: 0 15px;
    color: var(--accent-color);
}

.product-card .price {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

/* ---------- OUR STORY SECTION ---------- */
.story-content {
    background: #fff; 
}

.story-content .container {
    max-width: 800px; 
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ---------- BLOG SECTION STYLES ---------- */
.blog-content {
    background: var(--light-grey); 
}

.blog-content .container {
    max-width: 800px; 
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ---------- NEW FISHING TIPS SECTION ---------- */
.fishing-tips {
    background: #fff;
}

.fishing-tips .container {
    max-width: 800px;
}

.fishing-tips h3 {
    color: var(--accent-color);
    border-bottom: 2px solid var(--light-grey);
    padding-bottom: 5px;
    margin-top: 30px;
}

.fishing-tips p, .fishing-tips li {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ---------- LURE GUIDE SECTION ---------- */
.lure-guide {
    background: var(--light-grey);
}

.lure-guide .container {
    max-width: 800px;
}

.lure-guide h3 {
    color: var(--accent-color);
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-top: 30px;
}

.lure-guide h4 {
    font-family: var(--font-headings);
    color: var(--dark-grey);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.lure-guide p, .lure-guide li {
    font-size: 1.1rem;
    line-height: 1.7;
}

.lure-guide ul {
    list-style-type: disc;
    padding-left: 30px;
}

.rigging-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

/* ---------- GIVING BACK SECTION (PARALLAX) ---------- */
.giving-back-content {
    background-image: url("FB_IMG_1763068259522.jpg");
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.giving-back-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.giving-back-content .container {
    max-width: 800px; 
    position: relative;
    z-index: 2;
}

.giving-back-image {
    display: none;
}

.giving-back-content h2,
.giving-back-content p {
    color: #fff;
    text-align: center;
}

.giving-back-content p {
    font-family: var(--font-main);
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 600;
}

/* ---------- MEDIA GALLERY SECTION ---------- */
.media-gallery {
    background: #fff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.media-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    aspect-ratio: 16 / 9; 
    border: 1px solid #eee;
    background: #000; 
}

.media-card img,
.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.media-card a {
    display: block;
    width: 100%;
    height: 100%;
}


/* ---------- EMAIL SIGNUP ---------- */
.email-signup {
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}

.email-signup h2, .email-signup p {
    color: #fff;
}

.signup-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.signup-form input[type="email"] {
    flex-grow: 1;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
}

.signup-form button {
    border-radius: 0 5px 5px 0;
    border: none;
    background: var(--dark-grey);
    color: #fff;
    padding: 0 25px;
    font-family: var(--font-headings);
    text-transform: uppercase;
}

.signup-form button:hover {
    background: var(--accent-color);
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--dark-grey);
    color: #ccc;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #fff;
    font-family: var(--font-headings);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* ========== LIGHTBOX STYLES ========== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none; 
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-overlay:target {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%; 
    max-height: 90%;
    object-fit: contain;
    border: 3px solid white;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: background-color 0.3s;
    z-index: 2001;
}

.lightbox-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========== PRODUCT PAGE STYLES ========== */
.product-detail {
    background: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-detail-images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--brand-green);
}

.product-detail-info .price {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-detail-info p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.buy-button {
    background: var(--accent-color);
    font-size: 1.2rem;
    padding: 15px 30px;
}

.buy-button:hover {
    background: var(--primary-color);
}

/* ========== FADE-IN ANIMATION STYLES ========== */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}