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

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #f5f1e8;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --------------------
   REUSABLE
-------------------- */
.section{
    padding: 90px 6%;
}

.eyebrow{
    color: #c99b3d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.gold-line{
    width: 45px;
    height: 2px;
    background: #c99b3d;
    margin: 22px 0;
}

.button{
    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding: 13px 24px;
    
    border: 1px solid #c99b3d;

    color: #d6ad55;

    text-transform: uppercase;
    letter-spacing: 1px;

    font-size: 0.75rem;

    transition: 0.3s;
}

.button:hover{
    background: #c99b3d;
    color: #050505;
}

.text-link{
    display: inline-block;

    margin-top: 25px;

    color: #d6ad55;

    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --------------------
   HEADER
-------------------- */

.site-header{
    height: 80px;

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

    padding: 0 5%;

    background: #050505;

    border-bottom: 1px solid #262015;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}

.main-nav{
    display: flex;
    gap: 35px;
}

.main-nav a {
    position: relative;

    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;

    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #d6ad55;
}

.main-nav a.active::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 100%;
    height: 1px;

    background: #c99b3d;
}

.nav-actions{
    display: flex;
    gap: 18px;

    font-size: 0.7rem;
}


/* --------------------
   HERO
-------------------- */

.hero{
    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 70px 8%;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.1) 75%
        ),
        url("images/hero-watch.webp");
    
        background-size: cover;
        background-position: center;
}

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

.hero h1{
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: normal;

    line-height: 0.95;

    text-transform: uppercase;
}

.hero h1 span{
    display: block;
    color: #d6ad55;
}

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

    margin-bottom: 30px;

    color: #c5c1b8;

    font-size: 1rem;
}

/* --------------------
   BENEFITS
-------------------- */

.benefits{
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #2b2417;
    border-bottom: 1px solid #2b2417;

    padding: 30px 6%;
}

.benefit{
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 10px 25px;

    border-right: 1px solid #29251e;
}

.benefit:last-child{
    border-right: none;
}

.benefit-icon{
    color: #d6ad55;
    font-size: 2rem;
}

.benefit h3{
    margin-bottom: 4px;

    font-size: 0.75rem;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit p{
    color: #9c9992;
    font-size: 0.75rem;
}

/* --------------------
   COLLECTIONS
-------------------- */

.collections{
    display: grid;

    grid-template-columns: 0.8fr 2.2fr;

    gap: 70px;

    align-items: center;
}

.section-intro h2,
.heritage-content h2,
.products-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 2.5rem;
    font-weight: normal;

    line-height: 1.2;

    text-transform: uppercase;
}

.section-intro > p:not(.eyebrow) {
    color: #aaa69d;
}

.collection-grid{
    display: grid;

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

    gap: 12px;
}

.collection-card{
    position: relative;

    height: 390px;

    overflow: hidden;

    border: 1px solid #302a20;
}

.collection-card img {
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            transparent 45%,
            rgba(0, 0, 0, 0.9)
        );
}

.card-overlay{
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 1;
}

.card-overlay h3{
    color: #bbb7ae;
    font-size: 0.8rem;
}

/* --------------------
   HERITAGE
-------------------- */

.heritage{
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid #2b2417;
    border-bottom: 1px solid #2b2417;
}

.heritage-image{
    height: 500px;
}

.heritage-image img {
    width: 100%;
    height: 100%;

    object-fit: cover
}

.heritage-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 70px 8%;
}


.heritage-content > p:not(.eyebrow) {
    max-width: 600px;

    margin-bottom: 30px;

    color: #aaa69d;
}


/* --------------------
   PRODUCTS
-------------------- */

.products-heading {
    text-align: center;

    margin-bottom: 45px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: start;
}

.product-card {
    border: 1px solid #302a20;

    background: #080808;

    transition:
        transform 0.3s,
        border-color 0.3s;
}

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

    border-color: #8d6b2d;
}

.product-image {
    position: relative;

    height: 300px;

    background: #0c0c0c;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.favorite {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 2;

    font-size: 1.4rem;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 0.9rem;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info p {
    color: #8e8b84;

    font-size: 0.75rem;

    margin-bottom: 10px;
}

.product-info strong {
    display: block;

    color: #d6ad55;

    margin-bottom: 8px;
}

.product-info small {
    color: #c99b3d;
}

.products-button {
    text-align: center;

    margin-top: 40px;
}


/* --------------------
   FOOTER
-------------------- */

.site-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;

    padding: 60px 6%;

    border-top: 1px solid #302719;
}


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


.footer-logo img {
    width: 150px;
    height: auto;
    display: block;

    margin-bottom: 18px;
}


.footer-brand p {
    color: #8f8c85;

    font-size: 0.8rem;
    line-height: 1.7;

    margin-bottom: 20px;
}


.footer-socials {
    display: flex;
    gap: 12px;
}


.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border: 1px solid #302719;

    color: #c99b3d;

    font-size: 0.65rem;

    transition: 0.3s;
}


.footer-socials a:hover {
    background: #c99b3d;
    color: #050505;
}


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


.footer-column h3 {
    color: #d6ad55;

    margin-bottom: 10px;

    font-size: 0.75rem;

    text-transform: uppercase;
    letter-spacing: 1px;
}


.footer-column a {
    color: #aaa69d;

    font-size: 0.75rem;

    transition: color 0.3s;
}


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

/* --------------------
   RESPONSIVE
-------------------- */

@media (max-width: 950px) {

    .main-nav {
        display: none;
    }

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

    .collections {
        grid-template-columns: 1fr;
    }

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

    .site-footer {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .nav-actions {
        display: none;
    }

    .hero {
        min-height: 550px;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-right: none;
        border-bottom: 1px solid #29251e;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .heritage {
        grid-template-columns: 1fr;
    }

    .heritage-image {
        height: 350px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

}