:root{
  --cream: #F5F1E8;
  --cream-darker: #EBE4D4;
  --forest-deep: #2E4C27; /* #2F4438 */
  --forest: #3F5C46;
  --forest-light: #6B8A6F;
  --sage: #A9BBA0;
  --earth: #8B6A4F;
  --earth-light: #B89A7C;
  --gold: #D9A35B;
  --text: #2E2A24;
  --text-soft: #5C564C;
  --white: #FFFEFB;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  overflow-x:hidden;

  background-image: url(/assets/images/vague-header.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 60px;

}
h1,h2,h3{
  font-family: Georgia, 'Times New Roman', serif;
  font-weight:600;
}
a{text-decoration:none;color:inherit;}
ul {
  list-style-type: disclosure-closed;
}
ul li {
  margin: 0.5rem 1rem;
}
/* Decorative leaves */
.leaf{
  position:absolute;
  width:28px;height:28px;
  opacity:0.25;
  background: var(--forest-light);
  border-radius: 0 50% 0 50%;
  animation: sway 6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes sway{
  0%,100%{transform: rotate(0deg) translateY(0px);}
  50%{transform: rotate(15deg) translateY(10px);}
}

/* Header */
header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background: rgba(245,241,232,0.92);
  backdrop-filter: blur(6px);
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
  transition: background .3s;
}
.nav-wrap{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0;
}
.logo{
  font-size:1.5rem;
  color:var(--forest-deep);
  display:flex;
  align-items:center;
  gap:8px;
  letter-spacing:0.5px;
}
.logo-paw{font-size:1.4rem;}
nav ul{
  display:flex;
  gap:32px;
  list-style:none;
}
nav a{
  font-size:0.95rem;
  color:var(--text-soft);
  font-weight:600;
  position:relative;
  padding-bottom:4px;
  transition:color .25s;
}
nav a::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0%;
  height:2px;
  background:var(--gold);
  transition:width .3s;
}
nav a:hover{color:var(--forest-deep);}
nav a:hover::after{width:100%;}
.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
}
.burger span{
  width:26px;height:3px;
  background:var(--forest-deep);
  border-radius:2px;
}

/* Hero */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:140px 28px 80px;
  /*background: radial-gradient(ellipse at top, var(--cream-darker) 0%, var(--cream) 60%);*/
  overflow:hidden;
  background: url(/assets/images/fond-camille.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}
/*@media (min-width: 880px) {*/
/*  .hero {*/
/*    background-size: 60%;*/
/*  }*/
/*}*/
.hero-bg-trees{
  position:absolute;
  bottom:0;left:0;right:0;
  height:45%;
  background: linear-gradient(to top, rgba(63,92,70,0.18), transparent);
  z-index:0;
}
.tree-silhouette{
  position:absolute;
  bottom:0;
  opacity:0.15;
}
.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:720px;
  animation: fadeInUp 1s ease both;
}
.hero-content .tagline{
  display:inline-block;
  background:var(--forest-deep);
  color:var(--white);
  padding:6px 18px;
  border-radius:30px;
  /*font-size:0.8rem;*/
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:24px;
}
.hero-content h1{
  font-size:3.4rem;
  color:var(--forest-deep);
  line-height:1.15;
  margin-bottom:20px;
}
.hero-content h1 span{color:var(--gold);}
.hero-content p{
  font-size:1.15rem;
  color:var(--text-soft);
  margin-bottom:36px;
  line-height:1.6;
  background: rgba(255,255,255,0.8);
  padding: 1rem;
  border-radius: 12px;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--forest-deep);
  color:var(--white);
  padding:16px 36px;
  border-radius:40px;
  font-weight:700;
  font-size:1.05rem;
  box-shadow:0 8px 24px rgba(47,68,56,0.3);
  transition: transform .3s, box-shadow .3s, background .3s;
  cursor:pointer;
  border:none;
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(47,68,56,0.4);
  background:var(--forest);
}
@keyframes fadeInUp{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

.scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  color:var(--forest);
  font-size:1.8rem;
  animation: bounce 2s infinite;
  opacity:0.6;
}
@keyframes bounce{
  0%,100%{transform:translate(-50%,0);}
  50%{transform:translate(-50%,10px);}
}

