* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #ffe4f2 0%, #ffd6ec 50%, #ffc8e4 100%);
  color: #24182f;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* formes décoratives */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  z-index: -1;
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: #d66bff;
  top: 80px;
  left: -80px;
}

.shape-2 {
  width: 260px;
  height: 260px;
  background: #ff84c7;
  top: 420px;
  right: -100px;
}

.shape-3 {
  width: 220px;
  height: 220px;
  background: #b388ff;
  bottom: 80px;
  left: 35%;
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(205, 162, 255, 0.25);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7b2cbf;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(214, 102, 255, 0.25);
  box-shadow: 0 8px 25px rgba(123, 44, 191, 0.15);
}

.menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

.menu a {
  color: #30213d;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}

.menu a:hover {
  color: #d63384;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7b2cbf, #d63384);
  transition: 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.mini-title {
  color: #d63384;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1.08;
  color: #6a1fb0;
  margin-bottom: 24px;
}

.hero-description {
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: #4c3a5a;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7b2cbf, #d63384);
  color: white;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(214, 51, 132, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(214, 51, 132, 0.22);
}

.btn-light {
  background: white;
  color: #7b2cbf;
  border: 1px solid rgba(123, 44, 191, 0.15);
  box-shadow: 0 10px 26px rgba(123, 44, 191, 0.08);
}

.hero-socials,
.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-socials a,
.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b2cbf;
  box-shadow: 0 8px 22px rgba(123, 44, 191, 0.12);
  transition: 0.3s ease;
}

.hero-socials a:hover,
.footer-socials a:hover {
  transform: translateY(-4px) scale(1.05);
  color: #d63384;
}

.image-card {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,240,250,0.9));
  box-shadow: 0 25px 60px rgba(123, 44, 191, 0.14);
  overflow: hidden;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214,51,132,0.08), rgba(123,44,191,0.08));
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* sections */
.section {
  padding: 110px 0;
}

.section-alt {
  background: linear-gradient(180deg, #fff7fd 0%, #fff 100%);
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.section-heading h2,
.about-text h2,
.contact-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  line-height: 1.2;
  color: #6a1fb0;
  margin-bottom: 18px;
}

.section-heading p,
.about-text p,
.contact-box p {
  color: #4f3f5d;
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-text p {
  margin-bottom: 14px;
}

.about-box {
  display: grid;
  gap: 18px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 177, 255, 0.25);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(123, 44, 191, 0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card h3 {
  color: #d63384;
  margin-bottom: 10px;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(123, 44, 191, 0.08);
  border: 1px solid rgba(214, 51, 132, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(123, 44, 191, 0.12);
}

.card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123,44,191,0.12), rgba(214,51,132,0.12));
  color: #7b2cbf;
  font-size: 1.5rem;
}

.card h3 {
  color: #6a1fb0;
  margin-bottom: 12px;
}

/* clients */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-card {
  background: white;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 16px 38px rgba(123, 44, 191, 0.08);
  border: 1px solid rgba(123, 44, 191, 0.08);
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
  color: #4c3a5a;
}

.client-card h4 {
  color: #d63384;
  margin-bottom: 4px;
}

.client-card span {
  color: #6a6173;
  font-size: 0.95rem;
}

/* galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  min-height: 240px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #6a1fb0;
  background: linear-gradient(135deg, #f3dcff, #ffdced);
  box-shadow: 0 16px 36px rgba(214, 51, 132, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 24px 44px rgba(214, 51, 132, 0.14);
}

/* contact */
.contact-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,245,251,0.98));
  padding: 60px 40px;
  border-radius: 34px;
  text-align: center;
  box-shadow: 0 20px 55px rgba(123, 44, 191, 0.1);
  max-width: 950px;
  margin: 0 auto;
}

