@charset "UTF-8";
/* Template Name: Agence MAT 360 x Mhamed TAHIR */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
/* ================================
   SF Pro Display – Import complet
   ================================ */
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYTHINITALIC.OTF") format("opentype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYULTRALIGHTITALIC.OTF") format("opentype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYLIGHTITALIC.OTF") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF") format("opentype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYHEAVYITALIC.OTF") format("opentype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYBLACKITALIC.OTF") format("opentype");
  font-weight: 900;
  font-style: italic;
}
.ff-sf-pro-display {
  font-family: "SF Pro Display";
}

.ff-playfair-display {
  font-family: "Playfair Display";
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #d4af37;
  --gradient: linear-gradient(90deg, #FF5C7A, #FF8A3D);
  --sanguine: #FF5C7A;
  --orange: #FF8A3D;
  --sanguine-rgb: 255, 92, 122;
  --orange-rgb: 255, 138, 61;
  --vh: 100%;
}

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

body {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-header {
  background: rgba(var(--sanguine-rgb), 0.2); /* plus léger */
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), inset 0 -1px 1px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.2); /* profondeur */
  backdrop-filter: blur(20px) saturate(180%) contrast(110%);
  -webkit-backdrop-filter: blur(20px) saturate(180%) contrast(110%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 0; /* optionnel, pour un effet "panneau flottant" */
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.25) 100%);
  border-radius: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes shine {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(50%);
  }
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  width: 50px;
}

.main-nav a {
  margin-left: 2rem;
  color: var(--black);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

.hero.immersive {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: var(--gradient) !important;
  font-family: "Playfair Display", serif !important;
}

.hero.immersive .hero-bg {
  position: absolute;
  inset: 0;
  animation: gradientMove 8s infinite alternate ease-in-out;
  z-index: -1;
}

.hero.immersive::after {
  content: "";
  position: absolute;
  bottom: -150px; /* dépasse sur la section suivante */
  left: 50%;
  transform: translateX(-50%) perspective(800px) rotateX(60deg);
  width: 1200px;
  height: 600px;
  border-top-left-radius: 25em;
  border-top-right-radius: 25em;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero.immersive::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to right, rgba(255, 92, 122, 0.4), transparent 20%, transparent 80%, rgba(255, 138, 61, 0.4));
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.door {
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  border-top-left-radius: 25em;
  border-top-right-radius: 25em;
  background-color: var(--white);
  transition: transform 0.2s linear, box-shadow 0.2s linear;
}
@media (max-width: 567px) {
  .door {
    box-shadow: 0 -25px 100px rgba(255, 255, 255, 0.45);
  }
}
@media (min-width: 568px) {
  .door {
    box-shadow: 0 -25px 100px rgba(255, 255, 255, 0.95);
  }
}

@media (min-width: 768px) {
  .door {
    width: 600px;
    height: 90%;
  }
}
@media (max-width: 767px) {
  .door {
    width: 427px;
    height: 95%;
  }
}
#transition-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  font-family: "Playfair Display", serif !important;
}

#transition-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-quote {
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
}

#quote-text {
  font-family: "SF Pro Display", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  min-height: 60px; /* réserve espace */
}

#quote-author {
  font-size: 1.2rem;
  font-weight: 400;
  color: #444;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Effet glow (clic ou scroll) */
.door.glow {
  box-shadow: 0 -25px 150px rgb(255, 255, 255), 0 -50px 200px rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.8s ease;
}

/* Effet ouverture (clic uniquement) */
.door.open {
  transform: scaleY(1.05) scaleX(1.02);
  transition: transform 0.8s ease;
}

