@font-face {
    font-family: 'StretchPro';
    src: url('fonts/StretchPro.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ArtegraSansExtendedSC-Bold';
    src: url('fonts/ArtegraSansExtendedSC-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ArtegraSansExtendedSC-Medium';
    src: url('fonts/ArtegraSansExtendedSC-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'StretchPro', 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Nav Section */
.nav-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px 0;
}

.logo {
    margin-bottom: 0;
}

.main-logo {
    height: 40px;
    width: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 0 1 auto;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.main-text {
    font-size: 72px;
    font-weight: bold;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 50px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-contact {
    background-color: #36a5e7;
    color: #ffffff;
    border-radius: 50px;
}

.btn-order {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
}

.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.green-box {
    width: 100%;
    height: 500px;
    background-color: #32CD32;
    border-radius: 12px;
}

.jerseys-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 968px) {
    .content-wrapper {
        flex-direction: column;
    }

    .main-text {
        font-size: 48px;
    }

    .green-box {
        height: 300px;
    }

    .jerseys-hero-image {
        height: 300px;
    }
}

/* Features Section */
.features-section {
    background-color: #2a2a2a;
    padding: 80px 60px;
    width: 100%;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
}

.feature-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

/* Individual icon sizing to ensure similar visual size */
.feature-column:nth-child(1) .feature-icon {
    max-width: 50px;
    max-height: 50px;
}

.feature-column:nth-child(2) .feature-icon {
    max-width: 80px;
    max-height: 80px;
}

.feature-column:nth-child(3) .feature-icon {
    max-width: 80px;
    max-height: 80px;
}

.feature-title {
    font-family: 'ArtegraSansExtendedSC-Bold', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.feature-description {
    font-family: 'ArtegraSansExtendedSC-Medium', 'Arial', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 968px) {
    .features-container {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .features-section {
        padding: 60px 40px;
    }

    .feature-column {
        align-items: center;
    }
}

/* Why Pick Us Section */
.why-pick-us-section {
    background-color: #000000;
    padding: 80px 60px;
    width: 100%;
}

.why-pick-us-title {
    font-family: 'StretchPro', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 60px;
}

.why-pick-us-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.perks-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
}

.perks-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.perk-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.perks-left .perk-item {
    text-align: right;
    align-items: flex-end;
}

.perks-right .perk-item {
    text-align: left;
    align-items: flex-start;
}

.perk-title {
    font-family: 'ArtegraSansExtendedSC-Bold', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perk-desc {
    font-family: 'ArtegraSansExtendedSC-Medium', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-pick-us-green-box {
    width: 400px;
    height: 400px;
    background-color: #32CD32;
    border-radius: 8px;
}

/* Pricing Table */
.pricing-table-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.table-header-left {
    background-color: #36a5e7;
    color: #ffffff;
    font-family: 'StretchPro', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 20px;
    text-align: left;
    border: 2px solid #000000;
}

.table-header {
    background-color: #36a5e7;
    color: #ffffff;
    font-family: 'StretchPro', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 20px;
    text-align: center;
    border: 2px solid #000000;
}

.table-row-header {
    background-color: #000000;
    color: #ffffff;
    font-family: 'StretchPro', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 20px;
    text-align: left;
    border: 2px solid #000000;
}

.table-cell {
    background-color: #ffffff;
    color: #000000;
    font-family: 'StretchPro', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 20px;
    text-align: center;
    border: 2px solid #000000;
}

.pricing-footer {
    text-align: center;
    margin-top: 20px;
}

.pricing-footer-text {
    font-family: 'StretchPro', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-footer-contact {
    font-family: 'StretchPro', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightning-logo {
    width: 50px;
    height: 50px;
    background-color: #000000;
    border-radius: 50%;
    border: 2px solid #ffffff;
    position: relative;
}

.lightning-logo::before {
    content: '⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #ffffff;
}

@media (max-width: 968px) {
    .why-pick-us-section {
        padding: 60px 40px;
    }

    .why-pick-us-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .why-pick-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .center-image {
        order: -1;
    }

    .why-pick-us-green-box {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .pricing-table-container {
        max-width: 100%;
        padding: 20px;
    }

    .pricing-table {
        font-size: 12px;
    }

    .table-header-left,
    .table-header {
        font-size: 12px;
        padding: 10px 12px;
    }

    .table-row-header,
    .table-cell {
        font-size: 12px;
        padding: 10px 12px;
    }

    .pricing-footer-text {
        font-size: 20px;
    }

    .pricing-footer-contact {
        font-size: 16px;
    }

    .perks-left,
    .perks-right {
        gap: 30px;
        align-items: center;
    }

    .perk-item {
        text-align: center;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: #2a2a2a;
    padding: 80px 60px;
    width: 100%;
}

.reviews-title {
    font-family: 'StretchPro', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 60px;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.review-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 250px;
    text-align: center;
    align-items: center;
}

.reviewer-name {
    font-family: 'ArtegraSansExtendedSC-Bold', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-text {
    font-family: 'ArtegraSansExtendedSC-Medium', 'Arial', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-top: auto;
    justify-content: center;
}

.star {
    color: #87CEEB;
    font-size: 20px;
}

@media (max-width: 1200px) {
    .reviews-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .review-card {
        max-width: 300px;
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 40px;
    }

    .reviews-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Placeholder Section */
.placeholder-section {
    background-color: #ffffff;
    padding: 80px 60px;
    width: 100%;
}

.placeholder-content {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
}

@media (max-width: 768px) {
    .placeholder-section {
        padding: 60px 40px;
    }

    .placeholder-content {
        min-height: 300px;
    }
}

/* Logo Section */
.logo-section {
    background-color: #000000;
    padding: 80px 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-desktop {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
}

.logo-mobile {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: none;
}

@media (max-width: 768px) {
    .logo-section {
        padding: 60px 40px;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }
}

/* Footer Section */
.footer-section {
    background-color: #000000;
    padding: 80px 60px;
    width: 100%;
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-logo {
    flex-shrink: 0;
}

.k-logo {
    width: 80px;
    height: 80px;
}

.footer-columns {
    display: flex;
    gap: 100px;
    flex-shrink: 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-family: 'ArtegraSansExtendedSC-Bold', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'ArtegraSansExtendedSC-Medium', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

@media (max-width: 968px) {
    .footer-section {
        padding: 60px 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 60px;
    }

    .footer-columns {
        gap: 60px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }
}
