
/* =========================================================
   AARCSH & CO.
   PREMIUM JEWELLERY WEBSITE
========================================================= */

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}


/* =========================================================
   PREMIUM SERIF FONT
========================================================= */

.logo,
.hero h1,
.heading h2,
.collection-card span,
.product-card h3,
.luxury-banner h2,
.why-card h3,
.footer-logo {
    font-family:
        'Coldiac',
        'Cormorant Garamond',
        'Times New Roman',
        serif;
}


/* =========================================================
   HEADER
========================================================= */

header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    max-width: 1250px;
    min-height: 82px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   BRAND
   CLASSIC GOLD
========================================================= */

.logo {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    color: #D4AF37;
}

.logo span {
    color: #D4AF37;
}


/* =========================================================
   NAVIGATION
   BLACK
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    position: relative;

    font-size: 13px;
    font-weight: 400;

    color: #000000;

    transition: 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #D4AF37;

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37;
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   CART
========================================================= */

.cart-link {
    color: #000000 !important;
    font-weight: 500 !important;
}

#cartCount {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 19px;
    height: 19px;

    margin-left: 3px;
    padding: 0 5px;

    border-radius: 50%;

    background: #D4AF37;
    color: #ffffff;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    font-size: 25px;

    cursor: pointer;

    color: #000000;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 600px;

    display: flex;
    align-items: center;

    background: #ffffff;
}

.hero-content {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 70px 30px;
}


/* =========================================================
   HERO EYEBROW
   GOLD
========================================================= */

.eyebrow {
    margin-bottom: 13px;

    color: #D4AF37;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
}


/* =========================================================
   HERO HEADING
   BLACK
========================================================= */

.hero h1 {
    max-width: 700px;

    font-size: clamp(54px, 6vw, 78px);

    font-weight: 600;

    line-height: 1.05;

    color: #000000;
}

.hero h1 span {
    color: #000000;
}


/* =========================================================
   HERO TEXT
   BLACK
========================================================= */

.hero-text {
    max-width: 600px;

    margin-top: 25px;
    margin-bottom: 30px;

    color: #000000;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.9;
}


/* =========================================================
   GOLD BUTTON
========================================================= */

.gold-button {
    display: inline-block;

    padding: 15px 28px;

    background: #D4AF37;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;

    border: none;

    transition: 0.3s ease;
}

.gold-button:hover {
    background: #B8941F;

    transform: translateY(-2px);
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    max-width: 1250px;

    margin: 0 auto;

    padding: 90px 30px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.heading {
    text-align: center;

    margin-bottom: 45px;
}

.heading h2 {
    font-size: 48px;

    font-weight: 600;

    line-height: 1.1;

    color: #000000;
}

.heading > p:last-child {
    margin-top: 10px;

    color: #000000;

    font-size: 14px;
}


/* =========================================================
   COLLECTION GRID
========================================================= */

.collection-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================================
   COLLECTION CARD
========================================================= */

.collection-card {
    display: block;

    background: #faf8f3;

    overflow: hidden;

    text-align: center;
}

.collection-image {
    width: 100%;

    aspect-ratio: 1 / 1.12;

    overflow: hidden;

    background: #f5f2eb;
}

.collection-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.04);
}


/* =========================================================
   COLLECTION NAME
========================================================= */

.collection-card span {
    display: block;

    padding: 17px 10px;

    background: #ffffff;

    font-size: 25px;

    font-weight: 600;

    color: #000000;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    min-width: 0;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    width: 100%;

    aspect-ratio: 1 / 1.15;

    overflow: hidden;

    background: #f7f5ef;

    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.product-card h3 {
    margin-top: 14px;

    font-size: 23px;

    font-weight: 600;

    line-height: 1.2;

    color: #000000;
}


/* =========================================================
   PRODUCT PRICE
========================================================= */

.product-card p {
    margin-top: 5px;

    color: #000000;

    font-size: 15px;

    font-weight: 600;
}


/* =========================================================
   PRODUCT BUTTON
========================================================= */

.product-card button {
    width: 100%;

    margin-top: 13px;

    padding: 12px 10px;

    border: 1px solid #000000;

    background: #ffffff;

    color: #000000;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.2px;

    transition: 0.3s ease;
}

.product-card button:hover {
    background: #000000;

    color: #ffffff;
}


/* =========================================================
   LUXURY BANNER
========================================================= */

.luxury-banner {
    padding: 100px 30px;

    background: #faf7f0;

    text-align: center;
}

.luxury-banner-content {
    max-width: 800px;

    margin: 0 auto;
}

.luxury-banner h2 {
    font-size: 54px;

    font-weight: 600;

    line-height: 1.08;

    color: #000000;
}

.luxury-banner > div > p:last-child {
    margin-top: 18px;

    color: #000000;

    font-size: 14px;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    padding: 90px 30px;

    background: #faf9f6;
}

.why-grid {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 45px;

    text-align: center;
}

.why-card {
    padding: 10px;
}


/* =========================================================
   WHY ICON
   GOLD
========================================================= */

.why-icon {
    margin-bottom: 10px;

    color: #D4AF37;

    font-size: 28px;
}


/* =========================================================
   WHY HEADING
========================================================= */

.why-card h3 {
    font-size: 27px;

    font-weight: 600;

    color: #000000;
}

.why-card p {
    max-width: 280px;

    margin: 8px auto 0;

    color: #000000;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 55px 20px;

    border-top: 1px solid #eeeeee;

    text-align: center;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-logo {
    font-size: 30px;

    font-weight: 600;

    white-space: nowrap;

    color: #D4AF37;
}

.footer-logo span {
    color: #D4AF37;
}


/* =========================================================
   FOOTER TEXT
========================================================= */

footer > p {
    margin-top: 8px;

    color: #000000;

    font-size: 13px;
}

footer .copyright {
    margin-top: 22px;

    color: #777777;

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .navbar {
        padding: 0 22px;
    }

    .nav-links {
        gap: 20px;
    }

    .collection-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .navbar {
        min-height: 75px;
    }

    .logo {
        font-size: 27px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;

        position: absolute;

        top: 75px;

        left: 0;
        right: 0;

        padding: 22px;

        background: #ffffff;

        border-bottom: 1px solid #eeeeee;

        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }


    /* MOBILE HERO */

    .hero {
        min-height: 560px;

        background: #ffffff;
    }

    .hero-content {
        padding: 60px 22px;

        text-align: center;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }


    /* SECTIONS */

    .section {
        padding: 70px 20px;
    }

    .heading h2 {
        font-size: 42px;
    }


    /* COLLECTIONS */

    .collection-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 14px;
    }

    .collection-card span {
        font-size: 21px;
    }

    .product-card h3 {
        font-size: 20px;
    }


    /* BANNER */

    .luxury-banner {
        padding: 75px 20px;
    }

    .luxury-banner h2 {
        font-size: 42px;
    }


    /* WHY */

    .why-section {
        padding: 70px 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .logo {
        font-size: 25px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .collection-grid,
    .product-grid {
        gap: 10px;
    }

    .collection-card span {
        font-size: 19px;
    }

    .product-card h3 {
        font-size: 18px;
    }
}