@keyframes gradientMove {
  0% {
    background-position: left top, right bottom;
  }
  100% {
    background-position: right top, left bottom;
  }
}
/* Desktop immersif */
.fullscreen-section {
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

/* Mobile = sections à hauteur auto */
@media (max-width: 1024px) {
  .fullscreen-section {
    height: auto !important;
    min-height: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .fullscreen-section.shop {
    padding: 4rem 0; /* pour aérer les produits */
  }
}
.fullscreen-section,
.hero.immersive,
.value-proposition {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.fullscreen-section {
  opacity: 0;
  transform: translateY(50px);
}

.fullscreen-section.active,
.hero.immersive.active {
  opacity: 1;
  transform: translateY(0);
}

.hero.immersive .logo {
  width: clamp(100px, 5vw, 200px);
  height: auto;
  margin: 0 auto;
}

.hero-content h1 {
  position: relative;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(4em, 5vw, 12em);
  margin-bottom: 1rem;
  color: var(--black);
  z-index: 5 !important;
}
.hero-content p {
  position: relative;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 1rem;
  z-index: 5 !important;
}
@media (max-width: 567px) {
  .hero-content p {
    background: var(--gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
}
@media (min-width: 568px) {
  .hero-content p {
    color: var(--black) !important;
  }
}
.hero-content .tagline {
  position: relative;
  font-size: 1.4rem;
  max-width: 700px;
  margin: auto;
  margin-bottom: 1rem;
  z-index: 5 !important;
}
.hero-content .slogan {
  position: relative;
  font-size: 1.2rem;
  z-index: 5 !important;
}

/* Overlay blanc (caché au départ) */
#transition-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 1s ease;
  font-family: "Playfair Display", serif;
}

#transition-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.forme1 {
  position: absolute;
  left: -100px;
  top: -200px;
  background-image: url("https://agencemat360.com/wp-content/uploads/themes/forme1.png");
  width: 781px;
  height: 453px;
  overflow: hidden;
}

.forme2 {
  position: absolute;
  top: -200px;
  right: -300px;
  background-image: url("https://agencemat360.com/wp-content/uploads/themes/forme2.png");
  width: 804px;
  height: 788px;
}

.liquid-glass-text {
  font-family: "Playfair Display";
  position: relative;
  display: inline-block;
  color: transparent;
  /* Couleur translucide */
  background: linear-gradient(135deg, rgb(255, 92, 122), rgb(255, 138, 61));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 1;
  /* Ombre pour donner du relief */
}

/* Reflet statique incurvé */
.liquid-glass-text::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(0, 0, 0, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.6;
  mix-blend-mode: screen;
}

/* Reflet mobile (glossy) */
.liquid-glass-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: shine 5s infinite ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-150%) rotate(-10deg);
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  50% {
    transform: translateX(150%) rotate(-10deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.wp-element-button {
  color: var(--white) !important;
}
.wp-element-button:hover {
  color: var(--sanguine) !important;
}

.wp-element-button,
.btn {
  font-family: "Playfair Display", serif;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 567px) {
  .wp-element-button,
  .btn {
    padding: 0.45rem 0.9rem;
    font-size: 1em;
    font-weight: 500;
  }
}
@media (min-width: 568px) {
  .wp-element-button,
  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1em;
    font-weight: 500;
  }
}

.wp-element-button,
.btn-gradient {
  background: var(--gradient);
  color: var(--white);
  border: none;
}

.wp-element-button:hover,
.btn-gradient:hover {
  background: transparent;
  border: 1px solid #FF5C7A;
  color: #FF5C7A;
}

.btn-outline {
  background: transparent;
  border: 1px solid #FF8A3D;
  color: #FF8A3D;
}

.btn-outline:hover {
  border: 1px solid var(--gradient);
  background: var(--gradient);
  color: var(--white);
  border: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: #FF8A3D;
  border: 1px solid var(--white);
}

.flow-section {
  padding: 5rem 2rem;
  text-align: center;
}
@media (min-width: 1068px) {
  .flow-section {
    height: 100vh;
  }
}
@media (max-width: 1067px) {
  .flow-section {
    height: 100vh;
    display: flex;
  }
}

.flow-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

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

.service-card i {
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: block;
}

.logo-item img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

#contact p {
  color: #555;
  margin-bottom: 2rem;
}

.site-footer {
  background: var(--black);
  color: #888;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* === PAGE WRAPPER PREMIUM === */
.page-wrapper {
  padding: 2rem 0;
  background: var(--gradient) !important;
  max-height: 100%;
  min-height: 100vh;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
  text-align: center;
  color: #222;
  position: relative;
}

.page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gradient);
  margin: 0.8rem auto 0;
  border-radius: 3px;
}

.page-content.card-style {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  line-height: 1.8;
  font-size: 1.05rem;
  color: #444;
}

.page-content.card-style p {
  margin-bottom: 1.2rem;
}

.page-content.card-style h2,
.page-content.card-style h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  color: #111;
}

.page-content.card-style ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.page-content.card-style a {
  color: #FF5C7A;
  font-weight: 500;
}

.page-content.card-style a:hover {
  color: #FF8A3D;
}

.btn-liquid-glass {
  position: relative;
  display: inline-block;
  padding: 14px 64px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 1;
}

/* Ombre dégradée proche */
.btn-liquid-glass::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 92, 122, 0.8), rgba(255, 138, 61, 0.8));
  filter: blur(15px);
  z-index: -1;
}

/* Aura externe tournante */
.btn-liquid-glass::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 92, 122, 0.8), rgba(255, 138, 61, 0.8), rgba(255, 255, 255, 0.9), rgba(255, 92, 122, 0.8));
  filter: blur(35px);
  opacity: 0.8;
  z-index: -2;
  animation: rotateAura 8s linear infinite;
}

@keyframes rotateAura {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-liquid-glass span {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .scroll-down {
    position: absolute;
    bottom: 30px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
  }
  .scroll-down span {
    display: block;
    width: 24px;
    height: 24px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(-45deg);
    animation: bounce 1.5s infinite;
  }
}
@media (max-width: 1023px) {
  .scroll-down {
    display: none !important;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(8px) rotate(-45deg);
  }
  60% {
    transform: translateY(4px) rotate(-45deg);
  }
}
.promo-offer {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.promo-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}

.promo-text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

#product-door-transition {
  position: fixed;
  inset: 0;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#product-door-transition.active {
  opacity: 1;
  visibility: visible;
}

#product-door-transition .door {
  width: 600px;
  height: 90%;
  bottom: 0 !important;
  background: #fff;
  border-top-left-radius: 25em;
  border-top-right-radius: 25em;
  box-shadow: 0 -25px 100px rgba(255, 255, 255, 0.95);
  transform: scaleY(1);
  transition: transform 1s ease, box-shadow 1s ease;
}

#product-door-transition.open .door {
  bottom: 0 !important;
  transform: scaleY(1.05) scaleX(1.02);
  box-shadow: 0 -25px 100px rgba(255, 255, 255, 0.95);
}

#product-door-transition .door-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10; /* passe devant la porte */
}

#door-product-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}/*# sourceMappingURL=style.css.map */