@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400&family=Playfair+Display:wght@700&display=swap');

:root {
  --bg: #f5ece1;
  --bg-alt: #efe4d6;
  --text: #2b2017;
  --muted: #6b5b4d;
  --primary: #b16342;
  --primary-dark: #8d4f36;
  --biscuit: #d1a173;
  --dark: #4e3625;
  --border: #e2d4c5;
  --white: #fffaf5;
  --green-soft: #e8f0e3;
  --green: #3d6b2f;
  --red-soft: #f1d9d0;
  --red: #a04a30;
  --radius: 8px;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none !important; color: inherit; border-bottom: none !important; box-shadow: none !important; }
button, input, select, textarea { font-family: var(--font-body); }

p { font-size: 14px; }

/* WordPress overrides */
.entry-title, .wp-block-post-title, .wp-site-title, .wp-block-site-title, .wp-block-template-part, header.wp-block-template-part { display: none !important; }
.wp-site-blocks, .wp-block-post-content, .entry-content, .wp-block-html { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
.entry-content > *, .wp-block-post-content > * { max-width: none !important; }

/* LAYOUT */
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
h1, h2, h3, h4, .logo { font-family: var(--font-title); font-weight: 700; }
h2, h3, h4 { color: var(--dark); }
section { padding: 82px 0; }
.section-label { color: var(--primary); font-size: 13px; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 8px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin-bottom: 34px; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245, 236, 225, .96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { font-size: 26px; letter-spacing: .12em; color: var(--primary); }
.nav ul { display: flex; gap: 34px; list-style: none; }
.nav ul a { font-size: 15px; color: var(--text); transition: .25s; }
.nav ul a:hover { color: var(--primary); }

/* BOUTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 28px; background: var(--primary); color: #fff !important; border: 1px solid var(--primary); border-radius: var(--radius); font-size: 15px; line-height: 1; cursor: pointer; transition: .25s; }
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.18) !important; color: #fff !important; border: 1px solid rgba(255,255,255,.7) !important; }
.btn-light:hover { background: rgba(255,255,255,.30) !important; border-color: #fff !important; }

/* HERO */
.hero { position: relative; min-height: 430px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: url('https://olive-dugong-412533.hostingersite.com/wp-content/uploads/2026/06/hero.jpg') center / cover no-repeat; z-index: -2; transform: scale(1.04); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(78,54,37,.35), rgba(78,54,37,.72)); z-index: -1; }
.hero-inner { max-width: 980px; padding: 70px 24px; }
.hero h1 { color: #fff; font-size: clamp(36px, 4.5vw, 58px); line-height: 1.08; margin-bottom: 18px; }
.hero h1 span { letter-spacing: .06em; }
.hero p { color: #fff; font-size: 18px; margin-bottom: 30px; }
.pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }
.pills span { padding: 8px 18px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.55); border-radius: 999px; font-size: 14px; }

/* CTA ROW */
.cta-row { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-row .btn { width: auto; }

/* PORTFOLIO */
.creations { padding: 64px 0; }
.section-head h2 { margin-bottom: 28px; }
.carousel-wrap { position: relative; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.carousel-arrow { position: absolute; top: 42%; transform: translateY(-50%); width: 38px; height: 38px; border: 1px solid var(--primary); border-radius: 50%; background: var(--white); color: var(--primary); font-size: 24px; z-index: 5; box-shadow: 0 8px 24px rgba(78,54,37,.12); cursor: pointer; }
.carousel-arrow.left { left: -52px; }
.carousel-arrow.right { right: -52px; }
.card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(78,54,37,.08); transition: .3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(78,54,37,.16); }
.card img { width: 100%; height: 300px; object-fit: cover; }
.card-body { padding: 14px 16px; display: flex; justify-content: space-between; gap: 12px; }
.card-body h3 { font-size: 20px; line-height: 1.15; color: var(--dark); }
.card-body small, .card-body span { color: var(--muted); font-size: 14px; }

/* DISPONIBILITÉS */
.availability { background: var(--bg-alt); padding: 90px 0; }
.availability-layout { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: center; }
.availability-content { padding-top: 0; }
.availability-content .section-label { margin-bottom: 12px; }
.availability-content h2 { font-size: 48px; line-height: 1.05; margin-bottom: 20px; }
.availability-content > p:not(.section-label) { max-width: 340px; color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.legend { display: grid; gap: 12px; margin: 0 0 32px; color: var(--text); font-size: 14px; }
.legend span { display: flex; align-items: center; }
.dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 9px; flex-shrink: 0; }
.dot.free { background: var(--green-soft); border: 1px solid var(--green); }
.dot.busy { background: var(--red-soft); border: 1px solid var(--red); }
.dot.neutral { background: #f3eadf; border: 1px solid var(--border); }
.calendar-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cal { background: #fff; padding: 28px 20px; border: 1px solid var(--border); }
.cal + .cal { margin-left: -1px; }
.cal h3 { color: var(--dark); font-size: 22px; text-align: center; margin-bottom: 20px; line-height: 1; }
.cal table { width: 100%; border-collapse: collapse; }
.cal th { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 400; padding: 0 0 14px; text-align: center; }
.cal td { text-align: center; padding: 2px; }
.cal td button { background: none; border: none; font: inherit; padding: 0; cursor: pointer; }
.cal td span, .cal td button { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; font-size: 14px; }
.cal .day { color: var(--muted); }
.cal .free { background: var(--green-soft); color: var(--green); transition: transform .15s, box-shadow .15s; }
.cal .free:hover { background: #d4e5ca; transform: scale(1.08); box-shadow: 0 2px 8px rgba(61,107,47,.25); }
.cal .busy { background: var(--red-soft); color: var(--red); text-decoration: line-through; }

/* CONTACT */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info p { color: var(--muted); margin-bottom: 24px; }
.info-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--dark); }
.info-item img { flex-shrink: 0; width: 28px; height: 28px; object-fit: contain; }
form { display: grid; gap: 18px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { color: var(--dark); font-size: 14px; margin-bottom: 6px; display: block; }
input, select, textarea { width: 100%; padding: 13px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 6px; color: var(--text); }
textarea { min-height: 120px; resize: vertical; }

/* FAQ */
.faq-section { background: var(--bg); }
.faq { max-width: 820px; margin: 0 auto; }
.faq h2, .faq .section-label { text-align: center; }
details { border-bottom: 1px solid var(--dark); padding: 22px 0; }
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; color: var(--dark); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--primary); font-size: 24px; }
details[open] summary::after { content: "−"; }
details p { margin-top: 14px; color: var(--muted); font-size: 14px; }

/* FOOTER */
footer { background: var(--dark); color: var(--bg); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-logo { color: #fff; margin-bottom: 1rem; }
footer p { font-size: 13px; }
footer h4 { color: var(--biscuit); font-size: 14px; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 18px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 15px; }
.footer-bottom { margin-top: 55px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.18); text-align: center; color: #d9cfc3; font-size: 13px; }

.footer-grid .info-item { color: #d9cfc3; }
.footer-grid .info-item img { filter: brightness(0) saturate(100%) invert(85%) sepia(10%) saturate(300%) hue-rotate(340deg); opacity: 0.75; }
.footer-grid .info-item span { font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .carousel-arrow.left { left: -18px; }
  .carousel-arrow.right { right: -18px; }
  .availability-layout { grid-template-columns: 1fr; gap: 32px; }
  .availability-content h2 { font-size: 38px; }
  .availability-content > p:not(.section-label) { max-width: 100%; }
  .calendar-panel { grid-template-columns: repeat(2, 1fr); }
  .legend { margin-bottom: 32px; }
}

@media (max-width: 900px) {
  .nav ul { display: none; }
  .cards, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .carousel-arrow { display: none; }
  .calendar-panel { grid-template-columns: 1fr; gap: 20px; }
  .cal { border-radius: var(--radius); }
  .footer-grid { gap: 32px; }
}

@media (max-width: 760px) {
  .calendar-panel { grid-template-columns: 1fr; gap: 20px; }
  .cal, .cal + .cal { margin-left: 0; border-radius: var(--radius); }
  .availability-content h2 { font-size: 38px; }
}

@media (max-width: 600px) {
  .container { width: min(100%, calc(100% - 32px)); }
  .logo { font-size: 22px; }
  .hero { min-height: 78vh; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 15px; }
  .row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .card img { height: 260px; }
}