body {
    margin: 0;
    font-family: Tahoma, sans-serif;
    background-color: #fff;
    color: #222;
}

a {
    text-decoration: none;
}

.header {
    background-color: #fff;
    color: #000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1190px;
}

.header-top {
    background-color: #31833f;
    padding: 4px;
}

.header-bg {
    background-color: #fff;
}

.outdoorbrands-logo {
    width: 200px;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

.tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.header-bottom {
    background-color: #a2a6a4;
    padding: 12px;
    margin-bottom: 20px;
}

.breadcrumbs, .breadcrumbs a {
    text-align: left !important;
    color: #000 !important;
    font-family: Arial, sans-serif !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.breadcrumbs a:hover {
    text-align: left !important;
    color: #212c26 !important;
    font-family: Arial, sans-serif !important;
    font-weight: 800 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.hero {
    background-color: #0c110e;
    padding: 2rem;
    text-align: center;
}

.hero-section {
    background-color: #0c110e;
    padding: 3rem 1rem;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-section .grid {
    align-items: center;
    gap: 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: #fff;
    display: inline-block;
}

.amazingsolutions {
    font-family: Tahoma, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
}

.everyday {
    font-family: Tahoma, sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
    margin-left: -5px;
}

.hero-left {
    flex: 1 1 40%;
    max-width: 40%;
    line-height: 1rem;
    padding-bottom: 15px;
    padding-right: 50px;
    padding-right: clamp(20px, 3%, 50px);
}

.hero-left img {
    padding-top: 15px;
}

.green-bar {
    width: 60px;
    height: 6px;
    background-color: #00b140;
    padding-bottom: 10px;
}

h1 {
    margin: 0;
    display: block;
    line-height: 0.9;
}

.small-heading {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.big-heading {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-right {
    flex: 1 1 auto;
    max-width: 60%;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #fff;
    padding-left: 50px;
    padding-left: clamp(20px, 3%, 50px);
}

.hero-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: calc(100% - 40px);
  width: 1px;
  background: #ffffff;
}

.hero-right p:first-of-type {
    margin-top: 0;
}

.hero-right p:last-of-type {
    margin-bottom: 0;
}



/* MOBILE BREAKPOINTS */
@media (max-width: 768px) {    
    .hero-section {
        padding: 2rem 1rem;
        flex-direction: column;
    }

    .hero-left {
        flex: none;
    }

    .hero-right {
        border-left: none;
        padding-left: 0;
    }

    .amazingsolutions {
        font-family: Tahoma, sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
    }

    .everyday {
        font-family: Tahoma, sans-serif;
        font-size: 3rem;
        font-weight: 900;
        color: #fff;
        margin-left: 0px;
    }

    .footer-links li::after {
        content: none;
    }
}

.pitboss {
    background-color: #2362c7;
}

.charbroil {
    background-color: #025b5b;
}

.joe {
    background-color: #2b2b2b;
}

.center-button-container {
    margin-top: 30px;
    padding: 0;
    height: 53px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    box-sizing: content-box;
}

.center-button-container img {
    height: 53px;
    display: block;
}

.center-button-container .img-hover {
    opacity: 0;
    display: none;
    pointer-events: none;
}

.center-button-container:hover .img-hover {
    opacity: 1;
    display: block;
}

.center-button-container:hover .img-default {
    opacity: 0;
    display: none;
}

.hero-left,
.hero-right {
    opacity: 0;
    transform: translateX(0);
    animation-fill-mode: forwards;
}

/* Animate from left */
.hero-left {
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

/* Animate from right */
.hero-right {
    animation: slideInRight 1s ease-out 0.6s forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.justify {
    text-align: justify !important;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer {
    background: #1c1c1c;
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.85rem;
    margin-top: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li:not(:last-child)::after {
    content: " ■ ";
    padding: 5px;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .footer-links ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-links li::after {
        content: none !important;
    }
}


.grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 1190px;
    margin: 0 auto;
    padding: 1rem;
    justify-content: center;
    align-items: stretch;
}

.grid-item {
    display: flex;
    align-items: stretch;
}

.grid-item.image {
    flex: 1 1 60%;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item.image, .grid-item.card {
    /* overflow: hidden; */
}

.grid-item.image img {
    width: auto;
    height: auto;
    display: block;
}

.grid-item.image img,
.grid-item.card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover; /* Maintain aspect ratio and fill height */
    display: block;
}

.grid-item.card {
    flex: 1 1 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 50px;
}

.grid-item.card img {
    width: 100%;
    height: auto;
}

.grid-item.card a.hover-swap {
    width: 100%;
    height: 100%;
}

.grid-item.card a.hover-swap .hover-swap-container {
    height: 100% !important;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;   
}

@media (max-width: 1120px) {
    .grid {

    }

    .grid-item.image {
        width: 100% !important;
        max-width: 60% !important;
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }
    
    .grid-item.card {
        width: 100% !important;
        max-width: 40% !important;
        flex: none !important;
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }

    .grid-item.image img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .grid-item.card > a > div {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .center-button-container {
        padding-bottom: 20px;
    }
}

/* --- TABLET BREAKPOINTS --- */
@media (max-width: 900px) {
    .grid {
    
    }
    .grid-item.image {
        max-width: 60% !important;
        width: 100% !important;
        flex: 1 1 100%;
        justify-content: center;
        padding: 0;
    }
    .grid-item.card {
        max-width: 40% !important;
        width: 100% !important;
        flex: 1 1 100%;
        justify-content: center;
        padding: 0;
    }
    .grid-item.card > a > div {
        margin: 0 auto;
    }
}

/* --- MOBILE BREAKPOINTS --- */
@media (max-width: 870px) {
    .grid {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        width: 100% !important;
        max-width: 100% !important;
        /* flex: none !important; */
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }

    .grid-item.image {
        width: 100% !important;
        max-width: 100% !important;
        /* flex: none !important; */
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }
    
    .grid-item.card {
        width: 100% !important;
        max-width: 100% !important;
        /* flex: none !important; */
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }
    
    .hero-right::before {
      content: none;
    }
}