/* Sections generic */
section{
  padding:100px 28px;
  position:relative;
}
.section-inner{
  max-width:1100px;
  margin:0 auto;
}
.section-head{
  text-align:center;
  margin-bottom:60px;
}
.section-head .eyebrow{
  color:var(--gold);
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:0.85rem;
}
.section-head h2{
  font-size:2.4rem;
  color:var(--forest-deep);
  margin-top:10px;
}
.section-head p{
  color:var(--text-soft);
  max-width:560px;
  margin: 32px auto 0;
  font-size:1.2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
}
.fade-in{
  opacity:0;
  transform:translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible{
  opacity:1;
  transform:translateY(0);
}

/* Services */
.services{
  background: var(--cream-darker);
}
.services.learn {
  background: var(--cream);
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.service-card{
  background:var(--white);
  border-radius:20px;
  padding:40px 28px;
  text-align:center;
  box-shadow:0 10px 30px rgba(47,68,56,0.08);
  transition: transform .35s, box-shadow .35s;
  position:relative;
  overflow:hidden;
  /*background-image: url(/themes/custom/bootstrap_happydogs/assets/images/fond-arbre.png);*/
  /*background-size: 200px;*/
  /*background-repeat: no-repeat;*/
  /*background-position: top left;*/
}
.service-card::before{
  content:'';
  position:absolute;
  top:-60px;right:-60px;
  width:140px;height:140px;
  background:var(--sage);
  opacity:0.15;
  border-radius:50%;
}
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(47,68,56,0.15);
}
.service-icon{
  width:74px;height:74px;
  margin:0 auto 22px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  /*background: linear-gradient(135deg, var(--forest-light), var(--forest-deep));*/
  color:white;
  transition: transform .35s;
}
.service-card:hover .service-icon{
  transform: scale(1.1) rotate(-6deg);
}
.service-card h3{
  font-size:1.4rem;
  color:var(--forest-deep);
  margin-bottom:12px;
}
.service-card p{
  color:var(--text-soft);
  font-size:0.98rem;
  line-height:1.6;
}

/* About */
.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
  max-width:1100px;
  margin:0 auto;
}
.about-visual{
  position:relative;
  height:420px;
  border-radius:24px;
  background: var(--forest-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.about-visual .paw-deco{
  position:absolute;
  font-size:8rem;
  opacity:0.18;
  color:white;
  transform:rotate(-15deg);
}
.photo-placeholder{
  width:85%;
  height:85%;
  border:3px dashed rgba(255,255,255,0.5);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,0.85);
  font-size:0.95rem;
  text-align:center;
  flex-direction:column;
  gap:10px;
  z-index:2;
  overflow: hidden;
}
.photo-placeholder img {
  width: 100%;
  height: auto;
}
.about-text .eyebrow{
  color:var(--gold);
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:0.85rem;
}
.about-text h2{
  font-size:2.2rem;
  color:var(--forest-deep);
  margin:10px 0 20px;
}
.about-text p{
  color:var(--text-soft);
  line-height:1.75;
  margin-bottom:16px;
  font-size:1.02rem;
}
.about-stats{
  display:flex;
  gap:36px;
  margin-top:28px;
}
.stat{
  text-align:left;
}
.stat strong{
  display:block;
  font-size:1.8rem;
  color:var(--forest-deep);
}
.stat span{
  font-size:0.85rem;
  color:var(--text-soft);
}

/* Testimonials */
.testimonials{
  background: var(--forest-deep);
  color:var(--white);
}
.testimonials .section-head h2{color:var(--white);}
.testimonials .section-head p{color:rgba(255,255,255,0.75);}
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.testi-card{
  background: rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  padding:32px 26px;
  transition: transform .3s, background .3s;
}
.testi-card:hover{
  transform:translateY(-6px);
  background: rgba(255,255,255,0.12);
}
.testi-stars{
  color:var(--gold);
  margin-bottom:14px;
  font-size:1.1rem;
}
.testi-card p.quote{
  font-size:0.98rem;
  line-height:1.65;
  margin-bottom:18px;
  color:rgba(255,255,255,0.9);
}
.testi-author{
  display:flex;
  align-items:center;
  gap:12px;
}
.testi-avatar{
  width:42px;height:42px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--gold), var(--earth-light));
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:var(--forest-deep);
}
.testi-author .name{font-weight:700; font-size:0.95rem;}
.testi-author .dog{font-size:0.8rem; color:rgba(255,255,255,0.6);}

