/* ===== POULET RÔTI — Luxe / Chic ===== */
:root {
  --primary: #8B6914;
  --primary-light: #C4A23A;
  --dark: #1a1a1a;
  --darker: #111;
  --text: #333;
  --text-light: #777;
  --bg: #fafaf7;
  --card-bg: #fff;
  --border: #e8e2d6;
  --gold: #C4A23A;
  --gold-light: #d4b94a;
  --radius: 12px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(10px);
  padding: 12px 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: #fff;
  transition: var(--transition);
}

.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); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--darker);
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 24px;
  transition: right 0.4s ease;
  z-index: 999;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.mobile-overlay.open { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1598103442097-8b74394b95c6?w=1400') center/cover no-repeat;
  filter: brightness(0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 5%;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,162,58,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--dark);
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
section { padding: 100px 5%; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 16px;
}

.section-header .line {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ===== ABOUT ===== */
.about { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img .accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text h3 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat { text-align: center; }
.stat .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat .label-stat {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.service-card-img {
  height: 240px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery { background: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .overlay { opacity: 1; }

.overlay svg { width: 32px; height: 32px; stroke: #fff; }

/* ===== REASSURANCE ===== */
.reassurance { background: var(--bg); }

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.reassurance-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.reassurance-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.reassurance-item svg {
  width: 48px; height: 48px;
  stroke: var(--gold);
  margin-bottom: 20px;
}

.reassurance-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.reassurance-item p {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== MAP ===== */
.map-section { padding: 0; }

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand .logo {
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact-item svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== CONTACT PAGE ===== */
.page-hero {
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1598103442097-8b74394b95c6?w=1400') center/cover no-repeat;
  filter: brightness(0.35);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

.contact-section { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.contact-card svg {
  width: 40px; height: 40px;
  stroke: var(--gold);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: revealFallback 0.8s ease 0.3s forwards;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.active { opacity: 1; }

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover { color: var(--gold); }

/* ===== ADMIN ===== */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}

.admin-login-box {
  background: #fff;
  padding: 48px;
  border-radius: var(--radius);
  width: 400px;
  max-width: 90%;
  text-align: center;
}

.admin-login-box h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--dark);
}

.admin-login-box p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.admin-login-box input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
  transition: var(--transition);
}

.admin-login-box input:focus { border-color: var(--gold); }

.admin-login-box .btn { width: 100%; }

.admin-panel {
  display: none;
  min-height: 100vh;
  background: var(--bg);
  padding: 40px 5%;
}

.admin-panel.active { display: block; }

.admin-panel h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 8px;
}

.admin-panel > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.admin-card h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 16px;
}

.admin-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.admin-card input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
}

.admin-card input:focus { border-color: var(--gold); }

.domain-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.domain-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,162,58,0.3);
}

.admin-logout {
  display: inline-block;
  margin-top: 24px;
  color: var(--text-light);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.admin-logout:hover { color: var(--dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: 350px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 5%; }

  .hero { min-height: 500px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 200px; }

  .reassurance-grid { grid-template-columns: 1fr 1fr; }
  .reassurance-item { padding: 24px 16px; }

  .about-stats { gap: 24px; }
  .stat .number { font-size: 28px; }

  .footer { padding: 40px 5% 24px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reassurance-grid { grid-template-columns: 1fr; }
}
