/*
Theme Name: LuxImmo
Theme URI: https://example.com/luximmo
Author: Votre Nom
Author URI: https://example.com
Description: Thème premium « Noir + Or » pour agences immobilières. Épuré, moderne, prêt à l’emploi.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luximmo
Tags: one-column, custom-background, custom-logo, custom-menu, featured-images, full-width-template, theme-options

/* ----------------------------------------------
   1. Variables
---------------------------------------------- */

:root {
  --primary-color: #000;          /* Noir */
  --accent-color: #DAA520;        /* Or (GoldenRod) */
  --text-color: #222;
  --bg-color: #f9f9f9;
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

/* ----------------------------------------------
   2. Reset & Global
---------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background: var(--bg-color);
  margin: 0;
  padding: 0;
}

/* ----------------------------------------------
   3. Header
---------------------------------------------- */

.site-header {
  background: var(--primary-color);
  padding: 20px 0;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .logo {
  max-height: 60px;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color .3s;
}

.main-navigation a:hover {
  color: var(--accent-color);
}

/* ----------------------------------------------
   4. Main Content
---------------------------------------------- */

.main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.entry-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.entry-content {
  line-height: 1.8;
}

.card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1rem;
  border-radius: 8px;
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.card .price {
  color: var(--accent-color);
  font-weight: 700;
  margin-top: .5rem;
}

/* ----------------------------------------------
   5. Footer
---------------------------------------------- */

.site-footer {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: .9rem;
}