body {
    margin: 0;
    background-color: #0a0a0a;
}

.site-header {
    text-align: center;
    padding: 40px 20px;
    background: #111;
    border-bottom: 2px solid orange;
}

.logo-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(32px, 6vw, 80px);
    color: #e5e5e5;
    letter-spacing: 3px;
    margin: 0;
}

.logo-title .accent {
    color: orange;
    margin-right: 10px;
}

.tagline {
    font-family: 'Fjalla One', sans-serif;
    color: orange;
    text-transform: uppercase;

    font-size: clamp(14px, 1.5vw, 28px);
    letter-spacing: clamp(2px, 0.4vw, 8px);

    margin-top: 10px;
}

.logo-title a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.logo-title a:hover {
    color: orange;
}


/*Button Stuff*/

.inquire-btn {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid orange;
    background: transparent;
    color: #ccc;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s ease;
    font-family: 'Fjalla One', sans-serif;
    text-align: center;
}

.inquire-btn:hover {
    background: orange;
    color: black;
}




/* NAVBAR CONTAINER */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: clamp(12px, 2vw, 28px) clamp(20px, 6vw, 100px);

    background: #0f0f0f;
    border-bottom: 2px solid orange;

    font-family: 'Fjalla One', sans-serif;
}

/* LOGO */
.nav-logo {
    color: #e5e5e5;
    font-size: clamp(20px, 2vw, 38px);
    letter-spacing: 2px;
    font-weight: 600;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;

    gap: clamp(12px, 2vw, 50px);
    margin: 0;
    padding: 0;

    flex-wrap: wrap; /* prevents overflow on mobile */
    justify-content: center;
}

/* LINKS */
.nav-links a {
    text-decoration: none;
    color: #ccc;

    font-size: clamp(15px, 1.8vw, 24px); /* increased */
    letter-spacing: 1px;
    font-weight: 500;

    transition: 0.2s ease;
}

.nav-links a:hover {
    color: orange;
}

@media (min-width: 768px) {
    .nav-links a {
        font-size: 20px;
    }
}


/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #e5e5e5;
    cursor: pointer;
}

/* MOBILE MENU BEHAVIOUR */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none; /* hidden by default */
        flex-direction: column;
        width: 100%;
        background: #0f0f0f;
        margin-top: 10px;
        padding: 10px 0;
        border-top: 1px solid orange;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }
}



.nav-links a {
    font-size: clamp(16px, 2vw, 24px);
}

@media (max-width: 768px) {
    .nav-links a {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
}




























/* CONTACT BUTTON */
.contact-btn {
    padding: 6px 12px;
    border: 1px solid orange;
    border-radius: 4px;

    white-space: nowrap; /* prevents breaking */
}

.contact-btn:hover {
    background: orange;
    color: black;
}

/* MOBILE LAYOUT */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        margin-bottom: 10px;
    }

    .nav-links {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .nav-links a {
        font-size: 24px;
    }
}




/*Banner for new products*/

.stock-banner {
    background: linear-gradient(90deg, #ff6a00, #ff9d00);
    color: black;
    font-family: 'Fjalla One', sans-serif;
    text-align: center;

    padding: 14px 20px;
    font-weight: bold;
    letter-spacing: 2px;

    font-size: clamp(18px, 2vw, 32px);

    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);

    /* NEW — limits width */
    width: fit-content;
    max-width: 90%;

    margin: 30px auto;  /* centers it */
    border-radius: 8px;
}












/*Styles for the Product Cards*/

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.product-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 15px;
    color: #e5e5e5;
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: orange;
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}
.product-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
    color: #fff;
}

