@import url('https://fonts.googleapis.com/css2?family=Cossette+Texte:wght@400;700&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
  :root {
    --bg: #ECE1D7;
    --text: #1a1a1a;
    --muted: #3B393C;
    --accent: #CC7E68;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: "Cossette Texte", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Inter', serif;
    font-weight: 400;
    letter-spacing: .4px;
}

a {
    text-decoration: none;
    color: inherit
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    gap: 30px;
}

.header--top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu, .logo, .cart--block {
    width: 30%;
    display: flex;
    align-items: center;
}

i {
    display: block;
    font-size: 35px;
}

.pb-15{
    padding-bottom: 15px;
}

.pt-15{
    padding-top: 15px;
}

.pb-30{
    padding-bottom: 30px;
}

.pt-30{
    padding-top: 30px;
}

.pb-50{
    padding-bottom: 50px;
}

.pt-50{
    padding-top: 50px;
}

.pb-200{
 padding-bottom: 200px;
}

.text-block p.line-height{
    line-height: 1.6;
}

.letter-spacing{
    letter-spacing: 2px;
}

.cart--block {
    justify-content: right;
    gap: 30px;
}

.logo {
    font-size: 18px;
    letter-spacing: 2px;
    justify-content: center;
}
.home{
    padding: 8px 16px;
}

.header-nav{
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.header-nav a, .header-nav a.active {
    margin: 0 14px;
    letter-spacing: 2px;
    font-size: 18px;
    color: var(--muted);
    position: relative;
    text-transform: capitalize;
}

.header-nav a::after, .header-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--accent);
    transition: .4s ease;
}

.header-nav a:hover::after {
    width: 100%
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--accent)
}

.header-nav a.active::after {
    width: 100%
}

.bg-paris {
    background: var(--bg);
    background-image: url('img/bg-paris.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    background-blend-mode: multiply;
}

.container {
    width: 100%;
    margin: auto;
}

.uppercase{
    text-transform: uppercase;
}

.italic {
     font-style: italic;
}

.section__content{
    display: grid;
    grid-template-columns: 60% 40%;
}

.grid-2 {
    display: grid;
    grid-template-columns:3fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-block p.font-sm{
    font-size: 16px;
}

.image {
    height: 640px;
    overflow: hidden;
    margin-right: 30px;
}

.image.large {
    height: 460px
}

.header {
    background: top/cover no-repeat url('img-old/4.PNG');
    position: relative;
}

.header:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 100%;
    pointer-events: none;

    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 60%,
            rgba(255, 255, 255, 0.6) 100%
    )
}

.banner {
    background: top/cover no-repeat url('img-old/5.PNG');
}

.banner2 {
    background: top/cover no-repeat url('img-old/3.png');
}

.horse {
    background: top/contain no-repeat url('img-old/6.PNG');
}

.shoes {
    background: top/contain no-repeat url('img-old/7.PNG');
}

.bags {
    background: top/contain no-repeat url('img-old/IMG_0022.PNG');
}

.text-block p {
    color: var(--muted);
    font-size: 30px;
    margin-bottom: 14px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.2;
}

.text-block p.quote,
.text-block p.category--description--title,
.text-block p.subscription--quote{
    color: #3B393C;
    font-size: 55px;
    font-weight: 300;
    font-family: "Noto Serif", serif;
}

.quote, .line-bottom{
    position: relative;
    padding-bottom: 50px;
}

.quote:after, .line-bottom:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 15%;
    height: 3px;
    background: linear-gradient(90deg,rgba(204, 126, 104, 1) 0%, rgba(204, 126, 104, 1) 48%, rgba(209, 158, 132, 1) 48%, rgba(234, 223, 213, 1) 100%);
}

.line-bottom:after {
    width: 15%;
    background: var(--accent);
    bottom: -10px;
}

.line-bottom {
    padding-bottom: 0px;
}

.-full:after{
    width: 91%;
}

