/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul,
li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link a {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
}

.nav-link::before {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    transition: 0.3s;
}

.nav-link:hover::before {
    color: #ffeb3b;
}

.nav-link.one::before {
    content: "01.";
}

.nav-link.two::before {
    content: "02.";
}

.nav-link.three::before {
    content: "03.";
}

.nav-link.four::before {
    content: "04.";
}

.nav-link a:hover {
    color: #ffeb3b;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.8rem;
    opacity: 0.8;
}

.social-icons a:hover {
    color: #ffeb3b;
    opacity: 1;
    transform: translateY(-3px);
}

/* Hero Section */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #111;
    background-image: url("/images/Gemini_Generated_Image_vi326bvi326bvi32.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 100px;
}

.section .content {
    flex: 1;
    color: #fff;
}

.section .content h2:first-child {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffeb3b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section .content h1 {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.section .content h2:nth-of-type(2) {
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.home-btn button {
    background-color: #ffeb3b;
    color: #000;
    padding: 16px 40px;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.home-btn button:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.content-image img {
    max-width: 350px;
    border-radius: 10px;
    transform: rotate(-10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
}

.content-image img:hover {
    transform: rotate(0) scale(1.05);
}

.arrow-l,
.arrow-r {
    font-size: 4rem;
    color: #fff;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

.arrow-l {
    margin-right: 20px;
}

.arrow-r {
    margin-left: 20px;
}

.arrow-l:hover,
.arrow-r:hover {
    opacity: 1;
    color: #ffeb3b;
    transform: scale(1.2);
}

/* Clients / Choose your style */
.clients {
    padding: 100px 0;
    background-color: #fff;
}

.content-clients {
    text-align: center;
    margin-bottom: 60px;
}

.content-clients p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.content-clients h2 {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: capitalize;
    color: #111;
}

.images-clients {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client {
    text-align: center;
}

.client img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.client:hover img {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}



/* Client Stylish */
.client-stylish {
    position: relative;
    padding: 100px 0;
    background-color: #111;
    background-image: url("https://media.about.nike.com/img/71fbb222-326e-4bc3-8e4a-f0fbad0fc1fb/nike-inc-swoosh-jordan-converse-logos.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.client-stylish::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.client-stylish .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.content-clients-details {
    flex: 1;
}

.client-stylish img {
    flex: 1;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.content-client-stylish h6 {
    font-size: 1.6rem;
    color: #ffeb3b;
    font-weight: 700;
    margin-bottom: 10px;
}

.content-client-stylish h2 {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 40px;
}

.second-content-client-stylish {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.second-content-client-stylish p:first-child {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.second-content-client-stylish p:last-child {
    font-size: 1.6rem;
    opacity: 0.8;
    line-height: 1.8;
}

.btn-readMore {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    display: inline-flex;
}

.btn-readMore h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-readMore .arrow-r {
    font-size: 2.4rem;
    color: #ffeb3b;
    margin: 0;
    opacity: 1;
}

.btn-readMore:hover h2,
.btn-readMore:hover .arrow-r {
    color: #fff;
    transform: translateX(5px);
}

/* Logos */
.logos-clients .container {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logos-clients .container img {
  width: 15%;
  opacity: 30%;
  transition: all 0.3s;
}

.logos-clients .container img:hover {
  opacity: 100%;
}

/* Blog / Clients Copy */

.images-clients-copy {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.client{
  width:30%;
}
.clients-copy {
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #eee;
  min-height: 100vh;
}

.content-clients p {
  font-size: 25px;
}

.clients-copy .content-clients h2 {
  font-size: 35px;
}

.clients-copy .images-clients-copy .client h3 {
  font-size: 25px;
}

.clients-copy .images-clients-copy div .btn-readMore .arrow-r {
  color: black;
}

.first-image-clients,
.second-image-clients,
.third-image-clients {
  position: relative;
}

.images-clients-copy div img {
  height: fit-content;
  background-position: center;
  background-size: cover;
}

.rotate-paragraph {
  position: absolute;
  font-size: 16px;
  top: 50px;
  left: 90%;
  transform: rotate(90deg);
  display: flex;
  flex-wrap: wrap;
  width: 117px;
}

.images-clients-copy .btn-readMore:hover h2,
.images-clients-copy .btn-readMore:hover .arrow-r {
    color: #ffeb3b;
}

/* Icons features */
.icons {
    padding: 100px 0;
    background-color: #111;
    color: #fff;
    text-align: center;
}

.icons-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.icons-cards-top,
.icons-cards-bot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: 0.3s;
}

.icons-cards-bot {
    transform: translateY(40px);
}

.icons-cards-top:hover,
.icons-cards-bot:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.icons-cards-bot:hover {
    transform: translateY(30px);
}

.icons-content i {
    font-size: 5rem;
    color: #ffeb3b;
    margin-bottom: 25px;
    transition: 0.3s;
}

.icons-content h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.icons-content p {
    font-size: 1.5rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* New Releases */
.new-releases {
    position: relative;
    padding: 100px 0;
    background-color: #111;
    background-image: url("https://media.about.nike.com/img/71fbb222-326e-4bc3-8e4a-f0fbad0fc1fb/nike-inc-swoosh-jordan-converse-logos.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.new-releases::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.new-releases .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.image-new-releases {
    flex: 1;
    text-align: center;
}

.image-new-releases img {
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.section-new-releases {
    flex: 1;
}

.content-new-releases h6 {
    font-size: 1.6rem;
    color: #ffeb3b;
    font-weight: 700;
    margin-bottom: 10px;
}

.content-new-releases h2 {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 40px;
}

.second-content-new-releases {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.second-content-new-releases p:first-child {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.second-content-new-releases p:last-child {
    font-size: 1.6rem;
    opacity: 0.8;
    line-height: 1.8;
}

/* Our Brands */
.our-brands {
    padding: 100px 0;
    background-color: #fff;
}

.our-brands .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.left-side-brands {
    flex: 1;
}

.left-side-brands h2 {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: capitalize;
    color: #111;
    margin-bottom: 50px;
    line-height: 1.2;
}

.category {
    margin-bottom: 30px;
}

.category-name {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    color: #333;
}

.percentage {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    float: right;
}

.category .bar {
    height: 6px;
    background-color: #111;
    border-radius: 3px;
    position: relative;
    z-index: 2;
}

.category .bar::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    max-width: 100%;
    height: 100%;
    background-color: #181212;
    border-radius: 3px;
    z-index: -1;
}

.category hr {
    display: none;
}

.right-side-brands {
    flex: 1;
    text-align: center;
}

.right-side-brands img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

footer .container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-footer img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.logo-footer p {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    color: #fff;
}

footer h2 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
}

footer>.container>p {
    font-size: 1.8rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.last-section {
    background-color: #000;
    padding: 25px 0;
    text-align: center;
}

.last-section p {
    font-size: 1.4rem;
    color: #777;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .section .content h1 {
        font-size: 5rem;
    }

    .content-client-stylish h2,
    .content-new-releases h2,
    footer h2 {
        font-size: 4.5rem;
    }

    .arrow-l,
    .arrow-r {
        display: none;
    }

    .images-clients,
    .images-clients-copy,
    .icons-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .icons-cards-bot {
        transform: translateY(0);
        margin-top: 0;
    }

    .icons-cards-bot:hover {
        transform: translateY(-10px);
    }

    .client-stylish .container,
    .new-releases .container,
    .our-brands .container {
        flex-direction: column;
        text-align: center;
    }

    .client-stylish img,
    .image-new-releases img,
    .right-side-brands img {
        max-width: 100%;
        margin-top: 40px;
    }

    .second-content-client-stylish,
    .second-content-new-releases {
        flex-direction: column;
        gap: 15px;
    }

    .btn-readMore {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    header {
        background-color: #111;
    }

    header .container {
        flex-direction: column;
        padding: 20px;
        align-items: flex-start;
    }

    .logo {
        width: 100%;
    }

    /* Mobile Menu Fix for specific font-family overriding */
    .logo::after {
        content: "\f0c9";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 3rem;
        color: #fff;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin-top: 20px;
        gap: 0;
    }

    header:hover .nav-links {
        display: flex;
        gap: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::before {
        display: none;
    }

    .social-icons {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .section .container {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .section .content h1 {
        font-size: 4.5rem;
    }

    .content-image img {
        transform: rotate(0);
        margin-top: 20px;
    }

    .images-clients,
    .images-clients-copy,
    .icons-content {
        grid-template-columns: 1fr;
    }

    .rotate-paragraph {
        display: none;
    }

    .logos-clients img {
        width: 40%;
        margin-bottom: 20px;
    }

    .content-client-stylish h2,
    .content-new-releases h2,
    footer h2,
    .left-side-brands h2 {
        font-size: 3.5rem;
    }

    .second-content-client-stylish p:first-child,
    .second-content-new-releases p:first-child {
        font-size: 2.2rem;
    }

    .logo-footer img {
        margin: 0;
    }

    .logo-footer {
        flex-direction: column;
    }
}