.contact-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-socials {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-socials a {
  color: #7b2cbf;
  font-weight: 500;
}

.contact-socials a i {
  margin-right: 8px;
}

/* footer */
.footer {
  padding: 26px 0;
  background: #6a1fb0;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials a {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* whatsapp flottant */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
  z-index: 1100;
  animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* animations reveal */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

/* responsive */
@media (max-width: 992px) {
  .hero-content,
  .about-grid,
  .cards,
  .clients-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .menu {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
  }

  .contact-box {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-text h1 {
    font-size: 2.35rem;
  }

  .section-heading h2,
  .about-text h2,
  .contact-box h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }
}
@media (max-width: 992px) {
  .moi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .moi-grid {
    grid-template-columns: 1fr;
  }

  .moi-photo {
    width: 190px;
    height: 190px;
  }
}
.section-moi {
  background: linear-gradient(180deg, #ffffff 0%, #fff7fd 100%);
}

.moi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.moi-card {
  text-align: center;
}

.moi-photo {
  width: 210px;
  height: 210px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, #7b2cbf, #d63384);
  box-shadow: 0 18px 38px rgba(123, 44, 191, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.moi-photo:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 48px rgba(214, 51, 132, 0.18);
}

.moi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
}

.moi-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #6a1fb0;
}
.image-viewer{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:2000;
}

.image-viewer img{
  max-width:80%;
  max-height:80%;
  border-radius:15px;
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

.image-viewer.active{
  opacity:1;
  visibility:visible;
}
.contact-page {
  padding: 80px 0 110px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(123, 44, 191, 0.08);
  box-shadow: 0 20px 50px rgba(123, 44, 191, 0.10);
  border-radius: 30px;
}

.contact-info-card {
  padding: 30px 24px;
  position: sticky;
  top: 110px;
}

.contact-logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.contact-big-logo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 12px 30px rgba(123, 44, 191, 0.15);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(123, 44, 191, 0.08);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d63384;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-info-item p {
  color: #3b2b47;
  font-weight: 500;
}

.contact-social-icons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, #7b2cbf, #d63384);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(214, 51, 132, 0.22);
}

.contact-form-card {
  padding: 40px 34px;
}

.contact-form-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  line-height: 1.15;
  color: #6a1fb0;
  margin-bottom: 14px;
}

.contact-intro {
  color: #4f3f5d;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #412f52;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(123, 44, 191, 0.14);
  border-radius: 18px;
  padding: 15px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  background: #fff;
  color: #24182f;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d63384;
  box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.10);
}

@media (max-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }

  .contact-social-icons {
    flex-direction: row;
  }

  .contact-form-card h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .contact-form-card,
  .contact-info-card {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card h1 {
    font-size: 1.9rem;
  }
}
.back-to-site{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:25px;
  color:#7b2cbf;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.back-to-site:hover{
  color:#d63384;
  transform:translateX(-3px);
}
.about-page{
padding:100px 0;
}

.about-page-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}

.about-text h1{
font-family:'Playfair Display',serif;
font-size:3rem;
color:#6a1fb0;
margin-bottom:20px;
}

.about-text p{
margin-bottom:25px;
color:#3f2e4b;
line-height:1.7;
}

.skills-list{
list-style:none;
padding:0;
margin-top:30px;
}

.skills-list li{
margin-bottom:18px;
padding-left:20px;
position:relative;
}

.skills-list li::before{
content:"•";
position:absolute;
left:0;
color:#d63384;
font-size:20px;
}

.about-photo img{
width:100%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}
.about-page {
  padding: 70px 0 110px;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  margin-top: 20px;
}

.about-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1.12;
  color: #6a1fb0;
  margin-bottom: 22px;
}

.about-text p {
  color: #433250;
  margin-bottom: 16px;
}

.about-photo img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(123, 44, 191, 0.14);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-badges span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #7b2cbf;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(123, 44, 191, 0.08);
}

.about-stats-section {
  margin-top: 70px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-stat-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(123, 44, 191, 0.08);
  border: 1px solid rgba(123, 44, 191, 0.07);
}

.about-stat-card h3 {
  color: #d63384;
  margin-bottom: 10px;
}

.skills-section {
  margin-top: 80px;
  text-align: center;
}

.skills-section h2,
.tools-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #6a1fb0;
  margin-bottom: 18px;
}

.skills-list-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
  text-align: left;
}

.skill-box {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 38px rgba(123, 44, 191, 0.08);
  border: 1px solid rgba(214, 51, 132, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(123, 44, 191, 0.12);
}

.skill-box h3 {
  color: #d63384;
  margin-bottom: 10px;
}

.skill-box p {
  color: #433250;
}

.tools-section {
  margin-top: 80px;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.tool-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,240,250,0.95));
  border-radius: 20px;
  padding: 18px 12px;
  font-weight: 600;
  color: #7b2cbf;
  box-shadow: 0 12px 30px rgba(123, 44, 191, 0.08);
}

@media (max-width: 992px) {
  .about-page-grid,
  .about-stats-grid,
  .skills-list-pro,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .about-text h1 {
    font-size: 2.4rem;
  }
}
/* étoiles décoratives */

.stars{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:-1;
}

.star{
position:absolute;
color:#ff7ac8;
opacity:0.6;
animation:twinkle 4s infinite alternate;
}

/* positions */

.star1{
top:10%;
left:8%;
font-size:18px;
}

.star2{
top:30%;
right:12%;
font-size:22px;
}

.star3{
top:55%;
left:6%;
font-size:16px;
}

.star4{
top:70%;
right:8%;
font-size:20px;
}

.star5{
top:85%;
left:40%;
font-size:18px;
}

.star6{
top:20%;
left:60%;
font-size:15px;
}

/* animation */

@keyframes twinkle{

0%{
opacity:0.3;
transform:scale(0.9);
}

100%{
opacity:1;
transform:scale(1.2);
}

}
/* étoiles décoratives */

