:root {
    --global-color-blue: #0D1142;
    --global-color-light-blue: #0d1142cc;
    --global-color-gray: #9c9c9c;
    --global-color-light-gray: #9c9c9c3d;
    --global-color-beige: #F1EDE5;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Sintony';
}

ol, ul{
    margin: 0 !important;
    padding: 0 !important;
}

button{
    border-radius: 5px;
}

body {
    min-height: 100vh;
    display: grid;
}

::-webkit-scrollbar{
    width: 1rem;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--global-color-blue);
  border-radius: 5px;
  outline: 1px solid var(--global-color-light-gray);
}

::-webkit-scrollbar-thumb:hover{
    background-color: var(--global-color-light-blue);
    opacity: 0.2;
}

section{
    overflow: hidden;
}

h1, h4 {
    font-family: "Playfair Display", serif;
    color: var(--global-color-blue);
}

h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem !important;
    font-weight: bold !important;
    color: var(--global-color-blue);
}

p {
    font-size: 1.2rem;
}

.am-logo {
    width: 30%;
}

a {
    color: var(--global-color-gray) !important;
    text-decoration: none !important;
    cursor: pointer;
}

.top-banner {
    background-color: var(--global-color-beige);
}

.top-bar {
    padding: 1rem;
    margin: auto;
}

header{
    width: 100%;
}

i {
    font-size: 25px;
}

.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SEARCH BTN */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    align-items: center;
    line-height: 0;
    padding: 5px 0;
    background: transparent !important;
    text-transform: none;
    border: none;
}

.search-btn__text {
    color: var(--global-color-gray);
}


/* NAVBAR */
.navbar {
    width: 100vw;
    background-image: linear-gradient(rgb(255, 255, 255), transparent);
    color: white !important;
    position: fixed;
    z-index: 1000;
    left: 0;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    background-image: none;
}

.menu {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
    margin: auto;
    border-top: 1px solid var(--global-color-light-gray);
    border-bottom: 1px solid var(--global-color-light-gray);
}

.menu li {
    display: inline;
    text-transform: uppercase;
}

.menu li a {
    text-decoration: none;
    color: var(--global-color-gray);
    padding: 5px 10px;
}

.menu li a:hover {
    border-bottom: 2px solid var(--global-color-light-gray);
}

.submenu {
    background-color: white;
    height: 30vh;
    width: 100vw;
    left: 0;
    top: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--global-color-light-gray);
}

.info__map {
    width: 100%;
}

.navbar-mobile{
    position: fixed;
    z-index: 1000;
    width: 100%;
}

.navbar-mobile__bar{
    background-color: var(--global-color-beige);
}

.am-logo__mobile{
    width: 15%;
}

@media (min-width: 576px) and (max-width: 991px){
    .am-logo__mobile{
        width: 7%;
    }
}

.navbar-mobile__menu{
    height: 100vh;
    background-color: white;
}

.navbar-mobile__hamburger-btn{
    color: var(--global-color-blue);
}

.navbar-mobile__menu__content li{
    border-bottom: 1px solid var(--global-color-light-gray);
}

/* FOOTER */
footer {
    position: relative;
    width: 100%;
    padding: 40px 10vw 10px 10vw;
    flex-grow: 1;
    background-color: var(--global-color-beige);
    color: var(--global-color-blue);
}

.footer-info,
.footer-pay {
    text-decoration: none;
    list-style-type: none;
}

.footer-am-logo {
    width: 30%;
}

footer p {
    font-size: 0.9rem;
}

/* HERO */
.hero{
    background-image: url('../assets/img/hero4.jpeg');
    background-size: cover;
    background-position-x: center;
    height: 90vh;
}

.hero h1{
    font-size: 10rem;
    text-shadow: 2px 2px 7px black;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
}

@media screen and (max-width: 992px){
    .hero h1{
        font-size: 4rem;
        -webkit-text-stroke: 0.5px rgb(255, 255, 255);
    }
}

.hero__atelier{
    padding-left: -10vw;
}

.hero__madlenne{
    padding-left: 10vw;
}

.hero__btn_see-collection{
    background-color: var(--global-color-blue);
    border: 1px solid var(--global-color-blue);
    color: white;
}
/* BENEFITS */
.benefits {
    color: var(--global-color-beige);
    background-color: var(--global-color-blue);
}

.benefits__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--global-color-beige);
    color: var(--global-color-blue);
    text-align: center;
}

.benefits__title{
    color: white;
}

.carousel {
    height: 50vh;
}

.carousel-item img {
    height: 50%;
}

