/* ========================= */
/* RESET */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================= */
/* GLOBAL */
/* ========================= */

body {
  background: #0a0a0a;
  color: white;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 300;
}

/* 🔥 FIX LIENS (IMPORTANT) */
a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

/* ========================= */
/* HEADER */
/* ========================= */

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

header h1 {
  font-size: 14px;
  letter-spacing: 2px;
}

header a {
  margin-left: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
  transition: 0.3s;
}

header a:hover {
  opacity: 1;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7)),
    radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.hero-content h2 {
  font-size: 72px;
  margin: 20px 0;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
}

.categories {
  margin-bottom: 30px;
  opacity: 0.7;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.btn {
  border: 1px solid white;
  padding: 12px 28px;
  color: white;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: white;
  color: black;
}

/* ========================= */
/* PROJECT GRID */
/* ========================= */

.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.project {
  position: relative;
  overflow: hidden;
  color: white;
}

/* IMAGE */
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.project:hover img {
  transform: scale(1.07);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.overlay h3 {
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
}

.project:hover .overlay {
  opacity: 1;
  background: rgba(0,0,0,0.5);
}

.project:hover .overlay h3 {
  color: #cccccc;
  transform: translateY(-5px);
}

/* ========================= */
/* PROJECT DETAIL */
/* ========================= */

.gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.gallery img {
  width: 100%;
}

@media (min-width: 1000px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.about-image {
  max-width: 500px;
}

.about-image img {
  width: 100%;
  filter: grayscale(100%);
}

.about-content {
  max-width: 500px;
}

.about-content h2 {
  font-size: 64px;
}

.role {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 30px;
}

.about-paragraphs p {
  opacity: 0.8;
  margin-bottom: 20px;
}

@media (min-width: 1000px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services-editorial {
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 40px 80px;
}

.services-title {
  font-size: 72px;
  margin-bottom: 80px;
}

.services-intro {
  display: grid;
  gap: 40px;
  margin-bottom: 80px;
}

.services-left h3 {
  font-size: 36px;
}

.services-right p {
  opacity: 0.7;
}

.services-image img {
  width: 100%;
}

.services-list-clean {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 40px;
  display: grid;
  gap: 80px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item img {
  width: 100%;
  transition: 0.6s;
}

.service-item:hover img {
  transform: scale(1.02);
}

.service-item h3 {
  font-size: 32px;
}

.service-item p {
  opacity: 0.7;
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact {
  min-height: 100vh;
  padding: 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.contact-left {
  max-width: 500px;
}

.contact-left h2 {
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.contact-intro {
  opacity: 0.7;
  margin-bottom: 30px;
}

.contact-email {
  margin-top: 20px;
  opacity: 0.6;
}

.contact-email a {
  color: white;
}

/* FORM */

.contact-form {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 12px 0;
  color: white;
  font-size: 13px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 1px solid white;
}

.contact-form textarea {
  min-height: 100px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form button {
  margin-top: 30px;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  border-color: white;
  background: white;
  color: black;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer {
  text-align: center;
  padding: 40px;
  opacity: 0.5;
}

/* ========================= */
/* ANIMATION */
/* ========================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {

  header {
    padding: 20px;
  }

  .hero-content h2 {
    font-size: 50px;
  }

  .projects {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 50px;
  }

  .contact {
    flex-direction: column;
    padding: 120px 20px;
  }

  .contact-left h2 {
    font-size: 42px;
  }

  .contact-form {
    width: 100%;
  }

}