.hero {
  min-height: 100vh;
  padding: 140px 25px 80px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65)),
    url("../images/hero/hero-home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.subtitle {
  color: var(--color-red);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 22px 0;
}

.hero p {
  font-size: 21px;
  color: var(--color-text);
  max-width: 720px;
  margin: auto;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.section h2 {
  text-align: center;
  font-size: 42px;
  color: var(--color-red);
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: linear-gradient(145deg, #171717, #101010);
  border: 1px solid var(--color-border);
  padding: 35px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-red);
}

.service-card h3 {
  color: var(--color-red);
  margin-bottom: 15px;
  font-size: 24px;
}

.service-card p {
  color: #cccccc;
}

.about-section {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  text-align: left;
  margin-bottom: 25px;
}

.about-content p {
  color: var(--color-text);
  margin-bottom: 18px;
}

.about-box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 35px;
}

.about-box h3 {
  color: var(--color-red);
  margin-bottom: 20px;
  font-size: 26px;
}

.about-box ul {
  list-style: none;
}

.about-box li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text);
}

.about-box li:last-child {
  border-bottom: none;
}

.banner {
  text-align: center;
  padding: 80px 25px;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-black);
}

.banner h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.banner p {
  margin-bottom: 30px;
  font-size: 19px;
}

.banner .btn {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.banner .btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.gallery-20 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tattoo-card {
  height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-card-light);
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.tattoo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.tattoo-card:hover img {
  transform: scale(1.12);
  filter: brightness(0.55);
}

.tattoo-info {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  transition: 0.4s;
}

.tattoo-card:hover .tattoo-info {
  bottom: 0;
}

.tattoo-info h3 {
  color: var(--color-red);
  font-size: 24px;
}

.tattoo-info p {
  color: var(--color-text);
}

.avis-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.avis-card {
  background: var(--color-card);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.avis-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-red);
}

.stars {
  color: var(--color-red);
  font-size: 22px;
  margin-bottom: 18px;
}

.avis-card p {
  color: var(--color-text);
  margin-bottom: 20px;
}

.avis-card h3 {
  color: var(--color-white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: start;
}

.contact-info {
  background: linear-gradient(145deg, #151515, #0b0b0b);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 30px;
  color: var(--color-red);
  font-size: 34px;
}

.contact-info p {
  margin-bottom: 18px;
  color: #e3e3e3;
  font-size: 17px;
}

.contact-info strong {
  color: var(--color-red);
}

.socials {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.socials a {
  color: var(--color-black);
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.socials a:hover {
  background: var(--color-white);
  transform: translateY(-3px);
}

/* Titres blancs uniquement sur l'accueil */
.why-section > h2,
.about-section .about-content h2 {
  color: #ffffff !important;
}

/* LIGHTBOX RÉALISATIONS */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(155, 17, 30, 0.35);
}

.lightbox-close {
  position: fixed;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
  background: #9b111e;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  line-height: 52px;
  text-align: center;
  transition: 0.3s ease;
}

.lightbox-close:hover {
  background: #ffffff;
  color: #111111;
}

.empty-gallery {
  text-align: center;
  color: var(--color-muted);
  font-size: 18px;
}