/* RESET */

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

body {
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  letter-spacing: 2px;
}
.logo a {
  text-decoration: none;
  color: #fff;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #111;
}

/* HERO */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 50px;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3vw;
  margin-bottom: 15px;
}
.hero-content h1 strong {
  font-size: 2vw;
  margin-bottom: 15px;
}
.hero-content h1 span {
  font-size: 1vw;
  /* margin-bottom: 15px; */
}

/* SECTION */

.section {
  padding: 120px 10%;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
}

.section-title p {
  color: #777;
}

/* PROFILE */

.profile-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.profile-image img {
  width: 100%;
}

.profile-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* WORKS */
/* .gallery-item{
    transition: all .3s ease;
} */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.filter-btns button {
  background: none;
  border: none;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 2px;
}

.filter-btns button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

.filter-btns button:hover::after,
.filter-btns button.active::after {
  width: 100%;
}

.gallery {
  padding-top: 50px;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-item h3 {
  margin-top: 10px;
}

/* NEWS */

.news-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card {
  padding: 25px;
  border: 1px solid #ddd;
}

.news-card span {
  color: #888;
  display: block;
  margin-bottom: 10px;
}

/* COLLABORATIONS */

.collab-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

.collab-grid img {
  width: 100%;
  filter: grayscale(100%);
  transition: 0.3s;
}

.collab-grid img:hover {
  filter: none;
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 80px 20px;
  background: #111;
  color: white;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer p {
  margin-bottom: 20px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .header {
    padding: 20px;
  }

  nav {
    display: none;
  }

  .hero-content h1 {
    /*
    position: absolute;
    top: 20%;
    left: 20%;
    transform: translate(-50%, -50%); */
    color: white;
    text-align: left;
    z-index: 2;
    font-size: 36px;
  }
  .hero-content h1 span {
    line-height: 1.6;
    font-weight: normal;
    font-size: 12px;
  }
  .hero-content h1 strong {
    line-height: 1.6;
    font-weight: normal;
    font-size: 22px;
  }

  .profile-wrap {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .collab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px 0;
  }
}

.collab-slider {
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  transition: 0.5s ease;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  max-width: 300px;
  width: 100%;
  object-fit: contain;
}

.slider-btn {
  border: none;
  background: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .slide img {
    max-width: 180px;
  }
}
.view-more {
  display: inline-block;
  align-items: center;
  padding: 20px;
  color: #111;
  background-color: none;
  border: 1px solid #111;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.1s;
  gap: 12px;
}
.view-more::after {
  content: " →";
  transition: 0.1s;
}

.view-more:hover {
  background-color: #111;
  color: #fff;
  cursor: pointer;
}
.view-more:hover::after {
  color: #fff;
}

.work .view-more {
  display: flex;
  justify-content: center;
}
.view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.collab-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .collab-img {
    width: 220px;
    height: 220px;
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  #scrollTopBtn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 28px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  #navMenu {
    position: fixed;
    top: 58px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s ease;
    z-index: 1000;
  }

  #navMenu.active {
    left: 0;
  }

  #navMenu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
  }

  /* ---------- SOCIAL SECTION ---------- */

  .social-section {
    padding: 60px 20px;
    text-align: center;
  }

  .social-container h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    /* color: #fff; */
    font-size: 24px;
    transition: 0.3s;
    text-decoration: none;
  }

  .social-icons a:hover {
    background-color: #555;
    transform: scale(1.1);
  }

  .footer {
    margin-top: 60px;
    text-align: center;
    padding: 40px 0;
    font-size: 12px;
    color: #fff;
  }
}

/* Desktop */
@media (min-width: 769px) {
  #navMenu {
    display: flex;
    gap: 30px;
  }
  .footer {
    text-align: center;
    padding: 40px;
    background: #111;
    color: white;
  }
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}
.collaborations .collab-section-text span {
  padding-top: 50px;
}



.scroll-indicator {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  color: white;
  letter-spacing: 2px;
}

.scroll-indicator span {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: white;
  margin: 0 auto;
  animation: scrollMove 1.5s infinite;
}

.arrow {
  font-size: 24px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
