:root {
    --rainbow: linear-gradient(
        to right, 
        #FF69B4,
        #00FFFF,
        yellow,
        #9370DB
    ); 
}
body {
    background-color: #008080; /* Vert Windows classique */
    /* font-family: "MS Sans Serif", "Arial", sans-serif; */
    display: flex;
    justify-content: center;
    align-items: center;

    margin:0;
    width: 100vw;
    height: 100%;
    min-height: 100vh;

    background-image: url("/assets/images/background.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
}
#main-container {
    width: 90rem;
    height: 90vh;
    /* border: 5px double pink; */
    box-shadow: rgba(255, 255, 255, 1) 0px 5px 15px;

    background: rgba(255, 236, 255, 0.637);
    backdrop-filter: blur(10px);
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--rainbow)
}
header img {
    height: 150px;
}
.poudra-marquee {
    background: #000;
    color: #7FFF00;
    font-family: "Courier New", monospace;
    font-weight: bold;
    padding: 5px 0;
}

#navbar {
    width: 100%;
    background-color: rgb(253, 239, 242);
}
#navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
#navbar ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;

    padding: 5px;
    border: 2px dashed transparent;
}
#navbar ul a {
    color: black;
    text-decoration: none;
    width: 100%;
    height: 100%;

    font-weight: 600;
}
#navbar ul li:has(a:hover) {
    background-color: #ffa8ff !important;
    border: 2px dashed #00FFFF;
}


/*  */
/*  */
/*  */
/* #container, #container * {
    border: 1px solid red;
} */
#container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
    padding: 10px;
}
#container-left {
    width: 80%;
}
#container-right {
    width: 20%;
}


#catalogue-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.catalogue-item {
    width: 250px;
    background: linear-gradient(135deg, #ffe6fa 0%, #e0c3fc 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    
    border: 4px solid pink;
    position: relative;
    z-index: 1;
}
.catalogue-item-thumbnail {
    width: 100%;
    height: 200px;
    position: relative;
    
    display: flex;
    justify-content: center;
}
.catalogue-item-thumbnail img {
    height: 100%;
    position: absolute;
    top: 0;
    transition: .1s;
}

.floor-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 500px;
    background-color: #FFC0CB;
}

.poudra-floor {
    position: absolute;
    top: 20%;
    left: -50%;
    width: 200%;
    height: 200%;
    
    background-image: 
        conic-gradient(
            #FF00FF 90deg, 
            #7FFF00 90deg 180deg, 
            #FF00FF 180deg 270deg, 
            #7FFF00 270deg
        );
    background-size: 100px 100px;
    
    transform: rotateX(60deg);
    transform-origin: center top;
    
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%);
}

.card-body {
    padding: 0 15px 15px 15px;
    text-align: center;
}

.product-title {
    font-family: 'Comic Sans MS', 'Arial Rounded MT Bold', cursive;
    color: #9370DB;
    margin: 10px 0;
    font-size: 1.3rem;
    text-shadow: 2px 2px 0px #00FFFF;
}

.product-tag {
    display: inline-block;
    background: #00FFFF;
    color: #000080;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 2px 8px;
    border: 2px solid #000080;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}


.card-footer {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 3px solid #FF69B4;
}

.price-tag {
    font-size: 1.5rem;
    color: #FF1493;
    text-shadow: 1px 1px 0px white, 2px 2px 0px #FF69B4;
}

.btn-add-cart {
    background: linear-gradient(to bottom, #00FFFF, #008B8B);
    border: none;
    color: white;
    font-family: 'Comic Sans MS', bold;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    
    box-shadow: 
        inset 0px 2px 2px rgba(255,255,255,0.6),
        inset 0px -2px 2px rgba(0,0,0,0.2),
        0px 4px 0px #006666,
        0px 6px 5px rgba(0,0,0,0.3);
    transition: all 0.1s;
}

.btn-add-cart:active {
    transform: translateY(4px);
    box-shadow: 
        inset 0px 2px 2px rgba(255,255,255,0.6),
        inset 0px -2px 2px rgba(0,0,0,0.2),
        0px 0px 0px #006666,
        0px 2px 3px rgba(0,0,0,0.3);
}
.catalogue-item img:hover {
    transform: scale(1.1);
}
#login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.big-goofy-text {
    color: pink;
    font-size: 3rem;
    -webkit-text-stroke: 6px purple;
    paint-order: stroke fill; /* Met la bordure derrière le rose */
}
#login-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: black;
    background: var(--rainbow);

    font-weight: 600;
    border-radius: 300px;
    padding: 1rem;
    font-size: 2rem;
    border: 2px solid purple;
    transition: .1s;
}
#login-button:hover {
    filter: brightness(1.5);
    transform: scale(1.1);
}