/* =========================================
   YUVA MENS WEAR AND SPORTS WEAR
   MAIN STYLESHEET
========================================= */

:root {
    --black: #101214;
    --dark: #181c20;
    --dark-light: #242a30;
    --blue: #007bff;
    --blue-dark: #005fc7;
    --light-blue: #dceeff;
    --white: #ffffff;
    --light: #f5f7fa;
    --gray: #6b7280;
    --border: #dfe3e8;
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.10);
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
}


a {
    text-decoration: none;
    color: inherit;
}


.container {
    width: min(1150px, 90%);
    margin: auto;
}


/* HEADER */

.header {
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}


.logo-main {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
}


.logo-sub {
    margin-top: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--blue);
}


.nav-menu {
    display: flex;
    gap: 22px;
}


.nav-menu a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}


.nav-menu a:hover {
    color: var(--blue);
}


.header-btn {
    background: var(--blue);
    color: var(--white);
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}


.header-btn:hover {
    background: var(--white);
    color: var(--black);
}


/* HERO */

.hero {
    min-height: 650px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}


.hero-tag,
.section-tag {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
}


.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(50px, 7vw, 90px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -3px;
}


.hero h1 span {
    color: var(--blue);
}


.hero-text p {
    max-width: 600px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}


.btn {
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}


.btn-primary {
    background: var(--blue);
    color: var(--white);
}


.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
}


.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}


.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}


/* HERO SIDE */

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.hero-box {
    background: var(--dark-light);
    padding: 45px;
    position: relative;
    border-left: 6px solid var(--blue);
}


.box-number {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}


.hero-box h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 900;
    margin: 25px 0 15px;
}


.hero-box p {
    color: rgba(255, 255, 255, 0.65);
}


.hero-stat {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}


.hero-stat strong {
    display: block;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
}


.hero-stat span {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
}


.hero-shape {
    position: absolute;
    background: var(--blue);
    opacity: 0.08;
    transform: rotate(45deg);
}


.shape-one {
    width: 350px;
    height: 350px;
    right: -120px;
    top: -120px;
}


.shape-two {
    width: 250px;
    height: 250px;
    left: -100px;
    bottom: -100px;
}


/* GENERAL SECTIONS */

.section {
    padding: 100px 0;
}


.section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 800;
}


.section h2 span {
    color: var(--blue);
}


/* ABOUT */

.about-section {
    background: var(--light);
}


.about-grid {
    display: grid;
    grid-template-columns: 0.4fr 1.2fr;
    gap: 60px;
}


.section-label span {
    display: block;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 70px;
    font-weight: 900;
}


.section-label p {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.about-content p {
    margin-top: 22px;
    color: var(--gray);
    max-width: 750px;
}


/* COLLECTIONS */

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}


.section-heading > p:last-child {
    margin-top: 15px;
    color: var(--gray);
}


.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.collection-card {
    padding: 35px;
    min-height: 270px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: 0.3s;
}


.collection-card:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-8px);
}


.card-number {
    color: var(--blue);
    font-weight: 800;
}


.collection-card h3 {
    margin: 45px 0 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
}


.collection-card p {
    color: var(--gray);
}


.collection-card:hover p {
    color: rgba(255, 255, 255, 0.65);
}


.featured-card {
    border-top: 5px solid var(--blue);
}


/* FEATURE BANNER */

.feature-banner {
    background: var(--black);
    padding: 120px 0;
    color: var(--white);
}


.feature-content > p:first-child {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.feature-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(50px, 7vw, 90px);
    line-height: 1;
    margin-top: 25px;
    font-weight: 900;
}


.feature-content h2 span {
    color: var(--blue);
}


.feature-line {
    width: 100px;
    height: 5px;
    background: var(--blue);
    margin: 35px 0;
}


.feature-description {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.65);
}


/* WHY SECTION */

.why-section {
    background: var(--light);
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.why-card {
    background: var(--white);
    padding: 35px;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}


.why-card:hover {
    border-bottom-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}


.why-card > span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}


.why-card h3 {
    margin: 25px 0 12px;
    font-family: "Montserrat", sans-serif;
}


.why-card p {
    color: var(--gray);
}


/* LOCATION */

.location-section {
    background: var(--black);
    color: var(--white);
}


.location-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}


.location-title h2 {
    color: var(--white);
}


.location-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.detail-card {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}


.detail-card h4 {
    color: var(--blue);
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}


.detail-card p,
.detail-card a {
    color: rgba(255, 255, 255, 0.75);
}


.detail-card a:hover {
    color: var(--blue);
}


/* FORM */

.enquiry-section {
    background: var(--white);
}


.form-header {
    max-width: 700px;
    margin-bottom: 40px;
}


.form-header > p:last-child {
    margin-top: 15px;
    color: var(--gray);
}


.enquiry-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    background: var(--light);
    padding: 45px;
}


.form-group {
    display: flex;
    flex-direction: column;
}


.form-full {
    grid-column: 1 / -1;
}


.form-group label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}


.form-group label span {
    color: var(--blue);
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: "Inter", sans-serif;
    outline: none;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}


.form-group textarea {
    resize: vertical;
}


.submit-btn {
    border: none;
    background: var(--blue);
    color: var(--white);
    padding: 16px 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}


.submit-btn:hover {
    background: var(--black);
}


/* PAGE BANNER */

.page-banner {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
}


.page-banner h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(45px, 6vw, 75px);
    font-weight: 900;
    line-height: 1;
}


.page-banner h1 span {
    color: var(--blue);
}


.page-banner > .container > p:last-child {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.65);
}


/* CONTACT PAGE */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}


.contact-detail {
    margin-top: 30px;
}


.contact-detail h4 {
    color: var(--blue);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}


.contact-detail p,
.contact-detail a {
    color: var(--gray);
}


.contact-detail a:hover {
    color: var(--blue);
}


.contact-form-box {
    background: var(--light);
    padding: 45px;
}


.contact-page-form {
    margin-top: 30px;
}


.contact-page-form .form-group {
    margin-bottom: 20px;
}


/* POLICY */

.policy-section {
    background: var(--light);
}


.policy-content {
    max-width: 900px;
    background: var(--white);
    padding: 55px;
}


.policy-content h2 {
    margin-bottom: 45px;
}


.policy-content h3 {
    font-family: "Montserrat", sans-serif;
    margin-top: 35px;
    margin-bottom: 12px;
}


.policy-content p {
    color: var(--gray);
}


.policy-content a {
    color: var(--blue);
}


/* FOOTER */

.footer {
    background: var(--black);
    color: var(--white);
    padding-top: 70px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}


.footer-brand h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--blue);
}


.footer-brand p {
    max-width: 350px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.55);
}


.footer-column h4 {
    color: var(--blue);
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}


.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}


.footer-column a {
    display: block;
}


.footer-column a:hover {
    color: var(--blue);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 22px;
}


.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .hero-content,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


    .collection-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .hero {
        padding: 90px 0;
    }

}


@media (max-width: 800px) {

    .navbar {
        flex-direction: column;
        padding: 20px 0;
    }


    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }


    .about-grid {
        grid-template-columns: 1fr;
    }


    .location-details {
        grid-template-columns: 1fr;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .section {
        padding: 70px 0;
    }


    .hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }


    .collection-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }


    .enquiry-form {
        grid-template-columns: 1fr;
        padding: 25px;
    }


    .form-full {
        grid-column: auto;
    }


    .contact-form-box,
    .policy-content {
        padding: 25px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .btn {
        text-align: center;
    }


    .header-btn {
        display: none;
    }

}