/* =====================================================
   WW ENTERPRISES
   MAIN STYLESHEET
===================================================== */


/* =====================================================
   ROOT
===================================================== */

:root {

    --dark: #111111;
    --dark-2: #181818;
    --text: #222222;
    --muted: #777777;
    --light: #f5f3ef;
    --white: #ffffff;
    --gold: #a18452;
    --gold-light: #c2a66f;

}


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

p {
    line-height: 1.8;
    color: var(--muted);
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    padding: 18px 0;

    transition: all .3s ease;

    z-index: 1000;

}

.navbar.scrolled {

    background: rgba(17,17,17,.97);

    padding: 12px 0;

    box-shadow: 0 5px 30px rgba(0,0,0,.15);

}

.navbar-brand {

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-family: "Manrope", sans-serif;

    font-weight: 800;

    letter-spacing: .5px;

}

.navbar-brand:hover {
    color: white;
}

.ww-logo {

    width: 42px;

    height: 42px;

    object-fit: contain;

}

.brand-name {
    font-size: 16px;
}

.nav-link {

    color: rgba(255,255,255,.85) !important;

    font-size: 13px;

    font-weight: 600;

    margin: 0 7px;

    transition: .25s;

}

.nav-link:hover {
    color: var(--gold-light) !important;
}

.nav-project-btn {

    display: inline-block;

    margin-left: 12px;

    padding: 11px 18px;

    background: var(--gold);

    color: white;

    font-size: 12px;

    font-weight: 700;

    transition: .25s;

}

.nav-project-btn:hover {

    background: var(--gold-light);

    color: white;

}

.navbar-toggler {

    border: 1px solid rgba(255,255,255,.4);

}

.navbar-toggler:focus {

    box-shadow: 0 0 0 .15rem rgba(194,166,111,.25);

}

.navbar-toggler-icon {

    filter: invert(1);

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    color: white;

    overflow: hidden;

}

.hero-image {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    transform: scale(1.02);

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78),
            rgba(0,0,0,.35),
            rgba(0,0,0,.25)
        );

}

.hero-container {

    position: relative;

    z-index: 2;

    padding-top: 80px;

}

.hero-label {

    display: flex;

    gap: 12px;

    align-items: center;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 600;

    margin-bottom: 25px;

    color: rgba(255,255,255,.75);

}

.hero-section h1 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 6vw, 78px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -3px;

}

.hero-section h1 span {
    color: var(--gold-light);
}

.hero-section p {

    max-width: 600px;

    margin: 25px 0 32px;

    color: rgba(255,255,255,.8);

    font-size: 16px;

}

.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}

.btn-gold {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    background: var(--gold);

    color: white;

    border: none;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;

    cursor: pointer;

}

.btn-gold:hover {

    background: var(--gold-light);

    color: white;

    transform: translateY(-2px);

}

.btn-outline-light-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 22px;

    border: 1px solid rgba(255,255,255,.6);

    color: white;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;

}

.btn-outline-light-custom:hover {

    background: white;

    color: #111;

}

.hero-bottom {

    position: absolute;

    z-index: 3;

    bottom: 25px;

    left: 0;

    right: 0;

    display: flex;

    justify-content: space-between;

    padding: 0 5%;

    font-size: 10px;

    letter-spacing: 1.5px;

    color: rgba(255,255,255,.6);

}


/* =====================================================
   SECTIONS
===================================================== */

.section-padding {

    padding: 110px 0;

}

.section-label {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;

}

section h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 56px);

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -2px;

}

section h2 span {
    color: var(--gold);
}


/* =====================================================
   INTRO
===================================================== */

.intro-section {

    padding: 110px 0;

    background: var(--light);

}

.intro-section p {

    font-size: 16px;

}

.text-link {

    display: inline-flex;

    gap: 8px;

    align-items: center;

    margin-top: 15px;

    color: var(--text);

    font-weight: 700;

    font-size: 13px;

}

.text-link:hover {
    color: var(--gold);
}


/* =====================================================
   ABOUT
===================================================== */

.about-image {

    height: 600px;

    overflow: hidden;

}

.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.about-section p {

    margin-top: 20px;

}

.about-features {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    margin-top: 35px;

    border-top: 1px solid #ddd;

}

.about-features div {

    display: flex;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #ddd;

}

.about-features strong {

    color: var(--gold);

}

.about-features span {

    font-size: 13px;

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    background: #f8f7f4;

}

.service-grid {

    border-top: 1px solid #ddd;

    border-left: 1px solid #ddd;

}

.service-card {

    min-height: 280px;

    padding: 35px;

    border-right: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    transition: .3s;

}

