/* ============================================================
   Eloise Moving – style.css
   Design: Dark plum (#1a0f1f), blush pink (#ec4899), cream (#fdf2f8)
   ============================================================ */

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

:root {
  --plum:   #1a0f1f;
  --plum2:  #2d1a35;
  --plum3:  #3d2448;
  --pink:   #ec4899;
  --pink2:  #f472b6;
  --cream:  #fdf2f8;
  --cream2: #fce7f3;
  --text:   #3b1a4a;
  --muted:  #7e5a8a;
  --white:  #ffffff;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,15,31,0.13);
  --trans:  all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--plum);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 600; margin-bottom: .6rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--pink); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--plum); text-decoration: underline; }
ul { padding-left: 1.4rem; }
li { margin-bottom: .4rem; }

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--cream2); }
.section-dark { background: var(--plum); color: var(--cream); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--cream); }

/* ---- HEADER / NAV ---- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,15,31,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236,72,153,0.2);
  padding: .9rem 0;
  transition: var(--trans);
}
header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo img { height: 44px; width: auto; }
nav { display: flex; align-items: center; gap: .2rem; }
nav a {
  color: var(--cream); font-size: .95rem; font-weight: 500;
  padding: .45rem .85rem; border-radius: 6px;
  transition: var(--trans);
}
nav a:hover, nav a.active { background: var(--pink); color: var(--white); text-decoration: none; }
.nav-cta {
  background: var(--pink) !important; color: var(--white) !important;
  border-radius: 25px !important; padding: .45rem 1.2rem !important;
}
.nav-cta:hover { background: var(--pink2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--trans); }

/* ---- HERO (CSS BG) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('/images/hero-pilates.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,15,31,0.87);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 1.5rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-content p { color: var(--cream2); font-size: 1.15rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-badge {
  display: inline-block; background: rgba(236,72,153,0.2); border: 1px solid var(--pink);
  color: var(--pink); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 20px; margin-bottom: 1.4rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block; padding: .8rem 2rem; border-radius: 30px;
  font-weight: 600; font-size: .95rem; transition: var(--trans);
  cursor: pointer; border: none; text-align: center; text-decoration: none;
}
.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover { background: var(--pink2); color: var(--white); text-decoration: none; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(236,72,153,0.35); }
.btn-outline { border: 2px solid var(--pink); color: var(--pink); background: transparent; }
.btn-outline:hover { background: var(--pink); color: var(--white); text-decoration: none; transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--plum); }
.btn-light:hover { background: var(--cream2); color: var(--plum); text-decoration: none; }

/* ---- CARDS ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); transition: var(--trans);
  border-top: 4px solid var(--pink);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(26,15,31,0.15); }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }

/* ---- 2-COL SECTIONS ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.two-col .text-block { display: flex; flex-direction: column; gap: 1rem; }
.two-col .text-block h2 { color: var(--plum); }

/* ---- BANNER SECTION (CSS BG) ---- */
.banner-section {
  position: relative;
  padding: 7rem 0;
  background-image: url('/images/vue-paris.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.banner-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,15,31,0.88);
}
.banner-section .container { position: relative; z-index: 1; }
.banner-section h2, .banner-section p { color: var(--white); }
.banner-section h2 { margin-bottom: 1rem; }

/* ---- SERVICES LIST ---- */
.services-list { list-style: none; padding: 0; }
.services-list li { padding: .7rem 0; border-bottom: 1px solid var(--cream2); display: flex; align-items: center; gap: .7rem; }
.services-list li::before { content: '✦'; color: var(--pink); font-size: .8rem; }

/* ---- BLOG / JOURNAL ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--trans); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(26,15,31,0.15); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-body .tag { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pink); font-weight: 600; }
.blog-card-body h3 { font-size: 1.1rem; margin: .4rem 0 .6rem; }
.blog-card-body p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.blog-date { font-size: .8rem; color: var(--muted); }

/* ---- ARTICLE PAGE ---- */
.article-hero {
  padding-top: 100px;
  background: var(--plum);
  text-align: center;
  padding-bottom: 3rem;
}
.article-hero h1 { color: var(--white); padding: 0 1.5rem; }
.article-hero .meta { color: var(--pink2); font-size: .9rem; margin-top: .8rem; }
.article-body { max-width: 820px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.article-body img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }
.article-body h2 { color: var(--plum); margin: 2.2rem 0 .8rem; font-size: 1.6rem; }
.article-body h3 { color: var(--plum); margin: 1.8rem 0 .6rem; font-size: 1.25rem; }
.article-body ul { margin-bottom: 1rem; }
.article-body blockquote { border-left: 4px solid var(--pink); padding: 1rem 1.5rem; background: var(--cream2); border-radius: 0 8px 8px 0; margin: 2rem 0; font-style: italic; color: var(--plum2); }

/* ---- NAP BOX ---- */
.nap-box {
  background: var(--plum); color: var(--cream);
  border-radius: var(--radius); padding: 2rem;
  margin: 2rem 0;
}
.nap-box h3 { color: var(--pink2); margin-bottom: 1rem; }
.nap-box p { margin-bottom: .4rem; }
.nap-box a { color: var(--pink2); }
.map-wrap { margin: 2rem 0; border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { width: 100%; display: block; }

/* ---- RANKING ---- */
.ranking-item {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; margin-bottom: 1.5rem;
  box-shadow: var(--shadow); border-left: 5px solid var(--muted);
}
.ranking-item.top { border-left-color: var(--pink); background: var(--cream2); }
.ranking-num { font-family: var(--font-head); font-size: 2.5rem; color: var(--pink); line-height: 1; margin-bottom: .3rem; }
.ranking-item.top .ranking-num { color: var(--pink); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding-top: 100px;
  padding-bottom: 3rem;
  background: var(--plum);
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--cream2); max-width: 600px; margin: 1rem auto 0; }

/* ---- CONTACT FORM ---- */
.form-wrap { background: var(--white); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.5rem; }
label { display: block; font-weight: 600; margin-bottom: .5rem; color: var(--plum); font-size: .9rem; }
input, textarea, select {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--cream2); border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem; color: var(--text);
  background: var(--cream); transition: var(--trans);
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--pink); }
textarea { resize: vertical; min-height: 130px; }

