/* =========================
   BASIC PAGE SETUP
========================= */

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


body {
    background-color: #050b10;
    color: #f3f0e8;

    font-family: Georgia, "Times New Roman", serif;
}



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

.site-header {
    width: 100%;

    background-color: #050b10;

    border-bottom: 1px solid #8b651d;
}


.header-container {
    width: 100%;
    max-width: 1500px;
    min-height: 125px;

    margin: 0 auto;

    padding: 20px 65px;

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



/* =========================
   LOGO
========================= */

.logo {
    color: #f4f1e8;

    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;

    line-height: 1;

    letter-spacing: 2px;
}


.logo-top,
.logo-bottom {
    font-size: 30px;
}


.logo-middle {
    width: 100%;

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

    margin: 3px 0;
}


.logo-line {
    height: 1px;

    background-color: #f4f1e8;

    flex: 1;
}


.logo-vs {
    font-size: 13px;

    padding: 0 8px;
}



/* =========================
   NAVIGATION
========================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 45px;
}


.nav-link {
    color: #f4f1e8;

    text-decoration: none;

    display: flex;
    align-items: center;

    gap: 10px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    font-weight: 500;

    transition: color 0.2s ease;
}


.nav-link:hover {
    color: #d6a72e;
}


.nav-button {
    background: none;

    border: none;

    cursor: pointer;
}


.nav-icon {
    font-size: 22px;
}



/* =========================
   SITE SEARCH
========================= */

.site-search-form {
    width: 300px;
    height: 42px;

    display: flex;
    align-items: center;

    background-color: #0b1218;

    border: 1px solid #4a3d22;
    border-radius: 3px;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.site-search-form:focus-within {
    border-color: #d5a62b;

    box-shadow: 0 0 0 1px rgba(213, 166, 43, 0.15);
}


.site-search-input {
    flex: 1;

    min-width: 0;
    height: 100%;

    padding: 0 14px;

    background: transparent;

    color: #f4f1e8;

    border: none;

    outline: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
}


.site-search-input::placeholder {
    color: #8e8a82;
}


.site-search-button {
    width: 44px;
    height: 100%;

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

    background: transparent;

    color: #d5a62b;

    border: none;
    border-left: 1px solid #332915;

    cursor: pointer;

    font-size: 20px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.site-search-button:hover {
    background-color: rgba(213, 166, 43, 0.08);

    color: #ebbd42;
}



/* =========================
   CART
========================= */

.cart-link {
    position: relative;
}


.cart-count {
    background-color: #f4f1e8;

    color: #050b10;

    width: 24px;
    height: 24px;

    border-radius: 50%;

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

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



/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-button {
    display: none;

    background: none;

    border: none;

    color: #f4f1e8;

    font-size: 30px;

    cursor: pointer;
}



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

.hero-section {
    position: relative;

    width: 100%;
    min-height: 560px;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 11, 16, 0.98) 0%,
            rgba(5, 11, 16, 0.88) 28%,
            rgba(5, 11, 16, 0.45) 55%,
            rgba(5, 11, 16, 0.05) 100%
        ),
        url("../Images/placeholder.jpg");

    background-size: cover;

    background-position: center right;

    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}


.hero-container {
    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding: 70px 65px;
}


.hero-content {
    width: 100%;

    max-width: 620px;
}


.featured-label {
    color: #d5a62b;

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

    margin-bottom: 25px;

    letter-spacing: 1px;
}



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

.hero-title {
    color: #f4f1e8;

    font-family:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

    font-size: clamp(55px, 6vw, 95px);

    font-weight: normal;

    line-height: 0.92;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


.hero-title span {
    display: block;

    font-size: 0.48em;

    margin-top: 12px;
}



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

.hero-tagline {
    color: #d5a62b;

    font-size: 19px;

    font-weight: bold;

    letter-spacing: 1px;

    margin-bottom: 22px;
}



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

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

    color: #e1ddd3;

    font-size: 18px;

    line-height: 1.5;

    margin-bottom: 30px;
}



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

.hero-buttons {
    display: flex;

    gap: 20px;
}


.hero-button {
    min-width: 175px;

    padding: 15px 24px;

    display: inline-flex;

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

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: bold;

    letter-spacing: 1px;

    border-radius: 3px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.primary-button {
    background-color: #d5a62b;

    color: #050b10;

    border: 1px solid #d5a62b;
}


.primary-button:hover {
    background-color: #ebbd42;

    transform: translateY(-2px);
}


.secondary-button {
    color: #f4f1e8;

    background-color: rgba(5, 11, 16, 0.45);

    border: 1px solid #d5a62b;
}


.secondary-button:hover {
    background-color: #d5a62b;

    color: #050b10;

    transform: translateY(-2px);
}



/* =========================
   CATALOG PREVIEW
========================= */

.catalog-section {
    width: 100%;

    background-color: #f2eee4;

    color: #090d10;

    padding: 85px 0 95px;
}


.catalog-container {
    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding: 0 65px;
}



/* =========================
   CATALOG HEADING
========================= */

.catalog-heading {
    text-align: center;

    margin-bottom: 50px;
}


.catalog-label {
    color: #aa7d18;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 12px;
}


.catalog-heading h2 {
    color: #090d10;

    font-size: clamp(30px, 3vw, 45px);

    font-weight: normal;

    letter-spacing: 1px;
}


.catalog-heading-line {
    width: 65px;
    height: 2px;

    background-color: #c69828;

    margin: 18px auto 0;
}



/* =========================
   CATALOG GRID
========================= */

.catalog-grid {
    display: grid;

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

    gap: 30px;
}



/* =========================
   CATALOG CARD
========================= */

.catalog-card {
    width: 100%;
}


.catalog-image-link {
    display: block;

    text-decoration: none;
}


.catalog-image-container {
    position: relative;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background-color: #d9d5cb;

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.15);
}


.catalog-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;
}


.catalog-image-link:hover .catalog-image {
    transform: scale(1.03);
}


.catalog-category {
    position: absolute;

    top: 15px;
    left: 15px;

    background-color: #d5a62b;

    color: #090d10;

    padding: 7px 11px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;
}


.catalog-card-content {
    padding-top: 18px;
}


.catalog-card-content h3 {
    color: #090d10;

    font-size: 21px;

    font-weight: normal;

    margin-bottom: 7px;
}


.catalog-card-content p {
    color: #6e6a61;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
}



/* =========================
   FULL CATALOG BUTTON
========================= */

.catalog-button-container {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}


.catalog-button {
    background-color: #d5a62b;

    color: #090d10;

    padding: 15px 27px;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 1px;

    border: 1px solid #d5a62b;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.catalog-button:hover {
    background-color: #ebbd42;

    transform: translateY(-2px);
}



/* =========================
   COMING SOON / NEWSLETTER
========================= */

.coming-soon-section {
    width: 100%;

    background-color: #080e13;

    padding: 90px 0;
}


.coming-soon-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 0 65px;

    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    gap: 80px;

    align-items: center;
}