/* Contact */
.contact-wrapper {
  background: url(/assets/images/vague-footer.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  padding-bottom: 180px;
}
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  max-width:1100px;
  margin:0 auto;
}
.contact-info h2{
  font-size:2.2rem;
  color:var(--forest-deep);
  margin-bottom:18px;
}
.contact-info p{
  color:var(--text-soft);
  line-height:1.7;
  margin-bottom:26px;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  font-size:0.98rem;
  color:var(--text);
}
.contact-item .ic{
  width:42px;height:42px;
  border-radius:50%;
  background:var(--cream-darker);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  flex-shrink:0;
}
.social-row{
  display:flex;
  gap:14px;
  margin-top:24px;
}
.social-row a{
  width:42px;height:42px;
  border-radius:50%;
  /*background:var(--forest-deep);*/
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .3s, background .3s;
}
.social-row a:hover{
  transform:translateY(-4px);
  background:var(--gold);
}
form.contact-form{
  background:var(--white);
  border-radius:20px;
  padding:36px;
  box-shadow:0 10px 30px rgba(47,68,56,0.08);
}
.form-row{margin-bottom:18px;}
.form-row label{
  display:block;
  font-size:0.85rem;
  font-weight:700;
  color:var(--forest-deep);
  margin-bottom:6px;
}
.form-row input, .form-row select, .form-row textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1.5px solid var(--cream-darker);
  background:var(--cream);
  font-size:0.95rem;
  color:var(--text);
  font-family:inherit;
  transition: border-color .25s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none;
  border-color:var(--forest-light);
}
.form-row textarea{resize:vertical; min-height:90px;}
.btn-submit{
  width:100%;
  background:var(--forest-deep);
  color:white;
  padding:14px;
  border:none;
  border-radius:40px;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  transition: background .3s, transform .3s;
}
.btn-submit:hover{
  background:var(--forest);
  transform:translateY(-2px);
}
.form-success{
  display:none;
  background:#e7f3e9;
  color:var(--forest-deep);
  padding:14px;
  border-radius:10px;
  font-size:0.9rem;
  margin-top:14px;
  text-align:center;
}

footer{
  background: #2E4C27;
  color:rgba(255,255,255,0.7);
  text-align:center;
  padding-bottom:28px;
  font-size:0.85rem;
}
footer .logo{
  color:white;
  justify-content:center;
  margin-bottom:8px;
  font-size:1.2rem;
}

.pswp-gallery {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.photo-wrapper {
  display: flex;
}
.photo-wrapper img {
  max-width: 100%;
  border-radius: 20px;
}

a#open-gallery,
a#open-gallery-learn,
a#open-gallery-car {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 20%;
  z-index: 5;
}
a#open-gallery span,
a#open-gallery-learn span,
a#open-gallery-car span {
  background: var(--forest);
  color: #fff;
  padding: 12px 20px;
  border-radius: 20px;
}

@media (max-width: 880px){
  .services-grid{grid-template-columns:1fr;}
  .testi-grid{grid-template-columns:1fr;}
  .about{grid-template-columns:1fr;}
  .contact-wrap{grid-template-columns:1fr;}
  nav ul{
    position:absolute;
    top:100%;left:0;right:0;
    background:var(--cream);
    flex-direction:column;
    align-items:center;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
  }
  nav ul.open{max-height:300px;}
  nav ul li{width:100%; text-align:center;}
  nav ul a{display:block; padding:16px;}
  .burger{display:flex;}
  .hero-content h1{font-size:2.3rem;}
}
