/* Reset and base styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3e2d;
    background-color: #fefefe;
    padding-top: 80px;
}

@font-face {
    font-family: 'Raleway';
    /* Replace with your font's name */
    src: url('../assets/fonts/Raleway-Regular.woff2') format('woff2'),
        url('../assets/fonts/Raleway-Light.woff2') format('woff2'),
        url('../assets/fonts/Raleway-Medium.woff2') format('woff2'),
        url('../assets/fonts/Raleway-Regular.woff') format('woff'),
        url('../assets/fonts/Raleway-Regular.woff2') format('woff'),
        url('../assets/fonts/Raleway-Thin.woff') format('woff'),
        url('../assets/fonts/Raleway-Thin.woff2') format('woff2');

    /* Replace with the actual path and format */
}



/* Top Banner - Fixed */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a3d 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url('../assets/images/logo.webp') center/cover;
    border: 2px solid #fff;
}

.logo-text {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.logo-text a {
    text-decoration: none;
    color: #ffffff;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: url('../assets/images/home_banner.webp') center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 0;
}

/* Page-specific hero banners */
body.about-page .hero {
    background: url('../assets/images/about_banner.webp') center/cover;
}

body.contact-page .hero {
    background: url('../assets/images/contact_banner.webp') center/cover;
}

body.herbalextracts-page .hero {
    background: url('../assets/images/herbalextracts_banner.webp') center/cover;
}

body.menshealth-page .hero {
    background: url('../assets/images/menshealth_banner.webp') center/cover;
}

body.moringaproducts-page .hero {
    background: url('../assets/images/moringaproducts_banner.webp') center/cover;
}

body.mushroom-page .hero {
    background: url('../assets/images/mushroomproducts_banner.webp') center/cover;
}

body.products-page .hero {
    background: url('../assets/images/banner.webp') center/cover;
}

body.vitaminsandminerals-page .hero {
    background: url('../assets/images/vitaminsandminerals_banner.webp') center/cover;
}



.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;

}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #d4820a;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 300;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 130, 10, 0.3);
}

.cta-button:hover {
    background: #b8720a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 130, 10, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

.about-section {
    background: #f8faf8;
}

.products-section {
    background: white;
}

.products-section h3 {
    font-size: 22px;
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 20px;
}

.contact-section {
    background: #f0f4f0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2d5a3d;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4820a;
    margin: 20px auto 0;
    border-radius: 2px;
}

.about-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 25px;
    text-align: left;
    color: #4a5a4a;
}


/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-benefits {
    margin: 15px 0;
}

.product-benefits ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.product-benefits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #4a5a4a;
    font-size: 0.95rem;
}

.product-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7fa085;
    font-weight: bold;
}