/* =========================
   COMING SOON FEATURE
========================= */

.coming-soon-feature {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 35px;

    align-items: center;
}


.coming-soon-image-container {
    position: relative;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background-color: #161d22;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}


.coming-soon-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.coming-soon-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    background-color: #d5a62b;

    color: #050b10;

    padding: 7px 11px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;
}


.coming-soon-label {
    color: #d5a62b;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.coming-soon-content h2 {
    color: #f4f1e8;

    font-size: 34px;

    font-weight: normal;

    margin-bottom: 17px;
}


.coming-soon-description {
    color: #c9c5bb;

    font-size: 17px;

    line-height: 1.6;

    margin-bottom: 22px;
}


.coming-soon-link {
    color: #d5a62b;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 1px;
}


.coming-soon-link:hover {
    color: #ebbd42;
}



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

.newsletter {
    border-left: 1px solid #40351d;

    padding-left: 65px;
}


.newsletter-label {
    color: #d5a62b;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.newsletter h2 {
    color: #f4f1e8;

    font-size: clamp(32px, 3vw, 44px);

    font-weight: normal;

    margin-bottom: 18px;
}


.newsletter-description {
    color: #c9c5bb;

    font-size: 17px;

    line-height: 1.6;

    margin-bottom: 28px;
}


.newsletter-form {
    display: flex;

    width: 100%;
}


