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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #000;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 57px;
    box-shadow: 0px 5px 10px rgba(163, 163, 163, 0.92);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1003px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    width: 148px;
    height: 134px;
    object-fit: contain;
}

.menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu-item {
    text-decoration: none;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 600;
    color: #5d17eb;
    cursor: pointer;
    padding: 21px 20px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.active-nav {
    text-decoration: none;
    background: none;
    border: 2px solid #5d17eb;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 600;
    color: #5d17eb;
    cursor: pointer;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.menu-item:hover {
    opacity: 0.8;
}

.menu-item.sign-up {
    border: 2px solid #000;
    padding: 10px 20px;
    border-radius: 8px;
}

/* Section 1: Hero */
.section1 {
    background-color: white;
    padding: 45px 0;
    margin: 20px auto;
    max-width: 1003px;
}

.section1-container {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0 20px;
}

.section1-image {
    flex: 0 0 45%;
    min-height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 579px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.section1-content {
    flex: 0 0 55%;
    padding: 20px;
}

.section1-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section1-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.section1-content strong {
    font-weight: 700;
}

/* CTA Button */
.cta-button {
    text-decoration: none;
    background-color: #5d17eb;
    color: white;
    border: 2px solid #000;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Section 2: Aménagements */
.section2 {
    background-color: white;
    padding: 50px 20px;
    margin: 20px auto;
    max-width: 1003px;
    border-radius: 10px;
}

.section2 h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.section2-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.amenagements-list {
    flex: 0 0 50%;
}

.amenagements-list ul {
    list-style-position: inside;
    font-size: 20px;
    color: #4b4444;
    line-height: 1.8;
    font-weight: 500;
}

.amenagements-list li {
    margin-bottom: 15px;
}

.amenagements-image {
    flex: 0 0 50%;
}

.amenagements-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: inset 100px 0px 60px 30px rgba(255, 255, 255, 0.8);
    object-fit: cover;
}

/* Section 3: Avis clients */
.section3 {
    background-color: white;
    padding: 50px 20px;
    margin: 20px auto;
    max-width: 1003px;
    text-align: center;
}

.section3 h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.reviews-container {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.review-card {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    width: 285px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.review-photo {
    width: 123px;
    height: 116px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
}

.review-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.review-stars {
    width: 151px;
    height: 29px;
    margin: 0 auto 15px;
    display: block;
}

.review-card p {
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: #000;
}

.section3 .cta-button {
    display: inline-block;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #f9f9f9 14.592%, #5d17eb 100%);
    color: white;
    padding: 150px 30px;
    text-align: center;
    margin-top: 50px;
    height: 315px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer p {
    font-size: 19px;
    margin: 10px 0;
    font-weight: 400;
    line-height: 1.5;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-main {
    background-color: #f9f9f9;
    padding: 50px 20px;
    min-height: calc(100vh - 400px);
}

.contact-section {
    max-width: 756px;
    margin: 0 auto;
    padding: 50px 0;
}

.contact-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
}

.contact-form {
    width: 100%;
}

.form-container {
    background-color: #dfd4db;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.form-row-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-group.full-width {
    flex: 1 0 100%;
}

.form-label {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #b6086f;
    margin-right: 10px;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    background-color: #f5f2f2;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #999999;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #a3a3a3;
}

.form-textarea {
    resize: vertical;
    min-height: 145px;
    padding: 15px 20px;
}

.form-submit {
    background-color: #5d17eb;
    color: white;
    border: 2px solid #000;
    padding: 15px 40px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    width: 228px;
    margin: 30px auto 0;
    display: block;
    transition: all 0.3s ease;
}

.form-submit:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.form-submit:active {
    transform: scale(0.98);
}




/* Maison Page Styles */
.maison-page {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
}

/* Side Menu */
.side-menu {
    width: 190px;
    background: linear-gradient(266.17deg, #f9f9f9 27.49%, #5d17eb 280.01%);
    padding: 21px 26px;
    border-radius: 10px;
    height: fit-content;
    margin-top: 20px;
    position: sticky;
    display: flex;
    top: 200px;
    flex-direction: column;
    gap: 50px;
    
}

.side-menu-title {
    font-size: 20px;
    font-weight: 600;
    color: #b6086f;
    margin: 0;
    text-align: center;
}

.side-menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-menu-item {
    text-decoration: none;
    background: none;
    border: none;
    color: #5d17eb;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
}

.side-menu-item:hover {
    color: #b6086f;
}

.side-menu-item.active {
    text-decoration: none;
    color: #b6086f;
}

/* Main Content Area */
.maison-content {
    flex: 1;
    padding: 50px;
    margin-left: 30px;
}

/* Information Section */
.info-section {
    margin-bottom: 50px;
}

.info-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.info-table {
    display: flex;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    max-width: 560px;
}

.table-labels,
.table-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 342px;
}

.table-labels {
    border-right: 1px solid #b6086f;
}

.table-row {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #b6086f;
    font-size: 20px;
    font-weight: 500;
    color: #b6086f;
}

.table-row:last-child {
    border-bottom: none;
}

.table-value {
    font-weight: 700;
}

/* Piece Sections */
.piece-section {
    margin-bottom: 60px;
    position: relative;
}

.piece-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.piece-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.piece-image {
    flex: 0 0 328px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

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

.piece-details {
    flex: 1;
    padding: 15px 0;
}

.piece-details ul {
    list-style-position: inside;
    font-size: 15px;
    line-height: 1.8;
    color: #000;
}

.piece-details li {
    margin-bottom: 10px;
}

/* CTA Section */
.cta-container {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
}

.cta-button {
    background-color: #5d17eb;
    color: white;
    border: 2px solid #000;
    padding: 15px 40px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}