/*
Theme Name: Divi Child - Studiovisuel
Theme URI: https://studiovisuel.com
Description: Thème enfant pour Divi - Agence Studiovisuel
Author: Studiovisuel
Author URI: https://studiovisuel.com
Template: Divi
Version: 1.0.0
*/

/* Styles globaux */
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #111;
  line-height: 1.6;
}

/* Couleurs principales */
:root {
  --accent: #ff5a5f;
  --accent2: #0a84ff;
  --muted: #6b7280;
}

/* Effets visuels */
.sv-card {
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(12, 18, 30, 0.06);
  background: linear-gradient(180deg, #fff, #fbfbfd);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.sv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(12, 18, 30, 0.09);
}

.underline-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.underline-accent:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0.15;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.underline-accent:hover:after {
  transform: scaleX(1);
}

.sv-img-tilt {
  border-radius: 10px;
  overflow: hidden;
  transform: rotate(-0.8deg);
  transition: transform 0.35s ease;
  box-shadow: 0 12px 30px rgba(12, 18, 30, 0.06);
}
.sv-img-tilt:hover {
  transform: rotate(0deg) scale(1.02);
}