/* ---- BREADCRUMB ---- */
.breadcrumb { font-size: .85rem; color: var(--muted); padding: 1rem 0; }
.breadcrumb a { color: var(--pink); }
.breadcrumb span { margin: 0 .4rem; }

/* ---- SITEMAP ---- */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.sitemap-section h3 { color: var(--plum); border-bottom: 2px solid var(--pink); padding-bottom: .5rem; margin-bottom: 1rem; }
.sitemap-section ul { list-style: none; padding: 0; }
.sitemap-section ul li { padding: .3rem 0; }

/* ---- 404 ---- */
.error-page { text-align: center; padding: 8rem 1.5rem; }
.error-page .code { font-size: 8rem; font-family: var(--font-head); color: var(--pink); line-height: 1; }
.error-page h1 { font-size: 2rem; margin: 1rem 0; }
.error-page p { color: var(--muted); margin-bottom: 2rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--plum);
  color: var(--cream2);
  padding: 4rem 0 2rem;
}
footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
footer h4 { color: var(--white); font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 1rem; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: .5rem; }
footer ul a { color: var(--cream2); font-size: .9rem; }
footer ul a:hover { color: var(--pink); text-decoration: none; }
footer p { font-size: .9rem; color: var(--muted); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: .85rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }

/* ---- UTILITIES ---- */
.text-pink { color: var(--pink); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.flex-center { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .two-col img { height: 280px; }
}
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--plum); flex-direction: column; padding: 1rem; gap: 0; }
  nav.open { display: flex; }
  nav a { padding: .75rem 1rem; border-radius: 6px; }
  .hamburger { display: flex; }
  .hero { background-attachment: scroll; }
  .banner-section { background-attachment: scroll; }
  h1 { font-size: 2rem; }
  .section { padding: 3.5rem 0; }
  .article-body img { height: 220px; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .btn { padding: .7rem 1.5rem; font-size: .9rem; }
}
