/* ========================= */
/* 1. RESET & BASE */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Georgia", serif;
  color: #26403D;
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #d8cfe6 0%,
    #95c9a9 60%,
    #9bb48a 100%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* ========================= */
/* 2. NAVBAR */
/* ========================= */
.navbar {
  background: #26403D;
  padding: 1rem;
  text-align: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navbar a {
  color: #faf7f4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #D68B7B;
}

/* ========================= */
/* 3. HERO WITCHY */
/* ========================= */
.witchy-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.witchy-hero .hero-text {
  max-width: 600px;
}

.witchy-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #26403D;
}

.witchy-hero p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
}

.witchy-hero .hero-image img {
  max-width: 200px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ========================= */
/* 4. SECTION PRÉSENTATION */
/* ========================= */
.witchy-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem;
  background: #faf7f4;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.witchy-section.reverse {
  flex-direction: row-reverse;
}

.witchy-text {
  flex: 1;
  text-align: left;
}

.witchy-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #26403D;
  border-left: 4px solid #D68B7B;
  padding-left: 0.8rem;
}

.witchy-text p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.8;
  font-size: 1.05rem;
}

.witchy-image {
  flex: 1;
  text-align: center;
}

.witchy-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* ========================= */
/* 5. GALERIE WITCHY */
/* ========================= */
.witchy-gallery {
  max-width: 1200px;
  margin: 3rem auto;
  text-align: center;
}

.witchy-gallery h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #26403D;
  border-bottom: 2px solid #D68B7B;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* Container galerie */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1.5rem;
}

/* Cards sombres / mystérieuses */
.gallery-card {
  flex: 1 1 280px;
  max-width: 320px;
   background: linear-gradient(
    to bottom,
    #d8cfe6 0%,
    #95c9a9 60%,
    #9bb48a 100%
  );  /* uni sombre élégant */
  color: #faf7f4;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}


.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.gallery-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #faf7f4;
}

.gallery-card p {
  font-size: 1rem;
  color: #e5e5e5;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* ========================= */
/* 6. QUOTE */
/* ========================= */
.quote-section {
  text-align: center;
  margin: 4rem auto;
  max-width: 900px;
  padding: 2rem;
}

.quote-section blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #26403D;
  margin-bottom: 0.8rem;
}

/* ========================= */
/* 7. CTA */
/* ========================= */
.cta {
  text-align: center;
  margin: 3rem 0;
}

.btn-cta {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background: #D68B7B;
  color: white;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, background 0.3s;
}

.btn-cta:hover {
  background: #b97064;
  transform: scale(1.05);
}

/* ========================= */
/* 8. FOOTER */
/* ========================= */
.footer {
  background: #26403D;
  color: #faf7f4;
  padding: 2rem 1rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-logo h3 {
  font-size: 1.2rem;
  color: #fff;
}

.footer h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer p, .footer a {
  color: #faf7f4;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

/* ========================= */
/* 9. RESPONSIVE */
/* ========================= */
@media (max-width: 1024px) {
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}
