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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Header & Navigation */
.header {
    background: #2F4F4F url('../images/wood-grain.jpeg') repeat; /* Add a wood texture image */
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-bar ul li a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-bar ul li a:hover,
.nav-bar ul li a.active {
    background: #D2691E;
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 30px;
    height: 4px;
    background: #fff;
    transition: 0.3s ease;
}

/* Hero Section */
.hero {
    background: url('../images/roberto-cameron-in-the-mountains.jpeg') no-repeat center/cover; /* Add your hunting pic */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #D2691E;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #4682B4;
    transform: translateY(-3px);
}

/* Intro Section */
.intro {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.intro h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #2F4F4F;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
    color: #666;
}

/* Social Links */
.social-links {
    background: #333333;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.social-links h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-link.youtube {
    background: #FF0000;
}

.social-link.tiktok {
    background: #000000;
}

.social-link.skreebee {
    background: #4682B4; /* Adjust based on Skreebee’s branding */
}

.social-link:hover {
    background: #D2691E;
}

/* Footer */
.footer {
    background: #2F4F4F;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-container p {
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .nav-bar {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #2F4F4F;
        padding: 20px;
        text-align: center;
    }

    .nav-bar.active {
        display: block;
    }

    .nav-bar ul {
        flex-direction: column;
        gap: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .intro h2 {
        font-size: 2rem;
    }

    .social-container {
        flex-direction: column;
        gap: 15px;
    }
}
/* About Hero */
.about-hero {
    background: url('../images/roberto-on-his-6x6-canam.jpeg') no-repeat center/cover; /* Replace with your wrenching pic */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.about-hero p {
    font-size: 1.4rem;
}

/* About Sections */
.about-sections {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.about-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.about-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.about-item h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #2F4F4F;
    margin-bottom: 10px;
}

.about-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Gear Section */
.gear-section {
    background: #333333;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.gear-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.gear-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gear-item {
    width: 100%;
    max-width: 300px;
}

.gear-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.gear-item p {
    font-size: 1.1rem;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 40px 20px;
    background: #2F4F4F;
    color: #fff;
}

.about-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }

    .about-item {
        max-width: 100%;
    }

    .gear-section h2 {
        font-size: 2rem;
    }

    .about-cta h2 {
        font-size: 1.8rem;
    }
}
/* Outdoors Hero */
.outdoors-hero {
    background: url('../images/roberto-hunting-in-wild.jpeg') no-repeat 50% 30%/cover; /* Focus slightly below the top */
    height: 70vh;
    min-height: 600px; /* Ensure enough vertical space */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.outdoors-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.outdoors-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.outdoors-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.outdoors-hero p {
    font-size: 1.4rem;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .outdoors-hero {
        height: 50vh;
        min-height: 400px; /* Smaller min-height for mobile */
        background: url('../images/roberto-hunting-in-wild.jpeg') no-repeat center center/cover; /* Center on mobile */
    }

    .outdoors-hero h1 {
        font-size: 2.5rem;
    }

    .outdoors-hero p {
        font-size: 1.2rem;
    }
}

/* Outdoor Pursuits Section */
.outdoor-pursuits {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.outdoor-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 360px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition */
}

.outdoor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.outdoor-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    max-width: 100%; /* Already here, but ensure it’s applied */
    max-width: 360px; /* Match parent’s max-width explicitly */
    display: block;
}

.outdoor-item h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #2F4F4F;
    margin-bottom: 10px;
}

.outdoor-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Outdoors CTA */
.outdoors-cta {
    text-align: center;
    padding: 40px 20px;
    background: #2F4F4F;
    color: #fff;
}

