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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0F0F10;
  color: #F3F1EC;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #F3F1EC;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #0F0F10;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1a1a1a, #0F0F10);
  z-index: 0;
}

.logo-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 80px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 4r55000000em;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.5rem;
  opacity: 0.85;
}

/* MENU INVISIBLE */
.main-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav li a {
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.main-nav li a:hover {
  color: #9b59b6; /* accent violet subtil */
}

/* PORTFOLIO */
.portfolio h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gallery .item {
  aspect-ratio: 3/4;
  background: #18181a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Agrandir spécifiquement la croix */


.gallery .item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(155, 89, 182, 0.5);
}

/* VISION */
.vision {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.vision p {
  font-size: 1.4rem;
  margin-top: 20px;
  opacity: 0.9;
}

/* RITUEL */
.rituel ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.rituel ul li {
  font-size: 1.3rem;
  position: relative;
  padding-left: 20px;
}

.rituel ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9b59b6;
  font-size: 1.5rem;
  top: 0;
}

/* CONTACT FORM */
.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input,
.contact textarea {
  background: #1a1a1a;
  border: none;
  padding: 15px;
  border-radius: 5px;
  color: #F3F1EC;
  font-size: 1rem;
  resize: none;
}

.contact input:focus,
.contact textarea:focus {
  outline: 2px solid #9b59b6;
}

.contact button {
  background: #9b59b6;
  border: none;
  padding: 15px;
  color: #F3F1EC;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #7d3ca5;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 50px 20px;
  opacity: 0.7;
  font-size: 0.9rem;
  border-top: 1px solid #1a1a1a;
}

/* FADE-IN ANIMATION (scroll) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}