/* ============================================
   Les Diamants du Royaume - Main Stylesheet
   Fonts: Lora (body) + Oswald (headings)
   Color scheme: Black backgrounds, gold accents
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d29f68;
  --gold-link: #e09900;
  --gold-hover: #d17e36;
  --copper: #cc8d66;
  --black: #000000;
  --bg-dark: #000000;
  --bg-section: #0a0a0a;
  --bg-card: #111111;
  --divider: #232220;
  --white: #ffffff;
  --text-light: #cccccc;
  --text-body: #999999;
  --text-heading-light: #333333;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --font-heading: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: var(--gold-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header & Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #000;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
}

.main-nav a {
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold);
  background: rgba(210, 159, 104, 0.08);
}

.main-nav a.active {
  color: var(--gold-hover);
  border-bottom: 2px solid var(--gold-hover);
}

/* ---------- Hero Section ---------- */
.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;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold);
  text-transform: lowercase;
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 1.65rem;
  color: var(--text-light);
  letter-spacing: 4px;
  text-transform: capitalize;
  font-weight: 400;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 25px auto;
}

.hero-content .btn {
  margin-top: 30px;
}

/* ---------- Section Dividers (Divi-like) ---------- */
.section-wave-top {
  position: relative;
}

.section-wave-top::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--divider);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.section-angle-bottom {
  position: relative;
}

.section-angle-bottom::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}

.divider-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
}

.divider-ornament {
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.divider-ornament::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--divider), transparent);
}

.divider-ornament span {
  position: relative;
  display: inline-block;
  background: var(--black);
  padding: 0 20px;
  color: var(--gold);
  font-size: 1.4rem;
}

/* ---------- Sections General ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--black);
}

.section-darker {
  background: var(--bg-section);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 3px;
}

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

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

.text-center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(210, 159, 104, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ---------- About Banner ---------- */
.about-banner {
  background: var(--bg-card);
  border: 1px solid rgba(210, 159, 104, 0.2);
  border-radius: 0;
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 70px;
}

.about-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 25px;
  font-weight: 400;
}

/* ---------- About Columns ---------- */
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.about-columns p {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 2;
}

/* ---------- Cat Grid ---------- */
.cats-section {
  background: var(--bg-section);
}

.cats-header {
  text-align: center;
  margin-bottom: 50px;
}

.cats-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 3px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cat-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(210, 159, 104, 0.1);
  transition: all 0.4s ease;
}

.cat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(210, 159, 104, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cat-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.cat-card .cat-name {
  text-align: center;
  padding: 18px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--bg-card);
  font-weight: 400;
}

/* ---------- Cat Profile Card ---------- */
.cat-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.cat-profile-image {
  overflow: hidden;
  border: 1px solid rgba(210, 159, 104, 0.2);
}

.cat-profile-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.cat-profile-image:hover img {
  transform: scale(1.03);
}

.cat-profile-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 400;
}

.cat-profile-info p {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 2;
}

/* ---------- Features / Philosophy Section ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 40px 25px;
  background: var(--bg-card);
  border: 1px solid rgba(210, 159, 104, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(210, 159, 104, 0.4);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-item p {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.9;
}

/* ---------- Adoption Section ---------- */
.adoption-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.adoption-box {
  background: var(--bg-card);
  border: 1px solid rgba(210, 159, 104, 0.15);
  padding: 45px;
  transition: all 0.3s ease;
}

.adoption-box:hover {
  border-color: rgba(210, 159, 104, 0.4);
}

.adoption-box h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}

.adoption-box p {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 2;
}

/* ---------- Newsletter Section ---------- */
.newsletter-section {
  background: var(--bg-section);
  text-align: center;
  position: relative;
}

.newsletter-section h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: 3px;
}

.newsletter-section p {
  color: var(--text-body);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3rem;
}

.newsletter-bg {
  position: relative;
}

.newsletter-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(210, 159, 104, 0.3);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-body);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--divider);
  padding: 50px 0 30px;
  text-align: center;
}

.footer-logo img {
  height: 50px;
  margin: 0 auto 20px;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(210, 159, 104, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-body);
  font-size: 1rem;
  margin: 0 15px;
  transition: color 0.3s ease;
}

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

.footer-copy {
  color: var(--text-body);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

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

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-section), var(--black));
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 15px;
  font-weight: 300;
}