.category{
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.category--description{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.category--items {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.category--item{
    width: 45%;
    height: 320px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #F1EFEC;
    padding: 16px;
    filter: brightness(0.9);
}

.category--item__title{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
}

.category--item__subtitle{
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 400;
}

.women{
    background-image: url('../img/women.jpg');
}

.men{
    background-image: url('../img/men.jpg');
}

.leather{
    background-image: url('../img/leather.jpg');
}

.jewelry{
    background-image: url('../img/jewelry.jpg');
}

.watches{
    background-image: url('../img/watches.jpg');
}

.fragrances{
    background-image: url('../img/fragrances.jpg');
}


.experience,
.paris, .bag{
    background: var(--bg);
    background-blend-mode: multiply;
    background-image: url('../img/experience.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.paris{
    background-image: url('../img/bg-paris.png');
}

.bag{
    background-image: url('../img/bag-bg.png');
    background-blend-mode: luminosity;
    background-position: bottom right;
}

.experience--content, .paris--content{
    width: 30%;
    padding: 40px 24px;
}

.paris--content{
    width: 40%;
}

.subscription{
    background: var(--accent);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subscription--content{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.text-block p.subscription--quote{
    color: var(--bg);
}

.form{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

::placeholder{
    color: var(--bg);
}

.input-border{
    border: solid 1px var(--bg);
    padding: 16px 10px;
    color: var(--bg);
    background: unset;
}

p.title {
    color: #CC7E68;
    font-size: 36px;
    text-align: center;
    font-weight: 400;
    padding-bottom: 10px;
}

.subscription--title {
    color: var(--bg);
    text-align: left;
}

.text-block p.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all .8s ease;
}


.center {
    text-align: center
}

.center .text-block {
    margin: 30px auto 0;
}

footer {
    text-align: center;
    height: 200px;
    padding: 0 16px;
    font-size: 16px;
    font-family: 'Overpass Mono', monospace;
}

.footer-nav a, .footer-nav a.active {
    font-family: "Overpass Mono", monospace;
    margin: 0 14px;
    font-size: 18px;
    color: var(--muted);
    position: relative;
    text-transform: capitalize;
}

.footer-nav a::after, .footer-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0%;
    height: 1px;
    background: var(--accent);
    transition: .4s ease;
}

.footer-nav a:hover::after {
    width: 100%
}

.footer-nav a:hover,
.footer-nav a.active {
    color: var(--accent)
}

.footer-nav a.active::after {
    width: 60%
}

.footer--top {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.col {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 22%;
}

.row--items {
    display: flex;
    flex-direction: row;
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.item {
    width: 48%;
    display: block;

}

.media {
    justify-content: center;
}

.footer-logo {
    order: 0;
}

.footer-menu {
    order: 1;
}

.footer-links {
    order: 2;
}

.footer-media {
    order: 3;
}

.media{
    a{
        svg{
            font-size: 30px;
        }
    }
}

.logo-hermes{
    width: 200px;
}

/* responsive */
@media (max-width: 768px) {
    .header--top {
        justify-content: left;
        gap: 30px;
    }

    .cart--block {
        display: none;
    }

    header {
        padding: 20px
    }

    .grid-2 {
        grid-template-columns:1fr;
        gap: 40px
    }

    section {
        margin: 80px 0
    }

    .image {
        height: 460px;
    }

    .text-block p {
        font-size: 18px;
    }

    .text-block p.quote {
        font-size: 24px;
    }

    p.title {
        font-size: 24px;
    }

    .footer-logo {
        order: 0;
    }

    .footer-menu {
        order: 2;
    }

    .footer-links {
        order: 3;
    }

    .footer-media {
        order: 1;
    }

    .footer--top {
        flex-wrap: wrap;
        gap: 30px;
        font-size: 12px;
    }

    .col {
        width: 45%;
    }

    .footer-nav a, .footer-nav a.active {
        font-size: 12px;
    }

    .media{
        a{
            svg{
                font-size: 30px;
            }
        }
    }

    .logo-hermes{
        width: 150px;
    }
}

.text-block p.orange,
.orange{
    color: #CC7E68;
}