/* Announcement Bar */
.announcement-bar {
    background-color: #fff;
    padding: 16px 32px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}



/*===== HEADER + Nav =====*/
.header {
    background-image: linear-gradient(to right bottom, #5c5c5c, #434343);
    border: 6px outset #4a4a4a;
    position: relative;
    width: 100%;
    padding: 1px;
    z-index: 9999;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.24);
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-btn, .cart-btn {
    cursor: pointer;
    border: none;
    background: none;
}

.cart-icon-svg {
    width: 38px;
    height: 38px;
    fill: #fff;
    display: block;
}

.cart-btn {
    padding: 15px;
    transition: all 0.3s;
}

.street-smrt-logo {
    width: 160px;
    height: auto;
    display: block;
}

.logo {
    padding: 15px;
}

.nav-bar {
    position: absolute;
    top: calc(100% + 5.6px);
    left: -6px;
    width: calc(100% + 12px);
    height: 100vh;
    background-image: linear-gradient(to right bottom, #dbdbdb, #b7b7b7);
    border: 6px inset #c9c9c9;
    padding: 12px;
    transform: translateX(100%);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 3;
}

.nav-open .nav-bar {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.nav-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    list-style: none;
}

.nav-link {
    display: inline-block;
    font-size: 2rem;
    transition: all 0.1s ease;
    width: 100%;
    border: 4px outset #c9c9c9;
    padding: 4px 8px;
}

.nav-link:link, .nav-link:visited {
    color: #000;
    text-decoration: none;
}

.nav-search-bar {
    flex-basis: 100%;
    margin: 2px 15px 15px 15px;
    border: 4px outset #c9c9c9;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
}

.nav-search-bar-form {
    display: flex;
}

.nav-search-bar-input {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 1.1rem;
    border-radius: 0;

    -webkit-appearance: none;
    appearance: none;
}

.search-icon-svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.search-btn {
    border: none;
    background-color: #5603AD;
    background-color: #6622CC;
    background-color: #DE1A1A;
    background-image: linear-gradient(to right bottom, #4d4d4d, #000);
    
    width: 64px;
    height: auto;
    cursor: pointer;
}

.nav-left, .logo, .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
}



/*~~~~~ ANIMATED HAMBURGER ~~~~~*/
.hamburger {
    opacity: 1;
    transition: all 0.3s;
}

.hamburger .hamburger-inner,
.hamburger .hamburger-inner::before,
.hamburger .hamburger-inner::after {
    background-color: #fff;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger.is-active:hover {
    opacity: 1; 
}



/*===== MAIN =====*/
/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url("background-images/hero-glitch.webp");
    background-size: cover;
    background-position: center;
    
    z-index: 1;
}

.shop-now-link-btn {
    position: absolute;
    display: inline-block;
    background-color: #DE1A1A;
    border: 4px outset #c9c9c9;
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px 32px;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.24);
}

.shop-now-link-btn:link, .shop-now-link-btn:visited {
    color: #fff;
    text-decoration: none;
}

.bar {
    width: 100vw;
    height: 32px;
    background-image: linear-gradient(to right bottom, #5c5c5c, #434343);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.24);
    margin-bottom: 24px;
}



/* Featured Items */
.featured-items-section {
    margin-bottom: 96px;
}

.featured-items-heading {
    font-size: 2rem;
    margin-bottom: 12px;
}

.featured-item-link {
    transition: all 0.1s ease;
}

.featured-item-link:link, .featured-item-link:visited {
    color: #000;
    text-decoration: none;
}

.featured-item-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}



/* Sizes */
.sizes-heading {
    font-size: 2rem;
    margin-bottom: 24px;
}

.sizes-div {
    background-image: linear-gradient(to right bottom, #5c5c5c, #434343);
    border: 6px outset #c9c9c9;
    padding: 24px 0px;
    margin-bottom: 96px;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.24);
    font-weight: 900;
    font-style: italic;
    font-size: 1.5rem;
}

.sizes-ul {
    list-style: none;
    display: flex;
    gap: 32px;
    justify-content: center;
}

.sizes-link {
    display: inline-block;
    text-shadow: 2px 2px 0px #000;
    transition: all 0.3s ease;
}

.sizes-link:link, .sizes-link:visited {
    color: #fff;
    text-decoration: none;
}



/* Shop by Brand */
.brand-section {
    margin-bottom: 96px;
}

.brand-heading, .league-heading {
    font-size: 1.3rem;
    color: #929292;
    margin-bottom: 32px;
}

.brand-link, .league-link {
    transition: all 0.3s ease;
}

.brand-img, .league-img {
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.12));
}

