/*
Theme Name: LuxHotel Complet
Theme URI: https://www.exemple.com
Author: ChatGPT
Description: Thème WordPress complet et élégant pour un hôtel de luxe avec contenu fictif.
Version: 1.0
*/

body {
  font-family: 'Playfair Display', serif;
  background-color: #fff;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

a {
  color: #bfa66b;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header {
  background: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}
header .logo {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}
nav ul li {
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
.hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #bfa66b;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.room-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
}
.room-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.room-card .details {
  padding: 20px;
}
.room-card .details h3 {
  margin-top: 0;
}
.room-card .details p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.room-card .details .price {
  color: #bfa66b;
  font-weight: bold;
}

footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}
