﻿@font-face {
    font-family: 'Filson Pro';
    src: url('/fonts/FilsonPro-Regular.woff2') format('woff2'), url('/fonts/FilsonPro-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

/* ============================= */
/* Root + Base Styles            */
/* ============================= */
:root {
    font-family: 'Filson Pro', sans-serif;
    font-style: normal;
    --color-primary-purple: #a698ea;
    --color-secondary-purple: #b1a0ff;
    --color-accent-green: #b0f963;
    --color-dark-bg: #2d3d3f;
    --color-dark-text: #243837;
    --color-light-text: #ffffff;
    --color-green-text: #4a917e;
    --color-highlight-grape: #a5ed5b;
}

body {
    font-family: inherit;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================= */
/* Container Adjustments         */
/* ============================= */
.container10,
.container11 {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.container10 {
    padding-left: 100px;
    padding-right: 100px;
}

.container11 {
    padding-left: 70px;
    padding-right: 70px;
}

/* Responsive Container */
@media (max-width: 768px) {
    .container10,
    .container11 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================= */
/* Call-to-Action Buttons        */
/* ============================= */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin: 50px 0;
}

.cta-btn {
    padding: 16px 0;
    width: 197px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 12px;
    cursor: pointer;
}

.action-buttons {
    display: flex;
    gap: 45px;
    margin-top: 60px;
    justify-content: center;
}

.about-btn {
    background-color: #a698ea;
    border-radius: 12px;
    padding: 16px 54px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .about-btn:hover {
        background-color: #b1a0ff;
    }

.contact-btn4 {
    background-color: transparent;
    border-radius: 12px;
    padding: 16px 44px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #2c3c3d;
    border: 2px solid #b1a0ff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .contact-btn4:hover {
        background-color: #b1a0ff;
        color: #ffffff;
    }

/* Stack buttons on small screens */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .about-btn,
    .contact-btn4 {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
}

/* ============================= */
/* Footer Banner                 */
/* ============================= */
.footer-banner2 {
    background-color: #2d3d3f;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.banner-title2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 84px;
    margin-bottom: 20px;
}

    .banner-title2 span {
        color: #a5ec5b;
    }

.banner-subtitle2 {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
}
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section10 {
        padding-top: 60px !Important;
    }

        .hero-section10 h1 {
            font-size: 54px;
            line-height: 90px;
            margin-left: 40px;
        }
    /* ✅ Fix product banner image spacing */
    .product-banner-img {
        margin-top: 10px/* was 100px, reduced for better balance */
    }

}
/* ============================= */
/* HERO SECTION (FIXED VERSION) */
/* ============================= */
.hero-section10 {
    background-color: var(--color-accent-green);
    padding-top: 70px;
    padding-bottom: 20px;
}

    .hero-section10 h1 {
        color: var(--color-dark-text);
        font-family: 'Filson Pro', sans-serif;
        font-weight: 500;
        font-size: 70px;
        line-height: 100px;
        margin: 0;
        margin-left: 70px;
        text-align: left;
    }

/* ✅ FORCE product banner image closer on smaller screens */
@media (max-width: 1024px) {
    section.product-details-section .product-banner-img {
        margin-top: 50px !important; /* force override */
    }
}

@media (max-width: 768px) {
    section.product-details-section .product-banner-img {
        margin-top: 20px !important; /* force override for mobile */
    }
}

@media (max-width: 480px) {
    section.product-details-section .product-banner-img {
        margin-top: 10px !important; /* force override for very small screens */
    }
}








/* Tablet / small laptop */
@media (max-width: 1024px) {
    .hero-section10 {
        padding-top: 110px;
    }

        .hero-section10 h1 {
            font-size: 54px;
            line-height: 90px;
            margin-left: 40px;
        }
}

/* Mobile landscape / medium phones */
@media (max-width: 768px) {
    .hero-section10 {
        padding-top: 95px;
    }

        .hero-section10 h1 {
            font-size: 42px;
            line-height: 1.3;
            margin-left: 30px;
        }
}

/* Small phones */
@media (max-width: 480px) {

    .hero-section10 {
        font-family: "Filson Pro";
        margin: 0px;
        padding-top: 70px;
    }

        .hero-section10 h1 {
            font-family: "Filson Pro";
            font-size: 35px;
            line-height: 0.5;
            padding-top: 10px;
            text-align: center;
            margin-top: 0; /* Remove margin that was causing overlap */
            margin: 0;
            text-align: center;
        }
}

/* ============================= */
/* PRODUCT DETAILS SECTION       */
/* ============================= */
.product-details-section {
    background-color: var(--color-light-text);
    padding-bottom: 56px;
}

.product-banner-img {
    width: 100%;
    max-width: 1179px;
    display: block;
    margin: 100px auto 0;
}

.product-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 26px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 33px;
}

.product-intro-img-wrapper img {
    width: 100%;
    max-width: 558px;
    display: block;
}

.product-intro-text {
    color: var(--color-green-text);
    font-family: 'Filson Pro', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 34px;
}

.product-info-block {
    max-width: 1014px;
    margin: 44px auto 0;
}

.info-title {
    font-family: 'Filson Pro', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 34px;
    color: var(--color-secondary-purple);
    margin: 0 0 20px 0;
}

    .info-title .title-highlight-green {
        color: var(--color-green-text);
    }

.info-content {
    font-family: 'Filson Pro', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    color: var(--color-dark-text);
}

    .info-content strong {
        font-weight: 700;
    }

    .info-content ul {
        padding-left: 20px;
        margin: 0;
        font-weight: 700;
    }

        .info-content ul li {
            margin-bottom: 10px;
        }

    .info-content .title-highlight-purple {
        font-weight: 700;
        color: var(--color-secondary-purple);
    }

    .info-content .title-highlight-green {
        font-weight: 700;
        color: var(--color-green-text);
    }

/* Responsive product intro grid */
@media (max-width: 992px) {
    .product-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-intro-img-wrapper {
        margin: 0 auto;
    }
}

/* Smaller devices adjustments */
@media (max-width: 480px) {
    .product-intro-text {
        font-size: 18px;
        line-height: 28px;
        text-align: left;
    }

    .product-intro-grid {
        gap: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .info-title {
        font-size: 26px;
        line-height: 30px;
        text-align: center;
    }

    .info-content {
        font-size: 18px;
        line-height: 30px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-btn,
    .contact-btn4 {
        width: 90%;
        max-width: 280px;
        font-size: 18px;
    }
}