.brand-ul {
    display: flex;
    gap: 64px;
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px;
    list-style-type: none;

    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.reebok-logo {
    width: 138px; 
    height: auto;
}

.arcteryx-logo {
    width: 134px;
    height: auto;
}

.starter-logo {
    width: 116px; 
    height: auto;
}

.hellstar-logo {
    width: 92px; 
    height: auto;
}

.helly-hansen-logo {
    width: 148px;
    height: auto;
}

.stussy-logo {
    width: 126px; 
    height: auto;
}

.quiksilver-logo {
    width: 122px; 
    height: auto;
}

.brand-link-btn-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-link-btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 16px 32px;
    background-image: linear-gradient(to right bottom, #4d4d4d, #000);
    background-image: linear-gradient(to right bottom, #5c5c5c, #434343);
    border: 4px outset #c9c9c9;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.24);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.brand-link-btn:link, .brand-link-btn:visited {
    color: #fff;
    text-decoration: none;
}



/* Sneakers */
.sneakers-section {
    border: 6px outset #4a4a4a;
    border-radius: 8px;
    padding-top: 12px;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.16);
    margin-bottom: 96px;
}

.sneakers-top-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 24px;
    margin-bottom: 12px;
}

.sneakers-heading {
    font-size: 2rem;
}

.sneakers-top-link {
    font-size: 1.1rem;
    border-bottom: 2px solid #DE1A1A;
    width: fit-content;
    transition: all 0.3s ease;
}

.sneakers-top-link:link, .sneakers-top-link:visited {
    text-decoration: none;
    color: #DE1A1A;
}

.sneakers-container {
    display: flex;
    gap: 48px;
    padding-left: 24px;
    padding-bottom: 12px;

    overflow-x: scroll;
    overflow-y: hidden;
}

.sneaker {
    flex: 1 0 250px;
}

.sneaker-img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.sneaker-link {
    transition: all 0.1s ease;
}

.sneaker-link:link, .sneaker-link:visited {
    color: #000;
    text-decoration: none;
}

.sneaker-size {
    color: #929292;
}



/* Shop by League */
.league-section {
    margin-bottom: 96px;
}

.league-ul {
    display: flex;
    gap: 64px;
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px;
    list-style-type: none;

    padding-bottom: 12px;
    overflow-x: auto;
}

.mlb-logo { 
    width: 98px; 
    height: auto;
}

.nba-logo { 
    width: 48px; 
    height: auto;
}

.nfl-logo {
    width: 74px;
    height: auto;
}

.nhl-logo {
    width: 78px;
    height: auto;
}

.mls-logo {
    width: 82px;
    height: auto;
}

.ncaa-logo {
    width: 86px;
    height: auto;
}

.cfl-logo {
    width: 76px;
    height: auto;
}

.epl-logo {
    width: 72px;
    height: auto;
}

.cpl-logo {
    width: 84px;
    height: auto;
}

.la-liga-logo {
    width: 68px;
    height: auto;
}

.wnba-logo { 
    width: 146px; 
    height: auto;
}



/* Catalog */
.catalog-section {
    margin-bottom: 96px;
}

.collections-heading {
    font-size: 2rem;
    margin-bottom: 24px;
}

.catalog-container {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.catalog-div {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-image: linear-gradient(to right bottom, #5c5c5c, #434343);
    border: 6px outset #4a4a4a;
    border-radius: 8px;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.16);
}

.catalog-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.catalog-heading {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
}

.catalog-info {
    padding: 16px;
}

.catalog-shop-link-btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 16px 32px;
    background-color: #DE1A1A;
    border: 4px outset #c9c9c9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.catalog-shop-link-btn:link, .catalog-shop-link-btn:visited {
    color: #fff;
    text-decoration: none;
}



/* Carousel */
.carousel-section {
    margin-bottom: 96px;
    background-image: linear-gradient(to right bottom, #dbdbdb, #b7b7b7);
    border: 6px outset #c9c9c9;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.24);
}

.carousel-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.carousel-div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousel-heading {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.96px;
}

.carousel-icon {
    width: 50px; 
    height: auto;
}

.dot {
    width: 24px;
    height: 16px;
    border-radius: 4px;
    border: 4px outset #c9c9c9;
    background-color: #fff;
    cursor: pointer;
}

.dot--fill {
    background-color: #004FFF;
}



/* Trophy Case */
.trophy-case-section {
    margin-bottom: 96px;
}

.trophy-case-heading {
    font-size: 2rem;
    margin-bottom: 12px;
}

.trophy-case-link {
    transition: all 0.1s ease;
}

.trophy-case-link:link, .trophy-case-link:visited {
    color: #000;
    text-decoration: none;
}

.trophy-case-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}