.service-card:hover {

    background: white;

    transform: translateY(-4px);

}

.service-card > span {

    font-size: 11px;

    color: var(--gold);

}

.service-card i {

    display: block;

    font-size: 30px;

    margin: 30px 0 20px;

    color: var(--gold);

}

.service-card h3 {

    font-family: "Manrope", sans-serif;

    font-size: 22px;

}

.service-card p {

    font-size: 13px;

}


/* =====================================================
   PROJECTS
===================================================== */

.projects-section {

    background: #f5f3ef;

    overflow: hidden;

}

.project-grid {

    width: 100%;

}

.project-card {

    position: relative;

    width: 100%;

    height: 430px;

    overflow: hidden;

    background: #111;

    border-radius: 2px;

}

.project-large {

    height: 560px;

}

.project-medium {

    height: 480px;

}

.project-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform .8s ease;

}

.project-card:hover img {

    transform: scale(1.06);

}


/* PROJECT DARK OVERLAY */

.project-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.35) 45%,
            rgba(0,0,0,.05) 100%
        );

    z-index: 1;

}


/* PROJECT TEXT */

.project-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    padding: 35px;

    color: #fff;

}

.project-overlay small {

    display: block;

    margin-bottom: 10px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--gold-light);

}

.project-overlay h3 {

    margin: 0 0 10px;

    font-family: "Manrope", sans-serif;

    font-size: 28px;

    font-weight: 700;

    line-height: 1.2;

}

.project-overlay p {

    max-width: 450px;

    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255,255,255,.8);

}

.project-overlay > div {

    transform: translateY(10px);

    transition: transform .5s ease;

}

.project-card:hover .project-overlay > div {

    transform: translateY(0);

}


/* PROJECT FOOTER */

.projects-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid rgba(0,0,0,.12);

}

.projects-footer p {

    margin: 0;

    font-size: 14px;

    color: #666;

}

.projects-footer .text-link {

    color: #111;

}


/* =====================================================
   WERVONIK
===================================================== */

.wervonik-section {

    background: var(--light);

}

.wervonik-tags {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin: 25px 0;

}

.wervonik-tags span {

    padding: 9px 13px;

    border: 1px solid #d4d0c8;

    font-size: 11px;

}

.wervonik-box {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 60px 30px;

    background: white;

    min-height: 400px;

}

.wervonik-logo-circle {

    width: 230px;

    height: 230px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

    overflow: hidden;

    padding: 35px;

}

.wervonik-logo-img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

}

.wervonik-box p {

    margin-top: 25px;

    font-size: 11px;

    letter-spacing: 2px;

}


/* =====================================================
   PROCESS
===================================================== */

.process-section {

    background: white;

}

.process-row {

    margin-top: 55px;

}

.process-card {

    border-top: 2px solid var(--gold);

    padding: 25px 5px;

}

.process-card strong {

    color: var(--gold);

    font-size: 12px;

}

.process-card h3 {

    font-family: "Manrope", sans-serif;

    margin-top: 25px;

}

.process-card p {

    font-size: 13px;

}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {

    background: var(--light);

}

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 30px;

}

.contact-details a {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #333;

    font-size: 14px;

    font-weight: 600;

}

.contact-details a:hover {

    color: var(--gold);

}

.contact-details i {

    color: var(--gold);

}

.contact-details p {

    font-size: 13px;

}

.contact-form-box {

    background: white;

    padding: 40px;

    box-shadow: 0 15px 50px rgba(0,0,0,.06);

}

.form-control,
.form-select {

    border-radius: 0;

    border-color: #ddd;

}

.form-control:focus,
.form-select:focus {

    border-color: var(--gold);

    box-shadow: 0 0 0 .15rem rgba(161,132,82,.12);

}


/* CONTACT METHOD */

.contact-method {

    margin: 20px 0 25px;

}

.contact-method p {

    font-size: 12px;

    font-weight: 600;

    color: #333;

    margin-bottom: 10px;

}

.contact-method-options {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}

.contact-option {

    cursor: pointer;

}

.contact-option input {

    display: none;

}

.contact-option span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 11px 18px;

    border: 1px solid #ddd;

    color: #555;

    font-size: 12px;

    font-weight: 600;

    transition: .25s;

}

.contact-option span i {

    font-size: 16px;

}

.contact-option:hover span {

    border-color: var(--gold);

}

.contact-option input:checked + span {

    background: var(--gold);

    border-color: var(--gold);

    color: white;

}

.form-submit {

    width: 100%;

}

.form-submit:disabled {

    opacity: .7;

    cursor: not-allowed;

}


