/* Acumen Patrimoine - Index Page Specific Styles */

/* Hero Section */
#accueil {
    background: linear-gradient(rgba(48, 48, 49, 0.7), rgba(48, 48, 49, 0.7)), url('../img/Acumen-patrimoine-hero1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 170px 20px 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a0824d, #d4af37);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Section */
#apropos {
    background: white;
    padding: 100px 20px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.expertise-card {
    text-align: left;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #d4af37;
}

.expertise-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 600;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    color: #64748b;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.expertise-list li:before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 100px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a0824d, #d4af37);
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "→";
    color: #303031;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Section */
#contact {
    background: white;
    padding: 100px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 80px;
    margin-top: 60px;
}

.contact-form {
    background: #f8fafc;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1f2937;
    font-weight: 600;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #1f2937;
    font-weight: 600;
}

.contact-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    color: #64748b;
    font-size: 1rem;
}

/* Recruitment Section */
#recrutement {
    background: linear-gradient(135deg, #a0824d, #d4af37);
    color: white;
    padding: 100px 20px;
}

.recruitment-content {
    text-align: center;
    margin-bottom: 60px;
}

.recruitment-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.recruitment-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.job-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.job-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.job-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Partner Section */
#partenaires {
    background: #f8fafc;
    padding: 100px 20px;
}

.login-form {
    max-width: 500px;
    margin: 60px auto 0;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a0824d, #d4af37);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.login-form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 600;
}

.login-form p {
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Partner Dashboard */
.partner-dashboard {
    display: none;
    margin-top: 60px;
}

.partner-dashboard.active {
    display: block;
}

.dashboard-header {
    background: linear-gradient(135deg, #a0824d, #d4af37);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.btn-logout {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.search-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%6364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 18px center;
    background-size: 20px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #303031;
    box-shadow: 0 0 0 3px rgba(48, 48, 49, 0.1);
}

.filter-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-row select {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
}

.table-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #f8fafc;
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 20px 15px;
    border-bottom: 1px solid #f1f5f9;
}

tr:hover {
    background: #f8fafc;
}

.status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status.available {
    background: #dcfce7;
    color: #166534;
}

.status.reserved {
    background: #fef3c7;
    color: #92400e;
}

.status.sold {
    background: #fee2e2;
    color: #991b1b;
}

.btn-view {
    color: #303031;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-view:hover {
    background: #fbf8f1;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 12px 8px;
    }

    .dashboard-header {
        flex-direction: column;
        text-align: center;
    }

    .filter-row {
        flex-direction: column;
    }
}