/* About Street Smrt */
.about-section {
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.24);
    border: 6px outset #c9c9c9;
    margin-bottom: 96px;
}

.about-img {
    width: 100%;
    height: 320px;
    background-image: url("background-images/about-street-smrt-edit.webp");
    background-size: cover;
    background-position: center;
}

.about-div {
    padding: 24px;
    background-image: linear-gradient(to right bottom, #dbdbdb, #b7b7b7);
}

.about-heading {
    font-size: 2rem;
    color: #004FFF;
    margin-bottom: 24px;
}

.about-span {
    color: #000;
}

.about-info {
    font-size: 1.3rem;
}



/* Locations & Hours */
.lh-section {
    margin-bottom: 96px;
}

.lh-heading {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 2rem;
}

.lh-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
}

.lh-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}



/* Trusted by */
.trusted-by-section {
    margin-bottom: 96px;
}

.trusted-by-heading {
    font-size: 1.3rem;
    color: #929292;
    margin-bottom: 32px;
}

.trusted-by-logos {
    white-space: nowrap;
    display: flex;
    gap: 96px;
}

.trusted-by-slide {
    display: inline-flex;
    flex-direction: row;
    gap: 80px;
    justify-content: center;
    align-items: center;
    animation: 32s slide infinite linear;
}

.trusted-by-img {
    width: 164px;
    height: auto;
    filter: brightness(0);
    opacity: 24%;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.trusted-by-logos:hover .trusted-by-slide {
    animation-play-state: paused;
}



.cityscape {
    width: 100%;
    height: auto;
    display: block;
}



/*===== FOOTER =====*/
.footer {
    background-color: #000;
    color: #fff;
    padding: 24px 0px 12px 0px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.quick-links-ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.quick-link {
    border-bottom: 2px solid transparent;
    transition: all 0.1s ease;
}

.quick-link:link, .quick-link:visited {
    color: #fff;
    text-decoration: none;
}

.email-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 480px;
}

.newsletter-text {
    font-size: 1.3rem;
}

.email-input {
    font-weight: 400;
    padding: 8px;
    border: 4px solid transparent;
    outline: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.email-input:focus {
    border: 4px solid #DE1A1A;
    box-shadow: 0 0 12px 6px rgba(229, 72, 72, 0.64);
}

.subscribe-btn {
    font-weight: 400;
    padding: 12px;
    color: #fff;
    background-color: #DE1A1A;
    border: 4px outset #cccccc;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    max-width: 240px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.follow-us-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    list-style: none;
}

.social-icon-link {
    transition: all 0.3s;
}

.social-icon-link:link, .social-icon-link:visited {
    text-decoration: none;
}

.social-icon-svg {
    fill: #fff;
    width: 35px;
    height: 35px;
}

.footer-bottom {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    margin-top: 64px;
}

.payment-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    list-style: none;
}

.payment-icon-svg {
    fill: #4a4a4a;
    width: 35px;
    height: 35px;
}

.quick-links-heading, .follow-us-heading {
    margin-bottom: 8px;
    font-weight: bold;
}



/*~~~~~ Contact Us Form ~~~~~*/
.contact-us-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 620px;
    margin-top: 128px;
}

.contact-us-form {
    background-image: linear-gradient(to right bottom, #dbdbdb, #b7b7b7);
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px;
    border: 6px outset #4a4a4a;
    border-radius: 8px;
    margin-bottom: 128px;
    font-size: 1.3rem;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.24);
}

.contact-us-form-heading {
    font-size: 2rem;
    text-align: left;

    margin-bottom: 24px;
}

.contact-us-form-names {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group input, textarea {
    padding: 8px;
    border: 4px solid transparent;
    outline: none;
    border-radius: 8px;
    font-size: 1.1rem;
    resize: none;
    transition: all 0.3s ease;
}

.form-group input:focus, textarea:focus {
    outline: none;
    border: 4px solid #CAE5FF;
    box-shadow: 0 0 12px 6px rgba(202, 229, 255, 0.64);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-us-form-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.contact-us-form-btns button {
    padding: 16px 32px;
    border: 4px outset #c9c9c9;
    border-radius: 8px;
    cursor: pointer;
}

.contact-us-form-reset-btn {
    color: #000;
    background-color: #fff;
    border: 4px solid transparent;
}

.contact-us-form-submit-btn {
    color: #fff;
    background-color: #DE1A1A;
}

.contact-us-form-reset-btn, .contact-us-form-submit-btn {
    transition: all 0.3s ease;
}

.contact-body {
    background-image: url("background-images/busy-street-glitch.webp");
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}