.page-hero p {
  color: var(--text-body);
  letter-spacing: 2px;
  font-size: 1.3rem;
}

.page-hero .hero-divider {
  margin: 15px auto;
}

/* ---------- Page Hero with Image ---------- */
.page-hero-image {
  padding-top: 80px;
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-image .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.page-hero-image .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.page-hero-image .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}

/* ---------- Contact Form ---------- */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-intro p {
  color: var(--text-light);
  font-size: 1.3rem;
  line-height: 1.9;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(210, 159, 104, 0.25);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.contact-image {
  text-align: center;
  margin-bottom: 40px;
  overflow: hidden;
}

.contact-image img {
  max-width: 400px;
  margin: 0 auto;
}

.contact-social {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--divider);
}

.contact-social p {
  color: var(--text-body);
  margin-bottom: 15px;
}

.contact-social a {
  color: var(--gold);
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.05rem;
}

/* ---------- Conseil / Advice Cards ---------- */
.conseil-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.conseil-card {
  background: var(--bg-card);
  border: 1px solid rgba(210, 159, 104, 0.15);
  padding: 40px;
  transition: all 0.3s ease;
}

.conseil-card:hover {
  border-color: rgba(210, 159, 104, 0.4);
  transform: translateY(-3px);
}

.conseil-card .conseil-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.conseil-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.conseil-card p {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.9;
}

/* ---------- Reservation Timeline ---------- */
.reservation-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.reservation-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(210, 159, 104, 0.2));
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  padding: 30px 35px;
  background: var(--bg-card);
  border: 1px solid rgba(210, 159, 104, 0.15);
  transition: all 0.3s ease;
}

.timeline-step:hover {
  border-color: rgba(210, 159, 104, 0.4);
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: -52px;
  top: 30px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.timeline-step p {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1.9;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid rgba(210, 159, 104, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: rgba(210, 159, 104, 0.5);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  aspect-ratio: 1;
}

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

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.wide img {
  aspect-ratio: 2/1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.tall img {
  aspect-ratio: auto;
  height: 100%;
}

/* ---------- Kitten Categories ---------- */
.kitten-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.kitten-category {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 159, 104, 0.15);
  transition: all 0.4s ease;
}

.kitten-category:hover {
  border-color: rgba(210, 159, 104, 0.5);
  transform: translateY(-5px);
}

.kitten-category img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kitten-category:hover img {
  transform: scale(1.05);
}

.kitten-category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.kitten-category-overlay h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 400;
}

/* ---------- News Cards ---------- */
.news-card {
  background: var(--bg-card);
  border: 1px solid rgba(210, 159, 104, 0.2);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: rgba(210, 159, 104, 0.4);
}

.news-card .news-date {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.news-card h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.news-card p {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ---------- Legal Page ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

.legal-content p {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 15px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.legal-content ul li {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 2;
  padding-left: 20px;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

/* ---------- Tarif Section ---------- */
.tarif-box {
  background: var(--bg-card);
  border: 1px solid rgba(210, 159, 104, 0.2);
  padding: 50px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tarif-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 2px;
}

.tarif-box p {
  color: var(--text-light);
  font-size: 1.3rem;
  line-height: 2;
  font-style: italic;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.2s; }
.fade-in-up.delay-2 { animation-delay: 0.4s; }
.fade-in-up.delay-3 { animation-delay: 0.6s; }

/* ---------- Hero Video ---------- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mute-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mute-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(210, 159, 104, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: var(--gold-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(210, 159, 104, 0.6);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .about-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .adoption-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .cat-profile {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .conseil-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.wide img {
    aspect-ratio: 1;
  }

  .kitten-categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1rem;
  }

  .main-nav a.active {
    border-bottom: 1px solid var(--gold);
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }

  .hero-content p {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-bg,
  .page-hero-image .hero-bg {
    background-attachment: scroll;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .about-banner {
    padding: 30px 20px;
  }

  .about-banner h2 {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .reservation-timeline {
    padding-left: 50px;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 0 15px;
    height: 70px;
  }

  .logo img {
    height: 55px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .reservation-timeline {
    padding-left: 40px;
  }

  .reservation-timeline::before {
    left: 12px;
  }

  .timeline-step::before {
    left: -42px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0.8rem;
  }
}
