:root {
    --gold: #D4AF37;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray: #141414;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background: var(--black); 
    color: var(--white); 
    font-family: 'Montserrat', sans-serif; /* Police sans empattement par défaut */
    top: 0px !important; 
}

/* --- Google Translate Styling --- */
#google_translate_element { margin-right: 15px; }
.goog-te-banner-frame.skiptranslate { display: none !important; }
.goog-logo-link { display: none !important; }
.goog-te-gadget { color: transparent !important; font-size: 0px !important; }
.goog-te-gadget .goog-te-combo {
    background: #1a1a1a;
    color: white;
    border: 1px solid #333;
    padding: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    outline: none;
}

/* --- Navigation --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 5%; background: rgba(10, 10, 10, 0.98);
    position: fixed; width: 100%; z-index: 1000; border-bottom: 1px solid #222;
}

.logo-container { flex: 1; }
.main-logo { height: 60px; width: auto; object-fit: contain; }
.main-logo2 { height: 120px; width: auto; object-fit: contain; margin-bottom: 30px; }


.nav-links { flex: 2; text-align: center; }
.nav-links a { 
    color: white; 
    text-decoration: none; 
    margin: 0 15px; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 1.5px; 
    font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }

.lang-contact { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 15px; }
.btn-contact { 
    background: var(--gold); 
    color: black; 
    padding: 10px 20px; 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 0.8rem; 
    letter-spacing: 1px;
    border-radius: 5px;
}

/* --- Hero Section --- */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/castle.jpg') center/cover;
    display: flex; justify-content: center; align-items: center; text-align: center;
}
.hero h1 { 
    font-weight: 700; 
    font-size: 4rem; 
    color: var(--gold); 
    text-transform: uppercase; 
    letter-spacing: 3px;
}
.hero p { font-weight: 300; font-size: 1.2rem; letter-spacing: 1px; margin-top: 10px; }

/* --- Filters --- */
.filter-section { background: var(--gray); padding: 30px 5%; border-bottom: 1px solid #222; }
.filter-container { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 1200px; margin: 0 auto; }

select, .btn-search {
    padding: 12px; background: #1a1a1a; border: 1px solid #333; color: white; min-width: 160px; 
    outline: none; font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
}
.btn-search { background: var(--gold); color: black; border: none; cursor: pointer; font-weight: 700; text-transform: uppercase; }

/* --- Grid & Cards --- */
.grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px; padding: 60px 5%; max-width: 1400px; margin: 0 auto;
}
.card { background: #111; border-bottom: 2px solid transparent; transition: 0.3s; }
.card:hover { border-bottom: 2px solid var(--gold); transform: translateY(-5px); }
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-info { padding: 20px; }
.card-info h3 { color: var(--gold); margin: 10px 0; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.tag { font-size: 0.7rem; color: #888; text-transform: uppercase; font-weight: 600; }

/* --- Contact Section --- */
.contact-section { padding: 80px 5%; text-align: center; background: #080808; }
.contact-section h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
.contact-card { border: 1px solid var(--gold); padding: 40px; display: inline-block; min-width: 320px; border-radius: 4px; }
.agent-name { font-weight: 700; font-size: 1.2rem; margin: 5px 0; color: var(--white); }

/* --- Footer --- */
footer { background: #050505; padding: 60px 5% 20px; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }

.footer-col { display: flex; flex-direction: column; }
.footer-col:nth-child(2) { text-align: center; align-items: center; }
.footer-col:nth-child(3) { text-align: right; align-items: flex-end; }

.footer-col h4, .logo-footer { color: var(--gold); margin-bottom: 20px; font-size: 0.9rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col a { color: #888; text-decoration: none; font-size: 0.9rem; line-height: 2.2; transition: 0.3s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { text-align: center; border-top: 1px solid #222; padding-top: 20px; font-size: 0.75rem; color: #444; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; letter-spacing: 1px; }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px; 
    }
    .footer-col:nth-child(2), .footer-col:nth-child(3) {
        text-align: center;
        align-items: center;
    }
}