.stars{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:-1;
overflow:hidden;
}

.star{
position:absolute;
color:#ff7ac8;
opacity:0.6;
animation:twinkle 4s infinite alternate;
}

/* animation scintillement */

@keyframes twinkle{

0%{
opacity:0.3;
transform:scale(0.8);
}

100%{
opacity:1;
transform:scale(1.2);
}

}
/* ouverture image section moi */

.image-viewer{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:2000;
}

.image-viewer img{
  max-width:80%;
  max-height:80%;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

.image-viewer.active{
  opacity:1;
  visibility:visible;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(123, 44, 191, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(123, 44, 191, 0.13);
}

.portfolio-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card h3 {
  padding: 18px 18px 22px;
  font-size: 1.05rem;
  color: #6a1fb0;
  text-align: center;
}

/* popup portfolio */

.portfolio-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 30, 0.82);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 3000;
}

.portfolio-modal.active {
  opacity: 1;
  visibility: visible;
}

.portfolio-modal-content {
  position: relative;
  width: 100%;
  max-width: 1050px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #fff 0%, #fff7fc 100%);
  border-radius: 28px;
  padding: 34px 28px 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.portfolio-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: none;
  font-size: 2rem;
  color: #7b2cbf;
  cursor: pointer;
}

.portfolio-modal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #6a1fb0;
  margin-bottom: 14px;
}

.portfolio-modal-content p {
  color: #463554;
  margin-bottom: 26px;
  max-width: 850px;
  line-height: 1.7;
}

.portfolio-modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-modal-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(123, 44, 191, 0.08);
}

@media (max-width: 992px) {
  .portfolio-grid,
  .portfolio-modal-gallery {
    grid-template-columns: 1fr;
  }

  .portfolio-card img {
    height: 240px;
  }

  .portfolio-modal-content h2 {
    font-size: 2rem;
  }
}
/* PAGE OFFRES */

.offers-page {
  padding: 70px 0 110px;
}

.offers-hero {
  text-align: center;
  max-width: 900px;
  margin: 10px auto 60px;
}

.offers-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  line-height: 1.12;
  color: #6a1fb0;
  margin-bottom: 18px;
}

.offers-intro {
  color: #4b3a58;
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offer-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(123, 44, 191, 0.08);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 18px 42px rgba(123, 44, 191, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,44,191,0.03), rgba(214,51,132,0.05));
  pointer-events: none;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(123, 44, 191, 0.14);
}

.offer-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123,44,191,0.12), rgba(214,51,132,0.12));
  color: #7b2cbf;
  font-size: 1.45rem;
  margin-bottom: 20px;
  animation: floatBadge 4s ease-in-out infinite;
}

.offer-card h3 {
  color: #6a1fb0;
  font-size: 1.2rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.offer-card p {
  color: #463554;
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.offer-price {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7b2cbf, #d63384);
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(214, 51, 132, 0.18);
  position: relative;
  z-index: 2;
}

.offer-card-special {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,243,250,0.96));
}

.offers-cta {
  margin-top: 70px;
}

.offers-cta-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,245,251,0.96));
  border-radius: 34px;
  padding: 56px 30px;
  box-shadow: 0 20px 55px rgba(123, 44, 191, 0.1);
}

.offers-cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #6a1fb0;
  margin-bottom: 16px;
}

.offers-cta-box p {
  max-width: 760px;
  margin: 0 auto;
  color: #4a3a57;
}

.offers-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Animation d’apparition plus douce sur cette page */
.offers-grid .offer-card {
  animation: offerFloatIn 0.9s ease both;
}

.offers-grid .offer-card:nth-child(1) { animation-delay: 0.05s; }
.offers-grid .offer-card:nth-child(2) { animation-delay: 0.12s; }
.offers-grid .offer-card:nth-child(3) { animation-delay: 0.19s; }
.offers-grid .offer-card:nth-child(4) { animation-delay: 0.26s; }
.offers-grid .offer-card:nth-child(5) { animation-delay: 0.33s; }
.offers-grid .offer-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes offerFloatIn {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offers-hero h1 {
    font-size: 2.5rem;
  }

  .offers-cta-box h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .offers-hero h1 {
    font-size: 2.1rem;
  }

  .offers-cta-box {
    padding: 40px 20px;
  }

  .offers-cta-buttons {
    flex-direction: column;
  }

  .offers-cta-buttons .btn {
    width: 100%;
  }
}
/* bouton appel flottant */

.phone-float{
position:fixed;
right:22px;
bottom:95px;
width:60px;
height:60px;
border-radius:50%;
background:#7b2cbf;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
box-shadow:0 18px 35px rgba(123,44,191,0.35);
z-index:1100;
transition:0.3s;
}

.phone-float:hover{
transform:translateY(-5px) scale(1.05);
background:#d63384;
}