/* CARD */
.latest-news__card {
    background-color: white !important;
    border-color: var(--global-color-beige) !important;
    color: var(--global-color-blue);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.latest-news__card:hover {
    transform: scale(1.05);
}

.latest-news__title{
    font-weight: bold;
}

.latest-news__btn {
    width: 3.5rem;
    height: 3.5rem;
    position: absolute;
    bottom: -50%;
    right: 0;
    transform: translateX(-50%);
    background: var(--global-color-blue);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border: none;
    color: white;
    padding: 10px;
    transition: bottom 0.3s ease-in-out;
}

.latest-news__card:hover .latest-news__btn {
    bottom: 10px;
}


/* VIEW COLLECTION */
.collection {
    background-color: var(--global-color-beige);
}

.collection__container__img {
    border-radius: 50%;
    max-width: 200px;
}

.collection__container__img:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.collection__container__btn {
    background-color: transparent;
    border: none;
    margin: auto;
    color: var(--global-color-gray);
}

.collection__container__title{
    font-family: 'Sintony';
    font-size: 1.3rem;
    font-weight: 400;
}

.light-menu{
    color: white;
}

/* INFO */
.info-container{
    color: var(--global-color-blue);
    font-size: larger;
    border: 1px solid var(--global-color-blue);
    border-radius: 5px;
    border-color: var(--global-color-beige) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info__icon{
    font-size: 2rem;
}




/* CATEGORIES */
.categories-container{
    padding: 2rem;
    margin-top: 3rem;
}

@media screen and (min-width: 992px){
    .categories-container{
        margin-top: 15rem;
        padding: 0 10rem 10rem;
    }
}

/* PRODUCT */
.product{
    padding: 2rem;
    margin-top: 3rem;
}

@media screen and (min-width: 992px){
    .product{
        margin-top: 15rem;
    }
}

.product__image{
    min-width: 700px;
}

.product__btn{
    width: 100%;
    height: 3rem;
    background-color: var(--global-color-blue);
    border: 1px solid var(--global-color-blue);
    color: white;
}

.product__btn:hover{
    background-color: white;
    border: 1px solid var(--global-color-blue);
    color: var(--global-color-blue);
}

.product__quantity{
    width: 2rem;
    height: 100%;
    border-color: var(--global-color-blue);
}

.product__decrement, .product__increment{
    height: 100%;
    width: 2rem;
}

/* CONTACT */
.contact{
    padding: 2rem;
    margin-top: 3rem;
}

@media screen and (min-width: 992px){
    .contact{
        margin-top: 15rem;
    }
}

.contact__btn{
    width: 50%;
    height: 3rem;
    background-color: white;
    border: 1px solid var(--global-color-blue);
    color: var(--global-color-blue);
}

.contact__btn:hover{
    background-color: var(--global-color-blue);
    border: 1px solid var(--global-color-blue);
    color: white;
}

.contact__map{
    width: 100%;
}

/* REGISTER */
.register, .cart{
    z-index: 1000;
    top: 0;
    background-image: linear-gradient(to left, rgb(0, 0, 0), transparent);
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.register__content, .login__content, .cart__content{
    background-color: white;
    width: 30vw;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.register__form__btn, .login__form__btn{
    width: 50%;
    height: 2.5rem;
    border: none;
    background-color: var(--global-color-blue);
    color: white;
    border: 1px solid var(--global-color-blue);
    margin-top: 3rem;
}

.register__form__btn:hover, .login__form__btn:hover{
    background-color: transparent;
    color: var(--global-color-blue);
}

.close-btn{
    position: absolute;
    right: 2rem;
    top: 2rem;
    cursor: pointer;
}

/* CART */
.cart__summary{
    border-top: 1px solid var(--global-color-light-gray);
    background-color: white;
}

.cart__summary__btn{
    background-color: var(--global-color-blue);
    border: 1px solid var(--global-color-blue);
    color: white;
    height: 3rem;
    width: 100%;
}

.cart__summary__btn:hover{
    background-color: transparent;
    border: 1px solid var(--global-color-blue);
    color: var(--global-color-blue);
}

.cart__products__container{
    overflow-y: scroll;
    height: 60vh;
    overflow-x: hidden;
}

.cart__product{
    border-bottom: 1px solid var(--global-color-light-gray);
}

.cart__product__img{
    max-height: 200px;
}

/* TERMS */
.terms {
    margin-top: 8rem;
}

@media screen and (min-width: 992px) {
    .terms {
        margin-top: 15rem;
    }
}