:root {
  color-scheme: light;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #1e1e1e;
  background: #f5efe6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #f5efe6 0%, #efe1c8 100%);
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2)), url("assets/studio-bg.svg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 2.5rem 3.5rem;
  border-radius: 1.25rem;
  backdrop-filter: blur(4px);
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  font-size: 0.8rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 0;
}

.contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem;
  text-align: center;
}

.contact p {
  margin: 0.35rem 0;
  font-size: 1rem;
  color: #4e4131;
}

.gallery {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #3f3327;
}

.footage {
  background: #4a2b1d;
  color: #f6e9dc;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin: 1rem 0 0;
  width: 100%;
  border-radius: 0;
}

.footage p {
  margin: 0.35rem 0;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 1rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #fff;
  background-color: #4e2e1f;
  background-image: url("assets/Sexy_Tuntun.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.gallery-card > * {
  position: relative;
  z-index: 1;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.gallery-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.gallery-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 60vh;
  }

  .hero-overlay {
    padding: 2rem 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