/* =====================================================
   FORM STATUS
===================================================== */

.form-success {

    margin-bottom: 20px;

    padding: 14px 16px;

    background: #eaf7ee;

    border: 1px solid #b7dfc2;

    color: #216e39;

    font-size: 13px;

    line-height: 1.6;

}

.form-error {

    margin-bottom: 20px;

    padding: 14px 16px;

    background: #fff0f0;

    border: 1px solid #e5bcbc;

    color: #a33a3a;

    font-size: 13px;

    line-height: 1.6;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #111;

    color: white;

    padding-top: 75px;

}

.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    font-weight: 800;

}

.footer-brand:hover {

    color: white;

}

.footer-brand img {

    width: 42px;

    height: 42px;

    object-fit: contain;

}

.footer-description {

    max-width: 480px;

    margin-top: 16px;

    color: #888;

    font-size: 12px;

    line-height: 1.8;

}

.footer h5 {

    font-size: 11px;

    letter-spacing: 2px;

    color: var(--gold-light);

    margin-bottom: 20px;

}

.footer a:not(.footer-brand) {

    display: block;

    color: #999;

    font-size: 13px;

    margin-bottom: 12px;

    transition: .25s;

}

.footer a:hover {

    color: white;

}

.footer-bottom {

    border-top: 1px solid #292929;

    margin-top: 60px;

    padding: 20px 0;

    color: #666;

    font-size: 11px;

}

.footer-bottom .container {

    display: flex;

    justify-content: space-between;

}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-btn {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 54px;

    height: 54px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    z-index: 999;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    transition: .3s;

}

.whatsapp-btn:hover {

    color: white;

    transform: scale(1.08);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .navbar {

        background: rgba(17,17,17,.97);

    }

    .navbar-collapse {

        background: #111;

        padding: 20px;

        margin-top: 15px;

    }

    .nav-link {

        margin: 8px 0;

    }

    .nav-project-btn {

        margin: 10px 0 0;

        display: inline-block;

    }

    .hero-section h1 {

        letter-spacing: -2px;

    }

    .hero-bottom {

        display: none;

    }

    .about-image {

        height: 450px;

    }

    .project-card,
    .project-large,
    .project-medium {

        height: 450px;

    }

    .project-overlay {

        padding: 28px;

    }

    .project-overlay h3 {

        font-size: 24px;

    }

}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 767px) {

    .section-padding {

        padding: 75px 0;

    }

    .intro-section {

        padding: 75px 0;

    }

    .hero-section {

        min-height: 720px;

    }

    .hero-section h1 {

        font-size: 43px;

    }

    .hero-section p {

        font-size: 14px;

    }

    .hero-label {

        font-size: 9px;

        letter-spacing: 1.5px;

        flex-wrap: wrap;

    }

    .about-image {

        height: 350px;

    }

    .project-card,
    .project-large,
    .project-medium {

        height: 380px;

    }

    .project-overlay {

        padding: 22px;

    }

    .project-overlay h3 {

        font-size: 21px;

    }

    .project-overlay p {

        font-size: 13px;

        line-height: 1.6;

    }

    .projects-footer {

        display: block;

    }

    .projects-footer p {

        margin-bottom: 12px;

    }

    .wervonik-box {

        min-height: 330px;

        padding: 40px 20px;

    }

    .wervonik-logo-circle {

        width: 190px;

        height: 190px;

        padding: 28px;

    }

    .contact-form-box {

        padding: 25px 20px;

    }

    .footer-bottom .container {

        flex-direction: column;

        gap: 8px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .container {

        padding-left: 20px;

        padding-right: 20px;

    }

    .brand-name {

        font-size: 14px;

    }

    .ww-logo {

        width: 36px;

        height: 36px;

    }

    .hero-container {

        padding-top: 70px;

    }

    .hero-section h1 {

        font-size: 38px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .btn-gold,
    .btn-outline-light-custom {

        justify-content: center;

        width: 100%;

    }

    .about-features {

        grid-template-columns: 1fr;

    }

    .service-card {

        min-height: auto;

        padding: 30px;

    }

    .project-card,
    .project-large,
    .project-medium {

        height: 330px;

    }

    .project-overlay {

        padding: 18px;

    }

    .project-overlay h3 {

        font-size: 19px;

    }

    .project-overlay small {

        font-size: 9px;

        letter-spacing: 1.5px;

    }

    .contact-method-options {

        width: 100%;

    }

    .contact-option {

        flex: 1;

    }

    .contact-option span {

        width: 100%;

    }

    .whatsapp-btn {

        right: 15px;

        bottom: 15px;

        width: 50px;

        height: 50px;

    }

}