/* Sitemap products list indentation */
ul.products {
    margin-left: 10px;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-image {
    width: calc(100% + 60px);
    height: auto;
    border-radius: 15px 15px 0 0;
    margin: -30px -30px 10px -30px;
    padding: 0 0 10px 0;
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #7fa085;
}

.product-card h3 {
    color: #2d5a3d;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: left;
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: left;
}

.product-card details {
    text-align: left;
    font-weight: 400;
}


summary {
    list-style: none;
    padding-bottom: 10px;
}

/* Remove default marker (Chrome, Edge, Safari) */
summary::-webkit-details-marker {
    display: none;
}

/* Add custom arrow */
summary::before {
    content: '▶';
    /* Right-pointing arrow */
    font-size: 0.8em;
    /* Adjust size here */
    display: inline-block;
    margin-right: 0.5em;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
details[open] summary::before {
    transform: rotate(90deg);
}


.product-link {
    display: inline-block;
    background: #7fa085;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: #6b8c6f;
    transform: scale(1.05);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-note {
    margin-top: 20px;
    padding: 15px;
    background: #f8faf8;
    border-radius: 8px;
    border-left: 4px solid #7fa085;
}

.contact-info h3,
.contact-form h3 {
    color: #2d5a3d;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 300;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info strong {
    color: #4a7c59;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5ebe5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7fa085;
}

.form-group:has(input[name="firstName"]) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-btn {
    display: inline-block;
    background: #d4820a;
    color: black;
    padding: 10px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 300;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b8720a;
    transform: translateY(-3px);
}


/* Footer */
.footer {
    background: #2d5a3d;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
    font-weight: 300;
}

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

.footer-info h4 {
    padding-bottom: 10px;
}

.footer-info p {
    margin-bottom: 8px;
    font-weight: 300;
}

.footer-info a {
    font-weight: 300;
}


/* Andries Oberholzer Consulting */
.ao {
    color: white;
    font-weight: 300;
    font-family: Arial;
    text-decoration: none;
}

.aowhite {
    color: #000000;
    font-weight: 300;
    font-family: Arial;
    text-decoration: none;
}

.consulting {
    color: #ffffff;
    font-weight: 300;
    font-family: Arial;
    text-decoration: none;
}

/* Remove underline from footer logo */
img {
    text-decoration: none !important;
}

.nounderline {
    text-decoration: none !important;
}

/* Remove underline from footer links */
footer a {
    text-decoration: none !important;
}

footer a:hover {
    text-decoration: none !important;
}

/* Remove underline from logo text */
.logo a {
    text-decoration: none !important;
}

.logo a:hover {
    text-decoration: none !important;
}

.logo-text a {
    text-decoration: none !important;
}

.logo-text a:hover {
    text-decoration: none !important;
}

.scroll-top-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.scroll-top-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.arrow {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Footer link styling */
.footer-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    border-bottom: 2px solid #d4820a;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Remove underline and border from specific footer elements */
.footer-content a.nounderline {
    border-bottom: none !important;
    text-decoration: none !important;
}

.footer-content a.nounderline:hover {
    border-bottom: none !important;
    text-decoration: none !important;
    transform: none !important;
}

.footer-content img.nounderline {
    border-bottom: none !important;
    text-decoration: none !important;
}

.footer-content a:hover {
    color: #ffffff;
    border-bottom: 2px dashed #7fa085;
    transform: translateY(-1px);
}

/* Thank you page link styling */
.about-section a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 2px solid #d4820a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-section a:hover {
    color: #2d5a3d;
    border-bottom: 2px dashed #7fa085;
    transform: translateY(-1px);
}




/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        padding: 15px 20px;
    }

    .top-banner {
        height: 70px;
    }

    body {
        padding-top: 70px;
    }

    .hamburger-menu {
        display: flex;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 20px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #4a7c59 0%, #2d5a3d 100%);
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        padding: 20px 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        visibility: hidden;
        opacity: 0;
    }

    .main-nav.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-link {
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        transform: none;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-group:has(input[name="firstName"]) {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .social-buttons {
        gap: 10px;
    }

    .social-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .social-text {
        display: none;
    }

    .social-icon {
        font-size: 1.1rem;
    }

    .footer-social-buttons {
        gap: 10px;
    }

    .footer-social-btn {
        width: 45px;
        height: 45px;
    }
}

/* Sitemap */

ul.sitemap {
    padding-left: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9f8;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-weight: 400;
    font-size: 1.3rem;
    color: #4a7c59;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    line-height: 1.4;
}

.faq-question:hover {
    background-color: #f5f7f5;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4a7c59;
    transition: transform 0.3s ease;
    user-select: none;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    padding-top: 15px;
}

/* Contact and Values Section Heading Paragraphs */
.contact-heading,
.values-heading {
    color: #2d5a3d;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 300;
}

/* Social Sharing Widgets */
.social-sharing {
    margin-top: 40px;
    text-align: center;
}

.share-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.8);
}

.social-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.8);
}

.social-btn.linkedin:hover {
    background: rgba(0, 119, 181, 0.8);
}

.social-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.8);
}

.social-icon {
    font-size: 1.2rem;
}

.social-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Social Sharing */
.footer-social {
    text-align: center;
    margin: 20px 0;
}

.footer-social-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-social-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.footer-social-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.footer-social-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.footer-social-btn.email:hover {
    background: #d4820a;
    border-color: #d4820a;
}

/* Extreme Tracking */
.extremetracking {
    display: none !important;
}
