* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Anek Telugu", sans-serif;
}

body {
    background-color: rgba(19, 15, 23, 255);
    color: white;
}

#mobile {
    display: none;
}

section, div {
    border: none;
}

/* <!------------------------------nav bar------------------------------> */

nav {
    background: transparent;
    max-height: 80px;
    width: 100%;
    position: absolute;
    z-index: 100;
}

.logo {
    width: 90px;
    margin-left: 30px;
    margin-top: 20px;
}

nav ul {
    float: right;
    margin-right: 30px;
    margin-top: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 70px;
}

nav ul li a {
    color: lightgray;
    font-size: 17px;
    margin: 0px 13px;
    text-decoration: none;
    list-style: none;
    transition: 0.25s ease-in-out;
}

nav ul li a:hover {
    opacity: 0.6;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 30px;
    margin-top: 15px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

.lock-scroll {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

/* <!------------------------------hero------------------------------> */

.hero {
    background-color: rgba(19, 15, 23, 255);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 50px 10px 50px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 35px;
    margin-top: -25px;
    font-weight: 400;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 7px;
    transition: background 0.25s ease-in-out;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-badge i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-badge span {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* <!------------------------------apparel showcase------------------------------> */

.apparel-showcase {
    background-color: rgba(19, 15, 23, 255);
    padding: 80px 50px 120px 50px;
}

.showcase-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.apparel-card {
    position: relative;
    height: 500px;
    border-radius: 7px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease;
    background-size: cover;
    background-position: center;
}

.apparel-card:hover {
    transform: translateY(-5px);
}

#card-sweatshirt {
    background-image: url('images/sweatshirt.webp');
}

#card-hoodie {
    background-image: url('images/hoodie.webp');
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.25s ease;
    border-radius: 7px;
}

.apparel-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.card-icon {
    font-size: 40px;
    color: white;
    margin-bottom: 18px;
    opacity: 0.9;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.card-description {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.card-price {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.card-sizes {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* <!------------------------------footer------------------------------> */

.footer {
    background-color: rgba(19, 15, 23, 255);
}

.container-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 15px;
}

#footer-logo {
    width: 70px;
}

#footer-links {
    color: white;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

#footer-links:hover {
    opacity: 0.6;
}

.container-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* <!------------------------------responsive------------------------------> */

@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }

    #mobile {
        display: block;
    }

    ul {
        position: fixed;
        width: 100%;
        height: 110%;
        background: rgba(53, 41, 64, 1);
        top: -30px;
        margin: 0;
        left: -100%;
        text-align: center;
        transition: all 0.25s;
    }

    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a {
        font-size: 20px;
    }

    #check:checked ~ ul {
        left: 0;
    }

    .hero {
        min-height: 50vh;
        padding: 140px 30px 80px 30px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 16px;
    }

    .apparel-showcase {
        padding: 60px 30px 100px 30px;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .apparel-card {
        height: 450px;
    }
}

@media (max-width: 392px) {
    .logo {
        width: 75px;
        margin-left: 35px;
        margin-top: 25px;
    }

    .checkbtn {
        font-size: 25px;
        margin-top: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-description {
        font-size: 15px;
    }

    .apparel-card {
        height: 400px;
    }

    .card-overlay {
        padding: 30px;
    }

    .card-icon {
        font-size: 36px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-price {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    #footer-logo {
        width: 70px;
    }
}

