/* ============================================
   POULET TOP — Style Luxe / Chic
   ============================================ */

:root {
    --gold: #C8A96E;
    --gold-light: #D4BA85;
    --dark: #1A1A1A;
    --darker: #111111;
    --cream: #FAF8F5;
    --text: #333333;
    --text-light: #888888;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.gold { color: var(--gold); }

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 60px;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.95);
    padding: 12px 0;
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; }

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1598103442097-8b74394b95c6?w=1600') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============ NOTRE ART ============ */
.section-art {
    padding: 120px 0;
    background: var(--cream);
}

.art-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.art-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.art-image::after {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

.art-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.art-text .section-label { margin-bottom: 12px; }

.art-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.art-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.art-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

/* ============ SERVICES ============ */
.section-services {
    padding: 120px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-img {
    height: 260px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img { transform: scale(1.08); }

.service-content {
    padding: 30px;
    text-align: left;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ============ GALERIE ============ */
.section-galerie {
    padding: 120px 0;
    background: var(--darker);
    text-align: center;
}

.section-galerie .section-title { color: var(--white); }

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.galerie-item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.galerie-item.large { grid-row: span 2; }

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    min-height: 200px;
}

.galerie-item.large img { min-height: 416px; }

.galerie-item:hover img { transform: scale(1.08); }

.galerie-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(200,169,110,0);
    transition: background 0.4s ease;
    pointer-events: none;
}

.galerie-item:hover::after { background: rgba(200,169,110,0.15); }

/* ============ REASSURANCE ============ */
.section-reassurance {
    padding: 80px 0;
    background: var(--cream);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reassurance-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s ease;
}

.reassurance-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.reassurance-item svg {
    color: var(--gold);
    margin-bottom: 20px;
}

.reassurance-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.reassurance-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============ CONTACT ============ */
.section-contact {
    padding: 120px 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    text-align: left;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ============ FOOTER ============ */
.footer {
    padding: 60px 0 30px;
    background: var(--darker);
    text-align: center;
}

.footer-content { margin-bottom: 40px; }

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-logo span { color: var(--gold); }

.footer-text {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    max-width: 400px;
    margin: 0 auto 12px;
    line-height: 1.6;
}

.footer-address {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: revealFallback 0.8s ease 0.5s forwards;
}

.reveal.visible {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .art-grid { grid-template-columns: 1fr; gap: 40px; }
    .art-image img { height: 350px; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .reassurance-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(17,17,17,0.98);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 28px;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-links.open { right: 0; }

    .nav-links a { font-size: 16px; letter-spacing: 2px; }

    .hero { min-height: 100vh; }
    .hero h1 { font-size: 36px; }

    .section-art, .section-services, .section-galerie, .section-contact {
        padding: 80px 0;
    }

    .art-image::after { display: none; }
    .art-image img { height: 280px; }
    .art-stats { gap: 24px; }

    .galerie-grid { grid-template-columns: 1fr 1fr; }
    .galerie-item.large { grid-row: span 1; }
    .galerie-item.large img { min-height: 200px; }

    .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .reassurance-item { padding: 24px 16px; }

    .section-title { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .reassurance-grid { grid-template-columns: 1fr; }
    .galerie-grid { grid-template-columns: 1fr; }
    .art-stats { flex-direction: column; gap: 16px; }
}

/* ============ ADMIN PAGE ============ */
.admin-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 20px;
}

.admin-box {
    background: var(--white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.admin-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.admin-box .sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.admin-box input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 16px;
    transition: border 0.3s ease;
}

.admin-box input:focus {
    outline: none;
    border-color: var(--gold);
}

.admin-box .btn-admin {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 6px;
    margin-top: 8px;
}

.admin-box .btn-admin:hover { background: var(--gold-light); }

.admin-box .error-msg {
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
}

.admin-logged {
    display: none;
}

.admin-logged h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.admin-logged p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.admin-logged .email-field {
    margin-bottom: 20px;
}

.admin-logged .email-field label {
    display: block;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.btn-domain {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-domain:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-back {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.btn-back:hover { color: var(--gold); }