/* Base & Typography */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Fond noir pour matcher le logo */
    color: #fff;
}

h1, h2, h3, .playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* New Header Styles */
.main-header {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #222;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area img {
    max-height: 100px; /* Plus grand pour l'impact visuel */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-area img:hover {
    transform: scale(1.03);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #eee;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #7b1d23; /* Couleur lie-de-vin du logo */
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    border: 1px solid #7b1d23;
    padding: 10px 25px !important;
    border-radius: 2px;
    transition: all 0.3s ease !important;
}

.contact-btn:hover {
    background-color: #7b1d23;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Models Grid & Cards */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Modern Model Card */
.model-card {
    position: relative;
    overflow: hidden;
    background: #111;
    border: none;
    transition: transform 0.4s ease;
}

.model-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: brightness(0.9);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.model-card:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.model-card::after {
    content: attr(data-name);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.model-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.model-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.model-profile img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 5px;
}

.admin-header {
    background: #111;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.admin-header a {
    color: #fff;
    margin: 0 10px;
}
.admin-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
}
.admin-form input, .admin-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
}
.admin-form button {
    padding: 10px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
}