.outdoors-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.outdoors-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .outdoors-hero {
        height: 50vh;
    }

    .outdoors-hero h1 {
        font-size: 2.5rem;
    }

    .outdoors-hero p {
        font-size: 1.2rem;
    }

    .outdoor-item {
        max-width: 100%;
    }

    .outdoors-cta h2 {
        font-size: 1.8rem;
    }
}
/* Projects Hero */
.projects-hero {
    background: url('../images/utv-in-wild.jpg') no-repeat center/cover; /* Replace with your UTV or shop image */
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.projects-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.projects-hero-content {
    position: relative;
    z-index: 1;
}

.projects-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.projects-hero p {
    font-size: 1.4rem;
}

/* Projects Section */
.projects-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.project-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 360px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.project-item h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #2F4F4F;
    margin-bottom: 10px;
}

.project-item p {
    font-size: 1.1rem;
    color: #666;
}

.project-link {
    display: inline-block;
    background: #D2691E;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.project-link:hover {
    background: #4682B4;
}

/* Projects CTA */
.projects-cta {
    text-align: center;
    padding: 40px 20px;
    background: #2F4F4F;
    color: #fff;
}

.projects-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.projects-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .projects-hero {
        height: 50vh;
        min-height: 400px;
        background: url('../images/utv-in-wild.jpg') no-repeat center center/cover;
    }

    .projects-hero h1 {
        font-size: 2.5rem;
    }

    .projects-hero p {
        font-size: 1.2rem;
    }

    .project-item {
        max-width: 100%;
    }

    .projects-cta h2 {
        font-size: 1.8rem;
    }
}
/* Contact Hero */
.contact-hero {
    background: url('../images/roberto-in-workshop.jpg') no-repeat center/cover; /* Replace with your image */
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.contact-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.contact-hero p {
    font-size: 1.4rem;
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.contact-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.success-message, .error-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.success-message {
    background: #4CAF50;
    color: #fff;
}

.error-message {
    background: #f44336;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #2F4F4F;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.form-group .g-recaptcha {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.cta-button {
    display: block;
    width: 200px;
    margin: 0 auto;
    background: #D2691E;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #4682B4;
    transform: translateY(-3px);
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }

    .contact-container {
        padding: 20px;
    }
}
/* Blog Hero */
.blog-hero {
    background: url('../images/roberto-truck-wild.jpeg') no-repeat center/cover; /* Generic rugged backdrop */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.blog-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.blog-hero p {
    font-size: 1.4rem;
}

/* Blog Posts Section */
.blog-posts {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.posts-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #2F4F4F;
    text-align: center;
    margin-bottom: 30px;
}

.blog-item {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blog-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
}

.blog-text {
    padding: 20px;
    flex: 1;
    min-width: 300px;
}

.blog-text h3 a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #2F4F4F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-text h3 a:hover {
    color: #D2691E;
}

.blog-text .date {
    font-size: 0.9rem;
    color: #999;
    margin: 5px 0;
}

.blog-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    background: #D2691E;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #4682B4;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .blog-hero {
        height: 50vh;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1.2rem;
    }

    .posts-container h2 {
        font-size: 2rem;
    }

    .blog-item {
        flex-direction: column;
    }

    .blog-image {
        max-width: 100%;
    }

    .blog-text {
        min-width: 100%;
    }

    .blog-text h3 a {
        font-size: 1.5rem;
    }
}
/* Blog Post Hero */
.blog-post-hero {
    background: url('../images/Roberto_at_Flag_Mountain.jpeg') no-repeat center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.blog-post-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.blog-post-hero-content {
    position: relative;
    z-index: 1;
}

.blog-post-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.blog-post-hero .date {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 10px;
}

.blog-post-hero p {
    font-size: 1.4rem;
}

/* Blog Post Content */
.blog-post-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.post-container img.post-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #2F4F4F;
    margin: 20px 0 10px;
}

.post-container p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .blog-post-hero {
        height: 50vh;
    }

    .blog-post-hero h1 {
        font-size: 2.5rem;
    }

    .blog-post-hero p {
        font-size: 1.2rem;
    }

    .post-container h2 {
        font-size: 1.8rem;
    }
}