.newsletter-input {
    flex: 1;

    min-width: 0;

    padding: 15px 16px;

    background-color: #f4f1e8;

    color: #050b10;

    border: 1px solid #f4f1e8;

    outline: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
}


.newsletter-input:focus {
    border-color: #d5a62b;
}


.newsletter-button {
    padding: 15px 22px;

    background-color: #d5a62b;

    color: #050b10;

    border: 1px solid #d5a62b;

    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 1px;

    transition: background-color 0.2s ease;
}


.newsletter-button:hover {
    background-color: #ebbd42;
}


.visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}



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

.site-footer {
    width: 100%;

    background-color: #03080c;

    border-top: 1px solid #332915;
}


.footer-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 70px 65px;

    display: grid;

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

    gap: 60px;
}



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

.footer-brand {
    max-width: 340px;
}


.footer-logo {
    width: 170px;

    color: #f4f1e8;

    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;

    line-height: 1;

    letter-spacing: 2px;

    margin-bottom: 22px;
}


.footer-logo-top,
.footer-logo-bottom {
    font-size: 25px;
}


.footer-logo-middle {
    width: 100%;

    display: flex;
    align-items: center;

    margin: 3px 0;
}


.footer-logo-line {
    height: 1px;

    background-color: #f4f1e8;

    flex: 1;
}


.footer-logo-vs {
    font-size: 11px;

    padding: 0 7px;
}


.footer-description {
    color: #9f9b92;

    font-size: 15px;

    line-height: 1.6;
}



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

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}


.footer-column h3 {
    color: #d5a62b;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 7px;
}


.footer-column a {
    color: #c9c5bb;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    transition: color 0.2s ease;
}


.footer-column a:hover {
    color: #d5a62b;
}



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

.footer-bottom {
    border-top: 1px solid #24201a;
}


.footer-bottom-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 22px 65px;

    display: flex;

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

    gap: 30px;
}


.footer-bottom p {
    color: #77746d;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}


.footer-legal {
    display: flex;

    gap: 25px;
}


.footer-legal a {
    color: #77746d;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    transition: color 0.2s ease;
}


.footer-legal a:hover {
    color: #d5a62b;
}



/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .header-container {
        min-height: 95px;

        padding: 15px 25px;
    }


    .main-nav {
        display: none;
    }


    .site-search-form {
        width: 100%;
        max-width: none;

        margin: 8px 0;
    }


    .site-search-input {
        font-size: 16px;
    }


    .mobile-menu-button {
        display: block;
    }


    .logo-top,
    .logo-bottom {
        font-size: 22px;
    }


    .logo-vs {
        font-size: 10px;
    }


    .hero-section {
        min-height: 600px;

        background-position: 65% center;

        background-image:
            linear-gradient(
                90deg,
                rgba(5, 11, 16, 0.96) 0%,
                rgba(5, 11, 16, 0.88) 50%,
                rgba(5, 11, 16, 0.55) 100%
            ),
            url("../Images/placeholder.jpg");
    }


    .hero-container {
        padding: 60px 25px;
    }


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


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


    .catalog-container {
        padding: 0 30px;
    }


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

        gap: 40px 25px;
    }


    .coming-soon-container {
        padding: 0 30px;

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .newsletter {
        border-left: none;

        border-top: 1px solid #40351d;

        padding-left: 0;

        padding-top: 50px;
    }


    .footer-container {
        padding: 60px 30px;

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

        gap: 50px;
    }


    .footer-bottom-container {
        padding: 22px 30px;
    }

}



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

@media (max-width: 550px) {

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


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .hero-button {
        width: 100%;

        max-width: 260px;
    }


    .catalog-section {
        padding: 65px 0 75px;
    }


    .catalog-container {
        padding: 0 22px;
    }


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

        gap: 40px;
    }


    .catalog-card {
        max-width: 360px;

        margin: 0 auto;
    }


    .coming-soon-section {
        padding: 65px 0;
    }


    .coming-soon-container {
        padding: 0 22px;
    }


    .coming-soon-feature {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .coming-soon-image-container {
        max-width: 260px;
    }


    .newsletter-form {
        flex-direction: column;

        gap: 12px;
    }


    .newsletter-button {
        width: 100%;
    }


    .footer-container {
        padding: 50px 22px;

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-bottom-container {
        padding: 22px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}