/* Import de la police Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400;500;600&display=swap');

/* Import de la police Kickrush Demo */
@font-face {
    font-family: 'Kickrush Demo';
    src: url('../font/kickrush demo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Import de la police Playfair Display */
@font-face {
    font-family: 'Playfair Display';
    src: url('../font/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Import de la police Edwardian Script ITC */
@font-face {
    font-family: 'Edwardian Script ITC';
    src: url('../font/edwardianscriptitc.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Import de la police Broadway */
@font-face {
    font-family: 'Broadway';
    src: url('../font/Broadway Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    background-color: #f4edff;
}

/* Styles pour l'en-tête principal */
.main-header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    padding: 1.5rem 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-header.scrolled {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled::before {
    opacity: 0;
}

.main-header.scrolled .nav-left a,
.main-header.scrolled .nav-right a,
.main-header.scrolled .brand-center h1,
.main-header.scrolled .cart-icon svg {
    color: #8506e9;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    display: flex;
    justify-content: flex-start;
}

.nav-left ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
    align-items: center;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
    align-items: center;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-left a:hover,
.nav-right a:hover {
    opacity: 0.7;
}

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

.brand-center h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 28px;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

.cart-icon {
    display: flex;
    align-items: center;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cart-icon svg:hover {
    opacity: 0.7;
}

/* Styles responsives */
@media (max-width: 768px) {
    .main-header {
        padding: 1rem 0;
    }

    .container {
        padding: 0 20px;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-left,
    .nav-right {
        order: 2;
    }

    .brand-center {
        order: 1;
        flex: 0 0 100%;
        text-align: center;
    }

    .cart-icon {
        order: 3;
        position: absolute;
        right: 20px;
        top: 1rem;
    }

    .nav-left ul,
    .nav-right ul {
        gap: 1rem;
    }

    .nav-left a,
    .nav-right a {
        font-size: 14px;
    }

    .brand-center h1 {
        font-size: 20px;
    }
}

/* Styles pour la section hero banner */
.hero-banner {
    background-image: url('../imgs/sofa-woman.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: 1;
    margin: 0;
    width: 100%;
    max-width: 900px;
    position: relative;
}

.hero-script {
    font-family: 'Edwardian Script ITC', cursive;
    font-size: clamp(4rem, 12vw, 10rem);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    align-self: flex-start;
    /* margin-left: 5%; */
}

.hero-broadway {
    font-family: 'Broadway', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    align-self: flex-end;
    /* margin-right: 5%; */
}

.hero-cta-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.hero-cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Styles pour la section des cartes */
.cards-section {
    padding: 4rem 0;
    background-color: #f4edff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
    padding: 0 150px;
}

.card-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card {
    background-color: black;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.card-color {
    font-family: 'Broadway', sans-serif;
    font-size: 1.7rem;
    color: #8b5cf6;
    display: block;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: #333;
    text-align: left;
}

.card-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

/* Styles responsives pour la section hero */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 15px;
        gap: 1.5rem;
    }

    .hero-title {
        max-width: 100%;
    }

    .hero-script {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-left: 3%;
    }

    .hero-broadway {
        font-size: clamp(1.2rem, 6vw, 2rem);
        margin-right: 3%;
    }

    .hero-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Styles pour la section jean */
.jean-section {
    background-color: #ffffff;
    padding: 4rem 0;
    font-family: 'Inter', sans-serif;
}

.jean-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.jean-text {
    flex: 1;
    max-width: 50%;
}

.jean-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
}

.highlight-adjust {
    font-family: 'Kickrush Demo', sans-serif;
    color: #5b3b8a;
    font-weight: 300;
}

.jean-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333333;
}

.jean-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jean-features li {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #666666;
    position: relative;
    padding-left: 1.5rem;
}

.jean-features li::before {
    content: "•";
    color: #5b3b8a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.jean-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.jean-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Styles responsives pour la section jean */
@media (max-width: 768px) {
    .jean-section {
        padding: 3rem 0;
    }

    .jean-content {
        flex-direction: column;
        gap: 2rem;
    }

    .jean-text,
    .jean-image {
        max-width: 100%;
    }

    .jean-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .jean-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .jean-features li {
        font-size: 1rem;
    }
}

/* Styles pour la section features */
.features-section {
    background-image: url('../imgs/sofa-woman.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    position: relative;
    color: #ffffff;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.features-section > .container {
    position: relative;
    z-index: 2;
    display: block;
}

.features-title {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.feature-title {
    font-family: 'Kickrush Demo', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: #5b3b8a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

.cta-container {
    text-align: center;
}

.features-cta-button {
    background-color: #5b3b8a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.features-cta-button:hover {
    background-color: #4a2e6c;
    transform: translateY(-2px);
}

/* Styles responsives pour la section features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }

    .features-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card img {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .features-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Styles pour la section about */
.about-section {
    background-color: #ffffff;
    padding: 4rem 0;
    font-family: 'Inter', sans-serif;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.about-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.about-text {
    flex: 1;
    max-width: 50%;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
}

.highlight-fitgirls {
    font-family: 'Kickrush Demo', sans-serif;
    color: #5b3b8a;
    font-weight: 300;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000000;
}

/* Styles responsives pour la section about */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image,
    .about-text {
        max-width: 100%;
    }

    .about-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .about-description {
        font-size: 1rem;
    }
}

/* Styles pour la section testimonials */
.testimonials-section {
    background-color: #d1cdcb;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 1;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
}

.highlight-adopte {
    font-family: 'Kickrush Demo', sans-serif;
    color: #5b3b8a;
    font-weight: 300;
}

.testimonials-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: #000000;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: #3a5aa1;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 0.95rem;
    color: #000000;
    margin: 0;
}

.testimonials-cta-container {
    text-align: center;
}

.testimonials-cta-button {
    background-color: #5b3b8a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.testimonials-cta-button:hover {
    background-color: #4a2e6c;
    transform: translateY(-2px);
}

/* Styles responsives pour la section testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .testimonials-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonials-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Styles pour la section FAQ */
.faq-section {
    background-color: #f4edff;
    padding: 4rem 0;
    font-family: 'Inter', sans-serif;
}

.faq-section .container {
    max-width: 800px;
    display: block;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    width: 100%;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #000000;
    background-color: #dcdcdc;
    border-radius: 10px;
    margin-bottom: 0;
}

.faq-question:hover {
    background-color: #d0d0d0;
}

.faq-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #000000;
}

.faq-answer {
    display: none;
    padding: 1.5rem 2rem;
    border-bottom: none;
    margin-bottom: 0;
    margin-top: 0.5rem;
    background-color: #ffffff;
    border-radius: 10px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.faq-cta-container {
    text-align: center;
}

.faq-cta-button {
    background-color: #5b3b8a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.faq-cta-button:hover {
    background-color: #4a2e6c;
    transform: translateY(-2px);
}

/* Styles responsives pour la section FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-section .container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .faq-accordion {
        margin: 0 auto 2rem;
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

/* Styles pour le footer */
.main-footer {
    background-color: #5b3b8a;
    color: #ffffff;
    padding: 3rem 0 2rem;
    font-family: 'Inter', sans-serif;
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
}

.footer-section {
    flex: 1;
    min-width: 0;
}

.footer-logo {
    flex: 0 0 auto;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e0e0e0;
}

.footer-mission p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

/* Styles responsives pour le footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 2rem 0 1.5rem;
    }

    .main-footer .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-mission p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}