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

html {
    scroll-behavior: smooth;
    font-family: "Damas Font", sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    transition: all ease 0.3s;
    background-repeat: no-repeat;
}

h1 {
    font-weight: 900;
    font-size: 60px;
    margin-top: 20px;
    text-align: center;
}

h2 {
    font-weight: 800;
    font-size: 40px;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

button,
.btn {
    display: inline-block;
    background-color: #00b0f0;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
.btn:hover {
    background-color: #008cb0;
    transform: translateY(-2px);
}

.intro-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(10, 20, 30, 0.1), rgba(10, 20, 30, 0.7));
    z-index: 2;
    pointer-events: none;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0s linear 1s;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
    transition: opacity 1s ease-in-out 0s;
}

.intro-text {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.intro-text h1 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#first-p {
    margin-bottom: 35px;
}

.Univers {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.univers-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    height: 500px;
    width: 600px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
    overflow: hidden;
    max-width: 1000px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-text {
    padding: 20px;
    text-align: center;
}

.card-text h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.card .btn {
    align-self: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.accessoires {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.accessoires h2 {
    margin-bottom: 40px;
    font-size: 32px;
    text-transform: uppercase;
}

.accessoires-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.accessoire-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accessoire-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessoire-image h3 {
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.accessoire-card:hover .accessoire-image {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.1);
}

.accessoire-card .btn {
    margin-top: auto;
}

footer {
    background: #111;
    color: #fff;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.cookie-banner {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    pointer-events: auto;
}

.cookie-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    display: flex;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.cookie-img-container {
    width: 40%;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
    display: none;
}

@media (min-width: 768px) {
    .cookie-img-container {
        display: block;
    }

    .cookie-text {
        width: 60%;
    }
}

.cookie-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.cookie-icon-container {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    z-index: 10;
}

.cookie-icon {
    width: 100%;
    height: auto;
}

.cookie-text {
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-accept,
.btn-customize,
.btn-decline {
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-accept {
    background-color: #00b0f0;
    color: #fff;
    border-color: #00b0f0;
    flex: 1;
}

.btn-accept:hover {
    background-color: #008cb0;
}

.btn-customize {
    background-color: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-customize:hover {
    border-color: #333;
    background-color: #fff;
}

.btn-decline {
    background: none;
    border: none;
    padding: 0;
    color: #999;
    font-size: 12px;
    text-decoration: underline;
    align-self: flex-start;
    margin-bottom: 10px;
}

.btn-decline:hover {
    color: #333;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: #fff;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    color: #333;
}

.cookie-modal-body {
    padding: 30px;
    overflow-y: auto;
}

.modal-intro {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.cookie-category {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    transition: background 0.2s;
}

.cookie-category:hover {
    background: #fcfcfc;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-title h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.required-badge {
    font-size: 10px;
    background: #eee;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #555;
}

.cookie-description {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-modal {
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-accept-all {
    background-color: #00b0f0;
    color: #fff;
}

.btn-save {
    background-color: #333;
    color: #fff;
}

.btn-reject-all {
    background-color: transparent;
    border-color: #ddd;
    color: #555;
}

.text-stylee {
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    padding-top: 0;
    margin-top: -30px;
}

.text-intro {
    color: #fff;
    position: absolute;
    top: 35vh;
    left: 7vw;
    font-style: italic;
    z-index: 2;
}

#text1 {
    padding-left: 15px;
    font-size: 1em;
    font-style: normal;
    font-weight: 600;
    margin-bottom: -10px;
}

.text2 {
    font-size: 7em;
    font-weight: 800;
    text-transform: uppercase !important;
}

#text3 {
    font-style: normal;
    padding-left: 10px;
    color: #b6b6b6;
}