.desc {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.specs {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.specs li {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 3px;
}

.price {
    color: orange;
    font-weight: bold;
    margin-top: auto;
}

.inquire-btn {
    margin-top: 10px;
    padding: 8px;
    background: transparent;
    border: 1px solid orange;
    color: #e5e5e5;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s ease;
}

.inquire-btn:hover {
    background: orange;
    color: black;
}

@media (min-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (min-width: 1024px) {

    .product-card h3 {
        font-size: 22px;
    }

    .product-card .desc {
        font-size: 16px;
    }

    .product-card .specs li {
        font-size: 15px;
    }

    .product-card .price {
        font-size: 18px;
    }

    .inquire-btn {
        font-size: 16px;
        padding: 10px 18px;
    }

}
@media (min-width: 1024px) {

    .product-card .desc {
        font-size: 18px;
        line-height: 1.6;
    }

    .product-card .specs li {
        font-size: 17px;
        line-height: 1.6;
    }

}



















/*Contact Stuff*/

.contact-container {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.contact-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    color: #e5e5e5;
    font-family: 'Fjalla One', sans-serif;

    width: 90%;
    max-width: 700px;

    padding: 30px;

    box-shadow: 0 0 25px rgba(255, 140, 0, 0.08);
}

/* Title */
.contact-card h2 {
    color: orange;
    letter-spacing: 2px;
    margin-bottom: 20px;

    font-size: clamp(26px, 2.5vw, 40px);
}

/* Main text */
.contact-text {
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.6;

    font-size: clamp(14px, 1.2vw, 18px);
}

/* Contact details */
.contact-info p {
    margin: 12px 0;
    color: #ddd;

    font-size: clamp(14px, 1.2vw, 18px);
}

/* Important note box */
.contact-note {
    margin-top: 25px;
    padding: 12px 15px;
    border-left: 3px solid orange;
    color: #aaa;

    font-size: clamp(12px, 1vw, 16px);
}

/* Tablet + Desktop spacing boost */
@media (min-width: 768px) {
    .contact-container {
        padding: 90px 20px;
    }

    .contact-card {
        padding: 45px;
    }
}

/*Pages*/

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
    font-family: 'Fjalla One', sans-serif;
}

.page-btn {
    text-decoration: none;
    color: #ccc;
    padding: 10px 16px;
    border: 1px solid #333;
    background: #111;
    transition: all 0.2s ease;
    letter-spacing: 1px;
}

/* Hover */
.page-btn:hover {
    border-color: orange;
    color: orange;
}

/* Active page */
.page-btn.active {
    background: orange;
    color: black;
    border-color: orange;
}

/* Optional: subtle glow effect */
.page-btn.active:hover {
    background: #ff8c00;
}


.hidden {
    display: none;
}

.load-more-btn {
    display: block;
    margin: 40px auto;
    padding: 12px 24px;
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
}

.load-more-btn:hover {
    background: #333;
}

/*FOOTER*/

.site-footer {
  background: #0f0f0f;
  border-top: 2px solid orange;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Fjalla One', sans-serif;
  margin-top: 60px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: orange;
}

.footer-note {
  font-size: 14px;
  color: #777;
  margin-top: 8px;
}



/*Search Bar*/
.search-wrapper {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    padding: 0 20px;
}

#searchBar {
    width: 100%;
    max-width: 700px;

    padding: 14px 18px;

    background: #111;
    border: 1px solid #222;
    border-bottom: 2px solid orange;

    color: #e5e5e5;
    font-family: 'Fjalla One', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;

    outline: none;

    border-radius: 6px;

    transition: 0.2s ease;
}

#searchBar::placeholder {
    color: #777;
    letter-spacing: 1px;
}

#searchBar:focus {
    border-color: orange;
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.2);
}

.site-credits {
    font-size: 11px;
    color: #666565;
    margin-top: 10px;
    opacity: 0.6;
    letter-spacing: 1px;
}

.site-credit:hover {
    opacity: 1;
    color: #888;
}

.legal-banner {
    font-family: 'Fjalla One', sans-serif;
    text-align: center;

    color: #bbb;
    font-size: clamp(12px, 1.2vw, 16px);
    letter-spacing: 2px;

    margin: -10px auto 25px auto; /* pulls it closer to banner */
    padding: 6px 14px;

    border: 1px solid #222;
    background: #0f0f0f;

    width: fit-content;
    max-width: 90%;
    border-radius: 6px;

    opacity: 0.85;
}




/*HERMAN LOGO*/

.site-header {
    text-align: center;
    padding: clamp(10px, 2vw, 30px) 10px; /* less vertical padding */
    background: #111;
    border-bottom: 2px solid orange;
}

.header-logo {
    width: 100%;
    max-width: 1600px; /* BIG desktop size */
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.site-header {
    text-align: center;
    padding: clamp(10px, 2vw, 30px) 10px;
    background: #fff; /* 👈 change to white */
    border-bottom: 2px solid orange;
}

@media (min-width: 1200px) {
    .header-logo {
        max-width: 680px;
    }

    .site-header {
        padding: 8px 0; /* slightly tighter */
    }
}
