:root {
    --base-stroke-color: #000000;
    --font-size: 200px;
    --gradient-start-color: #50C878;
    --gradient-middle-color: #00ffff;
    --gradient-end-color: #50C878;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #000000;
    color: #fff;
    line-height: 1.6;
}

.scroll-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-scroll-snap-type: y mandatory;
}

section {
    height: 100vh;
    scroll-snap-align: start;
    -webkit-scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #000000;
}

#presentation {
    background: #000000;
}

#mobile-text {
    display: none;
    color: grey;
    font-size: 4rem;
}

#desktop-svg {
    width: 100%;
    height: auto;
}

#produits {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produits-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 90%;
    margin: 0 auto;
    height: 80vh;
}

.produit-button {
    width: 100%;
    height: calc((80vh - (var(--n) - 1) * 1rem) / var(--n));
    text-align: center;
    text-decoration: none;
    color: #50C878;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.produit-button img {
    width: 100%;
    height: auto;
    flex-grow: 1;
}

.produit-button p {
    padding: 1rem;
    margin: 0;
}

.produit-button:hover {
    transform: translateY(-5px);
}

.section-notification {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #50C878;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.section-notification.visible {
    opacity: 1;
}

.contact-btn, .social-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #50C878;
    color: #000000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

.social-btn {
    top: 4rem;
}

.contact-modal, .social-modal {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.contact-modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
}

.social-modal {
    top: 7rem;
    right: 1rem;
    width: 200px;
}

.contact-modal input,
.contact-modal select,
.contact-modal textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #50C878;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
}

.contact-modal input::placeholder,
.contact-modal textarea::placeholder {
    color: #ccc;
    opacity: 0.7;
}

.contact-modal button.copy-email {
    background: #00ffff;
    color: #000000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.social-modal a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

@media (max-width: 768px) {
    #mobile-text {
        display: block;
    }
    #desktop-svg {
        display: none;
    }
}