/* =====================================================
   DAN'S SUPERKICKS — MAIN STYLESHEET
   ===================================================== */


/* ==================== RESET ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==================== GLOBAL ==================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}


/* ==================== HEADER ==================== */

.site-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 7%;

    background: #0a0a0a;

    border-bottom: 1px solid #242424;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span {
    color: #888888;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: bold;
    color: #bbbbbb;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.cart-button {
    border: 1px solid #444444;

    padding: 10px 16px;

    font-size: 13px;
    font-weight: bold;

    transition: all 0.2s ease;
}

.cart-button:hover {
    background: #ffffff;
    color: #000000;
}

.cart-button span {
    margin-left: 5px;
}


/* ==================== HERO ==================== */

.hero {
    min-height: 85vh;

    padding: 100px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    overflow: hidden;
}

.hero-content {
    max-width: 900px;
}

.eyebrow {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;

    color: #888888;
}

.hero h1 {
    font-size: clamp(55px, 9vw, 120px);

    line-height: 0.88;

    letter-spacing: -6px;

    max-width: 1000px;
}

.hero h1 span {
    display: block;
    color: #777777;
}

.hero-description {
    max-width: 600px;

    margin: 35px 0;

    font-size: 19px;

    color: #bbbbbb;
}

.hero-actions {
    display: flex;
    gap: 15px;

    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-block;

    padding: 15px 24px;

    font-size: 13px;
    font-weight: bold;

    transition: all 0.2s ease;
}

.primary-button {
    background: #ffffff;
    color: #000000;
}

.primary-button:hover {
    transform: translateY(-3px);
}

.secondary-button {
    border: 1px solid #444444;
    color: #ffffff;
}

.secondary-button:hover {
    background: #ffffff;
    color: #000000;
}

.hero-badge {
    width: 150px;
    height: 150px;

    border: 1px solid #444444;
    border-radius: 50%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    transform: rotate(10deg);
}

.hero-badge span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #888888;
}

.hero-badge strong {
    font-size: 20px;
    line-height: 1;
}


/* ==================== STATS ==================== */

.stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
}

.stat {
    padding: 35px;

    text-align: center;

    border-right: 1px solid #242424;
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;

    font-size: 30px;

    margin-bottom: 5px;
}

.stat span {
    font-size: 12px;

    color: #888888;

    letter-spacing: 1px;
}


/* ==================== COLLECTION ==================== */

.collection {
    padding: 120px 7%;
}

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 40px;

    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: clamp(45px, 7vw, 85px);

    line-height: 0.9;

    letter-spacing: -4px;
}

.section-description {
    max-width: 350px;

    color: #999999;
}

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ==================== PRODUCT CARDS ==================== */

.product-card {
    background: #151515;

    border: 1px solid #242424;

    transition: transform 0.25s ease,
                border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-8px);

    border-color: #555555;
}

.product-image {
    height: 350px;

    position: relative;

    overflow: hidden;

    background: #202020;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 10px;

    background: #ffffff;
    color: #000000;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 1px;
}

.product-info {
    padding: 25px;
}

.product-category {
    margin-bottom: 8px;

    font-size: 10px;

    color: #777777;

    letter-spacing: 2px;
}

.product-info h3 {
    margin-bottom: 10px;

    font-size: 28px;

    letter-spacing: -1px;
}

.product-description {
    margin-bottom: 25px;

    color: #999999;

    font-size: 14px;
}

.product-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;
}

.product-bottom strong {
    font-size: 20px;
}

.product-bottom button {
    border: 1px solid #444444;

    background: transparent;

    color: #ffffff;

    padding: 9px 14px;

    cursor: pointer;

    font-size: 11px;
    font-weight: bold;

    transition: all 0.2s ease;
}

.product-bottom button:hover {
    background: #ffffff;
    color: #000000;
}


/* ==================== NEW DROP ==================== */

.new-drop {
    min-height: 600px;

    padding: 100px 7%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    background: #151515;

    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
}

.new-drop-content {
    max-width: 800px;
}

.new-drop h2 {
    margin-bottom: 30px;

    font-size: clamp(50px, 8vw, 100px);

    line-height: 0.88;

    letter-spacing: -5px;
}

.new-drop h2 span {
    display: block;

    color: #777777;
}

.new-drop-content > p:not(.eyebrow) {
    max-width: 500px;

    margin-bottom: 30px;

    color: #aaaaaa;

    font-size: 18px;
}

.drop-number {
    font-size: 180px;

    font-weight: 900;

    color: #222222;

    line-height: 1;
}


/* ==================== ABOUT ==================== */

.about {
    padding: 120px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.about-heading h2 {
    font-size: clamp(50px, 7vw, 90px);

    line-height: 0.88;

    letter-spacing: -5px;
}

.about-heading h2 span {
    display: block;

    color: #777777;
}

.about-text {
    max-width: 550px;
}

.about-text p {
    margin-bottom: 25px;

    color: #aaaaaa;

    font-size: 19px;
}


/* ==================== NEWSLETTER ==================== */

.newsletter {
    padding: 100px 7%;

    text-align: center;

    background: #ffffff;

    color: #000000;
}

.newsletter h2 {
    margin-bottom: 25px;

    font-size: clamp(50px, 8vw, 100px);

    line-height: 0.9;

    letter-spacing: -5px;
}

.newsletter h2 span {
    display: block;

    color: #777777;
}

.newsletter > p:not(.eyebrow) {
    max-width: 550px;

    margin: 0 auto 35px;

    color: #555555;
}

.newsletter form {
    max-width: 600px;

    margin: auto;

    display: flex;
}

.newsletter input {
    flex: 1;

    padding: 16px;

    border: 1px solid #cccccc;

    outline: none;
}

.newsletter form button {
    padding: 16px 25px;

    border: none;

    background: #000000;

    color: #ffffff;

    font-weight: bold;

    cursor: pointer;
}


/* ==================== FOOTER ==================== */

.site-footer {
    padding: 60px 7%;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 40px;

    background: #0a0a0a;

    color: #888888;
}

.site-footer h3 {
    margin-bottom: 10px;

    color: #ffffff;
}

.site-footer p {
    font-size: 13px;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links a {
    font-size: 13px;
}

.footer-links a:hover {
    color: #ffffff;
}


/* ==================== MOBILE ==================== */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 75vh;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-badge {
        display: none;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid #242424;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        flex-direction: column;

        align-items: flex-start;
    }

    .about {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .drop-number {
        display: none;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .site-header {
        padding: 20px 5%;
    }

    .cart-button {
        padding: 8px 11px;
    }

    .hero,
    .collection,
    .new-drop,
    .about,
    .newsletter {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .newsletter form {
        flex-direction: column;

        gap: 10px;
    }

    .newsletter input,
    .newsletter form button {
        width: 100%;
    }

}
