/*
Theme Name: Lumiere Wedding Planner
Theme URI: https://example.com/lumiere-wedding-planner
Author: Codex
Author URI: https://example.com
Description: Theme vitrine elegant pour wedding planner avec formulaire de contact integre.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumiere-wedding-planner
Tags: one-column, custom-logo, featured-images, wedding, portfolio
*/

:root {
  --cream: #fbf7ef;
  --paper: #fffdf9;
  --ink: #282521;
  --muted: #6c6258;
  --sage: #7f9275;
  --rose: #c9938d;
  --gold: #b9965b;
  --line: #e8ded1;
  --shadow: 0 18px 45px rgba(50, 40, 30, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 72px 0 56px;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.7) 54%, rgba(251, 247, 239, 0.28)),
    url("assets/hero-wedding.svg") right center / min(58vw, 760px) auto no-repeat;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 16px 0 20px;
  font-size: clamp(2.6rem, 6vw, 5.25rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 22px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card,
.quote-panel,
.contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 210px;
  padding: 28px;
}

.service-card p,
.quote-panel p,
.contact-copy p {
  color: var(--muted);
}

.quote-panel {
  padding: 34px;
}

.quote-panel strong {
  color: var(--sage);
}

.contact-panel {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(127, 146, 117, 0.35);
  border-color: var(--sage);
}

.hidden-field {
  display: none;
}

.form-notice {
  padding: 12px 14px;
  border-radius: 4px;
  font-weight: 700;
}

.form-notice.success {
  color: #315c36;
  background: #eaf4e7;
}

.form-notice.error {
  color: #7a2c28;
  background: #f7e7e5;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: var(--ink);
}

.site-footer .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.site-footer a,
.site-footer span {
  color: #f6efe4;
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(251, 247, 239, 0.9)),
      url("assets/hero-wedding.svg") center bottom / 92vw auto no-repeat;
    padding-bottom: 290px;
  }

  .intro-grid,
  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .site-footer .section-inner {
    flex-direction: column;
  }
}
