/* css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Tropiline';
    src: url('../tropiline/Tropiline-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'industry';
    src: url('../industry/IndustryTest-Demi.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.main{
    max-width: 1265px;
}

.retailers {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
}
.retailer-svg {
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    height: 45px;
    margin: 7px 12px 7px 0;
    width: 104px;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/header-two.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin: auto;
}

.p-all {
    padding: 12rem 8rem;
}

.hero-text h1 {
    color: #FFF;
    font-family: 'Tropiline';
    font-size: 98px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 98px */
    letter-spacing: -1.4px;
}

.lead {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    letter-spacing: -1.4px;
}

.hero-text p {
    font-family: "Inter", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 3;
    /* background-color: #e2e6ea; */
}

.navbar-scrolled {
    background-color: #9D8A70 !important;
    transition: background-color #9D8A70 0.3s ease;
}


.navbar-custom .nav-link {
    color: #fff !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin-left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* .navbar-custom .nav-item:first-child .nav-link {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
} */

.navbar-custom .nav-item:first-child .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}


.btn-contact {
    border-radius: 80px;
    background: #574f4f;
    backdrop-filter: blur(20px);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-family: "Inter", sans-serif;

    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-contact:hover {
    background-color: #e2e6ea;
    /* Slightly darker on hover */
    color: #212529;
}

.btn-contact svg {
    margin-left: 0.5rem;
    width: 1.2em;
    height: 1.2em;
}

.btn-view {
    background-color: #9D8A70;
    border-radius: 80px;
    backdrop-filter: blur(20px);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-family: "Inter", sans-serif;

    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.person-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
    width: 50%;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.section-subtitle {
    display: flex;
    align-items: center;
    color: #8D7B68;
    font-family: "Inter", sans-serif;

    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle::before {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: #8D7B68;
    margin-right: 15px;
    max-width: 50px;
}

.about-title {
    display: flex;
    height: 59px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: #000;
    font-family: 'Tropiline';
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.about-para {
    color: #364152;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: -0.54px;
}

.quote {
    background-color: rgba(157, 138, 112, 0.2);
}

.quote-name {
    color: #000;
    text-align: center;
    font-family: "industry";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 36.4px */
}

.quote-desc {
    color: #9D8A70;
    text-align: center;
    font-family: 'Tropiline';
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 62.1px */
}

.stay-connected-section {
    background-color: rgba(157, 138, 112, 0.2);
}

.input-custom {
    border-bottom: 1px solid rgba(255, 255, 255, 1) !important;
    border-radius: 0px;
    background-color: transparent;
    overflow: hidden;
    color: #666;
    text-overflow: ellipsis;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-text-md, 24px);
    /* 133.333% */
}

.input-custom:focus {
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.connected-title {
    color: #000;
    font-family: "Tropiline";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.btn-send-message {
    display: flex;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    gap: 19px;
    align-self: stretch;
    background-color: #9D8A70;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
    width: 100%;
    border-radius: 35px;
}

.btn-send-message:hover {
    background-color: #9D8A70;
    color: #FFF;
}

.about-nav {
    background-color: #9D8A70;
}

.about-para-two {
    color: #364152;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: -0.54px;
}

.list-num {
    background-color: rgba(157, 138, 112, 0.2);
    width: 19px;
    height: 19px;
    border-radius: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.list-div p {
    margin-bottom: 4px;
}

.mudder {
    background-image: url('../images/mudder.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-left: 32px;
    padding-right: 32px;
}

.mudder-two {
    background-image: url('../images/mudder-two.png?ver=20250618');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-left: 32px;
    padding-right: 32px;
}

.tough-mudder-caption {
    color: #FFF;
    font-family: "Inter", sans-serif;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
    backdrop-filter: blur(5px);
}

.footer-mail {
    color: #181D27;
    font-family: "Inter", sans-serif;
    font-size: var(--Font-size-text-xl, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer-text {
    color: #535862;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.element {
    border-radius: 12px;
    border: 2px solid #FFF;
    background: rgba(255, 255, 255, 0.34);
}

.bottom-text {
    color: #181D27;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.profile {
    /* height: 751px; */
    /* object-fit: cover; */
}

.book-desc {
    color: #364152;
    font-family: "Inter", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 112% */
    letter-spacing: -0.75px;
}

.overlay-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    /* semi-transparent black */
    width: 100%;
    backdrop-filter: blur(2px);
}

.stars-img {
    height: 20px;
    /* Adjust as needed */
}

.author {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    /* 122.222% */
    letter-spacing: -0.72px;
}

@media (max-width: 768px) {

    /* Mobile */

    .author{
        font-size: 16px;
    }
    .margin-about {
        margin-top: 110px;
    }

    .p-top {
        margin-top: 185px;
    }

    .mudder {
        height: 500px !important;
        background-position: top center;
    }

    .mudder-two {
        height: 500px !important;
        background-position: top center;
    }

    .tough-mudder-caption {
        font-size: 14px;
    }

    .bottom-text {
        font-size: 15px;
    }

    .p-all {
        padding: 12rem 2rem;
    }

    .quote-desc {
        font-size: 23px;
        margin-top: 15px !important;
    }

    .about-title,
    .connected-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1.25rem;
    }

    .navbar-custom .navbar-nav {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .navbar-custom .nav-link {
        margin: 0 0.5rem;
    }

    .person-image {
        display: none;
    }

    .container-image {
        padding: 0px;
    }

    .btn-view {
        width: 100%;
    }
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media (min-width: 600px) and (max-width: 991px) {
      .author{
        font-size: 20px;
    }
    .p-top {
        margin-top: 350px;
    }

    .about-para-two {
        font-size: 25px;
    }

    .list-div p {
        font-size: 25px;
    }

    .list-div {
        margin-bottom: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 7rem;
    }

    .hero-text p {
        font-size: 2.5rem;
    }

    .p-all {
        padding: 12rem 2rem;
    }

    .btn-contact {
        width: auto;
        padding: 1.8rem 5rem;
        font-size: 30px;
    }

    .container-image {
        padding: auto;
    }

    .btn-view {
        width: 100%;
    }

    .bottom-text {
        font-size: 25px;
    }

    .about-title .connected-title {
        font-size: 50px;
    }

    .section-subtitle {
        font-size: 30px;
    }

}

/* Medium devices (landscape tablets, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    /* CSS rules for laptops */
}

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* CSS rules for large screens */
}