/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af8a;
    text-transform: uppercase;
}

.navbar {
    display: flex;
    gap: 2rem;
}

.navbar a {
    color: #333;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #d4af8a;
}

.icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icons i {
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icons i:hover {
    color: #d4af8a;
}

.search-form {
    display: flex;
    align-items: center;
}

#search-box {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    width: 200px;
    transition: all 0.3s ease;
}

#search-box:focus {
    border-color: #d4af8a;
    width: 220px;
}

#toggler {
    display: none;
}

.fa-bars {
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    display: none;
}

/* Section Home - Version modifiée pour correspondre à l'image */
.home {
    min-height: 100vh;
    background: url('logo55.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.6;       
    font-style: italic;
    background-attachment: fixed;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.home .content {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home .content h4 {
    font-size: 1.2rem;
    color: #d4af8a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home .content h3 {
    font-size: 2.8rem;
    color: #333;
    margin: 20px 0;
    line-height: 1.2;
    font-weight: 300;
    font-style: italic;
}

.home .content h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af8a;
    margin: 20px 0;
}

.home .content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: #d4af8a;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c19a6b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Version mobile */
@media (max-width: 768px) {
    .home .content {
        padding: 30px;
        margin: 20px;
    }
    
    .home .content h3 {
        font-size: 2rem;
    }
    
    .home .content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .home .content {
        padding: 20px;
    }
    
    .home .content h3 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}
/* Section Robes */
.robes {
    padding: 80px 5%;
}

.center-text {
    text-align: center;
    margin-bottom: 40px;
}

.center-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.center-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4af8a;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.robe {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.robe:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.robe img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.robe h3 {
    font-size: 1.2rem;
    color: #333;
    padding: 15px 15px 5px;
}

.robe p {
    color: #777;
    padding: 0 15px 15px;
    font-size: 0.9rem;
}

.start {
    padding: 0 15px;
    margin-bottom: 15px;
    color: #d4af8a;
}

.start a {
    color: #d4af8a;
    font-size: 0.9rem;
    margin-right: 3px;
}

.row-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 15px;
}

.row-left a {
    color: #d4af8a;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.row-left a:hover {
    color: #c19a6b;
}

.row-right h6 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.row-right a {
    font-size: 0.8rem;
    color: #777;
    transition: all 0.3s ease;
}

.row-right a:hover {
    color: #d4af8a;
}

.n-btn {
    text-align: center;
    margin-top: 30px;
}

.btn2 {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn2:hover {
    background-color: #d4af8a;
}

/* Section Features */
.feature {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.feature-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.box {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.box:hover {
    transform: translateY(-10px);
}

.f-icon i {
    font-size: 2.5rem;
    color: #d4af8a;
    margin-bottom: 20px;
}

.f-text h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.f-text p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Client Reviews */
.client-reviews {
    padding: 80px 5%;
    text-align: center;
}

.client-reviews h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.client-reviews img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #d4af8a;
}

.client-reviews p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.client-reviews h2 {
    color: #d4af8a;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.first-inf img {
    width: 150px;
    margin-bottom: 20px;
}

.first-inf p {
    color: #555;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-icon {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon a i {
    font-size: 1.3rem;
    color: #555;
    transition: all 0.3s ease;
}

.social-icon a:hover i {
    color: #d4af8a;
}

.second-inf h4,
.third-inf h4,
.fourth-inf h4,
.five h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.second-inf h4::after,
.third-inf h4::after,
.fourth-inf h4::after,
.five h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d4af8a;
}

.second-inf p,
.third-inf p,
.fourth-inf p,
.five p {
    color: #555;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.second-inf p:hover,
.third-inf p:hover,
.fourth-inf p:hover {
    color: #d4af8a;
    transform: translateX(5px);
}

/* Footer */
.end-text {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    header {
        padding: 15px 3%;
    }
    
    .home {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .fa-bars {
        display: block;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    #toggler:checked ~ .navbar {
        left: 0;
    }
    
    .navbar a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .home .content h3 {
        font-size: 2rem;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {
    .home .content {
        padding: 20px;
    }
    
    .home .content h3 {
        font-size: 1.8rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}