/* ================= ROOT COLORS ================= */
:root {
  --accent-lime: #D6FF2A;
  --accent-gold: #FFD84D;
  --accent-soft: rgba(214,255,42,0.35);
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: black;
  color: white;
  overflow-x: hidden;
}

/* ================= NAV ================= */
.nav {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.logo span {
  color: var(--accent-gold);
}

/* ================= SOCIAL ================= */
.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social img {
  width: 20px;
  opacity: 0.9;
  transition: 0.3s;
}

.social img:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 8% 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("hero-bg.png") center -140px / cover no-repeat;
  opacity: 0.32;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.6),
    rgba(0,0,0,1)
  );
}

.hero-content {
  max-width: 620px;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero h2 span {
  color: var(--accent-gold);
}

.hero p {
  color: #ccc;
}

/* ================= BUTTONS ================= */
.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 26px;
  border-radius: 30px;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  margin-right: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent-gold);
  color: black;
}

.btn.outline {
  background: transparent;
}

/* ================= HERO PHOTO ================= */
.hero-photo {
  margin-left: auto;
  z-index: 2;
}

.hero-photo img {
  width: 320px;
  border-radius: 22px;
  box-shadow:
    0 0 40px rgba(255,216,77,0.55),
    0 0 80px rgba(255,216,77,0.25);
}

/* ================= SECTIONS ================= */
section {
  padding: 100px 8%;
}

h3 {
  font-size: 34px;
  margin-bottom: 40px;
}

/* ================= TOOLS ================= */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 36px;
  max-width: 680px;
}

.tools-grid img {
  width: 44px;
  transition: 0.35s ease;
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,0.45))
    drop-shadow(0 0 22px rgba(255,216,77,0.55));
}

.tools-grid img:hover {
  filter:
    drop-shadow(0 0 16px rgba(255,255,255,0.75))
    drop-shadow(0 0 36px rgba(255,216,77,0.85));
}

/* ================= ABOUT ================= */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-video video {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow:
    0 0 40px rgba(0,0,0,0.7),
    0 0 60px rgba(255,216,77,0.15);
}

.about-text {
  max-width: 560px;
}

.about p {
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 22px;
}

.about strong {
  color: var(--accent-lime);
}

/* ================= CATEGORIES ================= */
.categories {
  position: relative;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.category-card {
  position: relative;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  transition: 0.4s;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(214,255,42,0.25);
}

.category-card video,
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.85)
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.category-overlay h4 {
  font-size: 22px;
  color: white;
}

/* ================= WORK ================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.card img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.card:hover img {
  box-shadow:
    0 0 25px rgba(255,216,77,0.4),
    0 0 60px rgba(255,216,77,0.15);
}

/* ================= CONTACT ================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.contact-video {
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  overflow: hidden;
}

.contact-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact form {
  max-width: 520px;
}

.contact input,
.contact textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px;
  background: #111;
  border: 1px solid #333;
  color: white;
}

.contact button {
  padding: 14px;
  width: 100%;
  background: var(--accent-gold);
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* ================= FOOTER ================= */
.footer {
  margin-top: 120px;
  padding: 80px 8% 40px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.6)
  );
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner h3 {
  font-size: 32px;
}

.footer-inner p {
  max-width: 640px;
  margin: 24px auto;
  color: #ccc;
}

.footer-line {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--accent-gold);
  margin: 40px auto 20px;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 999;
  overflow-y: auto;
}

.modal-content img,
.modal-content video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  margin: 40px auto;
  display: block;
}

.close {
  position: fixed;
  top: 20px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
  z-index: 1000;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.6s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    padding: 80px 6% 0;
  }

  .hero-photo {
    margin: 40px auto 0;
  }

  section {
    padding: 80px 6%;
  }

  .about-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 180px;
  }
}
