
/* Define your custom font */
@font-face {
  font-family: 'Amoura Rosbele'; /* Give your font a name */
  src: url('fonts/Amoura Rosbele.otf') format('opentype'); /* Point to the location of the font file */
 }
@font-face {
  font-family: 'Acumin-BdPro'; /* Give your font a name */
  src: url('fonts/Acumin-BdPro.otf') format('opentype'); /* Point to the location of the font file */
}
@font-face {
  font-family: 'Acumin-Variable-Concept'; /* Give your font a name */
  src: url('fonts/Acumin-Variable-Concept.ttf') format('truetype'); /* Point to the location of the font file */
}

.hero-dev {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* IMAGE + ANIMATION ZOOM */
.hero-dev::before{
  content:"";
  position:absolute;
  inset:0;
background: linear-gradient(
    to right,  
    rgba(140, 207, 255, 0.316),
    rgba(46, 160, 253, 0.231)
  ),  url("img/devweb.png") center/cover no-repeat;
    background-size: cover;
  background-position: center;
  z-index:-2;

  animation: zoomHero 12s ease-in-out infinite alternate;
}


/* CONTENU */
.hero-content{
  max-width:700px;
  animation: fadeUp 1s ease forwards;
}

/* TITRE */
.hero-content h1{
  font-size: 3.5rem !important;
      /* PRO spacing */
  letter-spacing: 2px !important;
  line-height: 1.3 !important;
  margin-bottom: 15px;

  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-bottom: 10px;
  opacity:0;   font-family: 'Amoura Rosbele'; /* Give your font a name */

  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

/* TEXTE */
.hero-content p{
  font-size:1.6rem;
 font-family: 'Acumin-BdPro';
  color: #ffffff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);

  line-height: 1.6;
  letter-spacing: 0.5px;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

/* BOUTON */
.btn-hero{
 display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 34px;
  border-radius:50px;
  text-decoration:none;
  color:white;   font-family: 'Acumin-BdPro'; /* Give your font a name */
  font-weight:600;

  background:linear-gradient(135deg,#3DBFE9,#00bcd4);

  transition:0.4s ease;
  box-shadow:0 10px 30px rgba(61,191,233,0.25);
}

.btn-hero:hover{
  transform:scale(1.05);
}

/* ANIMATION TEXTE */
@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(30px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}
/*section web img*/

.services-section {
  margin-top: -20px;
  padding: 60px 20px;
  background: #f9fafc;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: 'Amoura Rosbele';
color: #0f172a;  }

/* Grid */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.service-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card h3 {
  margin-bottom: 30px;
  color: #3DBFE9;
  font-size: 1.2rem;   /* taille précise */
  font-weight: 700;    /* bold fort */
}

.service-card p {
  color: #555;
}



/* Services */
.web-services {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  text-align: center; margin-bottom:-30px;
  flex-wrap: wrap; margin-top: 10px;
}

.web-services .service {
 flex: 1 1 250px;
  max-width: 300px;
  text-align: center;}

.web-services h3 {
   font-family: 'Acumin-BdPro';
 color: #f0625d;
  margin-bottom: 10px;
  font-size: 1.3em;
  white-space: normal; /* autorise le retour à la ligne si nécessaire */

}

.web-services p {
  margin-bottom: 10px;
  font-family: 'Acumin-Variable-Concept';
}
/* Couleurs personnalisées */
.red { color: #FF6F61;}
.orange { color: #FF6F61; }
.pink { color: #FF6F61; }

/* About section */



/* SECTION */
.about-web {
  width: 100%;
  padding: 80px 20px;
  background: #f8f9fc;
}

/* CONTAINER FLEX */
.about-web .about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.about-web .about-image {
  flex: 1;
}

.about-web .about-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-web .about-image img:hover {
  transform: scale(1.03);
}

/* TEXT CARD */
.about-web .about-text {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.about-web .about-text h2 {
  font-size: 26px;
  color: #1f2a44;
  margin-bottom: 20px;
  position: relative;
}

.about-web .about-text h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #3DBFE9;
  display: block;
  margin-top: 10px;
  border-radius: 10px;
}

/* TEXT */
.about-web .about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

/* ==========================================
   WEB DEV SECTION - STYLE EMS CONTACT
   ========================================== */

.contact{
    background: linear-gradient(
        135deg,
        #8ccfff 0%,
        #a0c5e2 40%,
        #f2dfcf 70%,
        #e8c7a8 100%
    );

    color: white;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 60vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* GLOW ROTATION */
.contact::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: radial-gradient(
        circle,
        rgba(255,255,255,0.25),
        transparent 60%
    );

    animation: rotateGlow 12s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* EMS WATERMARK */
.contact::after{
    content: "EMS";
    position: absolute;
    bottom: -40px;
    left: 40px;

    font-family: 'Amoura Rosbele';
    font-size: 120px;
    letter-spacing: 10px;

    color: rgba(255,255,255,0.15);
    z-index: 1;
    pointer-events: none;
}

.contact{
    background: linear-gradient(
        135deg,
        #8ccfff 0%,
        #a0c5e2 40%,
        #f2dfcf 70%,
        #e8c7a8 100%
    );

    color: white;
    padding: 90px 20px;
    text-align: center;

    position: relative;
    overflow: hidden;

    height: 70vh;

    display: flex;              /* 🔥 IMPORTANT */
    flex-direction: column;
    justify-content: center;
    align-items: center;        /* 🔥 centre horizontal */
}

/* TITLE */
.contact h3{
    font-size: 2.5rem;
    font-family: 'Amoura Rosbele';
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* TEXT */
.contact p{
     font-size: 1.2rem;
  line-height: 1.8;
  color: #334155;
    max-width: 850px;
    margin: 0 auto 25px;
}

/* BUTTON */
.btndev{
    display: inline-block;
    padding: 12px 28px;   /* 🔥 réduit (plus élégant) */
    border-radius: 999px;
    width: fit-content;   /* 🔥 IMPORTANT : empêche full width */

    background: #ff5a4d;
    color: white;
    text-decoration: none;

    font-weight: 600;
    font-family: 'Acumin-BdPro';

    transition: all 0.35s ease;

    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* HOVER */
.btndev:hover{
    transform: translateY(-4px) scale(1.05);
    background: #ff392b;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* ANIMATION */
@keyframes rotateGlow{
    0%{ transform: rotate(0deg); }
    100%{ transform: rotate(360deg); }
}


.processus {
      margin-top: -30px;
  padding: 80px 20px;
  background: #f8f9fc; /* fond clair */
  text-align: center;
  color: #111;
  position: relative;
}

.processus h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #0f172a;
  font-family: 'Amoura Rosbele';
}

/* LINE */
.processus .etapes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.processus .etapes::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #00a8e8, #3b82f6);
  z-index: 0;
}

/* CARD LIGHT */
.processus .etape {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 25px;
  border-radius: 16px;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.processus .etape:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ICON LIGHT */
.processus .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, #00a8e8, #3b82f6);
  color: white;
}

/* TEXT */
.processus .etape h3 {
  color: #3DBFE9;
  font-size: 18px;
  margin-bottom: 10px;
}

.processus .etape p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.technos {
  padding: 60px 20px;
  background-color: #f6f6f6;
  text-align: center;
}

.technos h2 {
  color: #25a9e0;
  font-size: 2em;
  margin-bottom: 40px;
  font-weight: bold;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tech-card {
  background-color: #fff;
  padding: 20px;
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
}

.tech-card img {
  height: 60px;
  margin-bottom: 15px;
}

.tech-card h3 {
  color: #25a9e0;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 0.95em;
  text-align: justify;
  color: #333;
}

/* =========================
   MOBILE UX PRO - EMS
   ========================= */
@media (max-width: 768px){

/* HERO */
.hero-dev{
    height: 55vh;
    padding: 0 15px;
}

.hero-content h1{
    font-size: 2rem !important;
    line-height: 1.2 !important;
}

.hero-content p{
    font-size: 1rem;
    line-height: 1.5;
}

/* BUTTON HERO */
.btn-hero{
    padding: 12px 22px;
    font-size: 0.95rem;
    border-radius: 40px;
}

/* SERVICES */
.services-section{
    padding: 50px 15px;
}

.services-section h2{
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.services-container{
    grid-template-columns: 1fr;
    gap: 15px;
}

/* CARDS */
.service-card{
    padding: 18px;
}

/* ABOUT */
.about-web{
    padding: 50px 15px;
}

.about-web .about-container{
    flex-direction: column;
    gap: 20px;
}

.about-web .about-text{
    padding: 25px;
}

/* CONTACT SECTION (WEB DEV CTA) */
.contact{
    height: auto;              /* 🔥 IMPORTANT */
    padding: 60px 15px;
}

.contact h3{
    font-size: 1.7rem;
}

.contact p{
    font-size: 0.95rem;
    padding: 0 10px;
}

/* BUTTON DEV */
.btndev{
    padding: 11px 20px;
    font-size: 0.95rem;
}

/* PROCESSUS */
.processus{
    padding: 50px 15px;
}

.processus h2{
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.processus .etapes{
    flex-direction: column;
}

.processus .etapes::before{
    display: none;
}

.processus .etape{
    padding: 15px;
}

/* TECH SECTION */
.technos{
    padding: 40px 15px;
}

.tech-grid{
    flex-direction: column;
    align-items: center;
}

.tech-card{
    width: 100%;
    max-width: 320px;
}
.contact::after{
    font-size: 55px;        /* 🔥 réduit fort */
    bottom: -10px;          /* remonte */
    left: 10px;             /* marge mobile */
    letter-spacing: 4px;    /* moins agressif */
    opacity: 0.10;          /* plus subtil */
}
}

/* =========================
   VERY SMALL PHONES
   ========================= */
@media (max-width: 480px){

.hero-content h1{
    font-size: 1.6rem !important;
}

.contact h3{
    font-size: 1.5rem;
}

.btndev{
    width: auto;
    padding: 10px 18px;
}
}