body {
  background-color: #000;
}
.navbar {
  background-color: #000 !important;
  padding: 10px 20px;
  height: 96px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: none !important;
  border: none !important;
}
.navbar-dark {
  background-image: none !important;
}
.container-fluid {
  width: 1440px;
}
.navbar-collapse {
  width: 100%;
  display: flex;
  justify-content: end;
}
.navbar-collapse ul a {
  color: #fdfdfd;
  font: 600 14px/100% "Inter", sans-serif;
  letter-spacing: 0%;
  margin: 0 15px;
}
.navbar-collapse ul a:hover {
  color: #f23b48;
}
.nav-link:focus {
  color: #f23b48;
}
.nav-logo {
  width: 107px;
  height: 68px;
}
.nav-link.active {
  color: #f23b48 !important;
}
.dropdown-menu {
  background-color: #000;
}
.dropdown button:hover {
  background-color: #000;
  color: #ffffff;
}
.dropdown button {
  font: 500 17px/100% "Inter", sans-serif !important;
  letter-spacing: 0%;
}
.dropdown-item:hover {
  background-color: #000;
}
.btn {
  border-radius: 8px;
  border: 2px solid #fff;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ff0000 !important;
}

.navbar-nav .nav-link i {
  margin-right: 8px;
  display: none;
}

.dropdown-menu-dark {
  background-color: #111 !important;
  border: none;
}
.dropdown .btn {
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Section-1 */
.hero-section1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-1 {
  position: relative;
  width: 94%;
  height: 100vh;
  background: linear-gradient(90deg, #83898b 0%, #030e14 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 96px;
}
.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-text {
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 0.9;
  letter-spacing: 5px;
}
.name-top {
  opacity: 0.85;
  position: relative;
  z-index: 1;
  filter: blur(1px);
  transform: translateX(-20%) translateY(120px);
  font: 600 11vw/100% "Inter", sans-serif !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 2px 0 rgba(0, 0, 0, 0.55),
    0 10px 30px rgba(0, 0, 0, 0.45);
}
.name-bottom {
  opacity: 0.9;
  position: relative;
  z-index: 3;
  transform: translateX(12%) translateY(270px);
  font: 600 11vw/100% "Inter", sans-serif !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 2px 0 rgba(0, 0, 0, 0.55),
    0 10px 30px rgba(0, 0, 0, 0.45);
}
.hero-img {
  position: absolute;
  left: 50%;
  top: 2%;
  bottom: 0;
  transform: translateX(-50%);
  height: 138%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}
.socials {
  position: absolute;
  right: 3%;
  top: 35%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 4;
}
.socials a {
  color: white;
  font-size: 22px;
  transition: 0.3s ease;
}
.socials a:hover {
  color: #f23b48;
  transform: scale(1.2);
}

/* Section-2 */
.section-2 {
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-content h3 {
  font: 600 28px/100% "Quicksand", sans-serif;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
.total-box {
  display: flex;
  width: 94%;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #fff;
}
.section-content {
  font: 500 36px/100% "Inter", sans-serif !important;
  margin: 50px 0 30px;
  color: #fff;
}
.section2-video {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
.section2-video img {
  width: 93%;
  height: 80vh;
}

/* Section-3 */
.section-3 {
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section3-cards {
  width: 90%;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
  margin-bottom: 60px;
}

.section3-cards::-webkit-scrollbar {
  display: none;
}

.card {
  background-color: #000;
  color: #fff;
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 237px;
  border-radius: 8px;
  object-fit: cover;
}

.card h4 {
  font: 400 24px/100% "Inter", sans-serif;
  margin: 20px 0 15px;
}

.card p {
  font: 400 12px/150% "Inter", sans-serif;
}

/* Section-4 */
.section-4 {
  width: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section4-galery {
  display: grid;
  grid-template-columns: 330px 330px 330px 165px;
  grid-template-rows: 380px 380px;
  gap: 2.5em;
  grid-template-areas:
    "tall1 tall2 tall3 tall3"
    "tall4 tall5 tall3 tall3";
  margin-bottom: 40px;
}
.section-4 h3 {
  margin-bottom: 30px;
  font: 600 28px/100% "Quicksand", sans-serif;
  letter-spacing: 0;
}
.gal-item {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#tall1 {
  grid-area: tall1;
}
#tall2 {
  grid-area: tall2;
}
#tall3 {
  grid-area: tall3;
}
#tall4 {
  grid-area: tall4;
}
#tall5 {
  grid-area: tall5;
}
#tall6 {
  display: none;
}

/* Footer */
.main-footer {
  background: #000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.follow-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 30px;
}
.footer-socials a {
  color: #ffffff;
  font-size: 22px;
  transition: 0.3s ease;
}
.footer-socials a:hover {
  color: #f23b48;
}
.copyright {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}
.footer-links {
  font-size: 12px;
  opacity: 0.8;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
  transition: 0.3s ease;
}
.footer-links a:hover {
  color: #f23b48;
}
.footer-links span {
  opacity: 0.6;
}

.preview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.preview-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.preview-overlay img {
  width: 50%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: cover;
  transform: scale(0.8);
  transition: transform 0.25s ease;
}

.preview-overlay.active img {
  transform: scale(1);
}

@media (max-width: 1500px) {
  .name-bottom {
    transform: translateX(14%) translateY(200px);
  }
}
@media (max-width: 1200px) {
  .section4-galery {
    display: grid;
    width: 100%;
    gap: 1.5em;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    grid-template-areas:
      "tall1 tall2 tall3 tall3"
      "tall4 tall5 tall3 tall3";
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #000 !important;
    border-radius: 0 0 15px 15px;
    padding: 15px;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-link i {
    display: inline-block;
    margin-right: 8px;
  }
  .dropdown {
    width: 100%;
    margin-top: 10px;
  }
  .dropdown .btn {
    width: 100%;
    display: block;
  }

  .name-top,
  .name-bottom {
    letter-spacing: 2px;
    font: 600 14vw/100% "Inter", sans-serif !important;
  }
  .name-top {
    transform: translateX(-28%) translateY(120px);
  }
  .name-bottom {
    transform: translateX(2%) translateY(170px);
  }
  .hero-img {
    right: 5%;
    height: 120%;
  }
  .hero-text {
    left: 5%;
  }
  .socials {
    right: 15px;
    gap: 18px;
  }
  .section2-video {
    object-fit: cover;
  }
  .section3-cards img {
    gap: 20px;
    scroll-snap-type: x mandatory;
  }
  .card {
    flex: 0 0 calc(50% - 10px);
  }
  .section4-galery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 1.5em;
    grid-template-areas:
      "t1 t2 t3"
      "t4 t5 t6";
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  #tall1 {
    grid-area: t1;
  }
  #tall2 {
    grid-area: t2;
  }
  #tall3 {
    grid-area: t3;
  }
  #tall4 {
    grid-area: t4;
  }
  #tall5 {
    grid-area: t5;
  }
  #tall6 {
    grid-area: t6;
  }

  .gal-item {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #tall6 {
    display: block;
  }
}
@media (max-width: 768px) {
  .preview-overlay {
    display: none !important;
  }
  .section4-galery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 1.2em;
    grid-template-areas:
      "t1 t2 t3"
      "t4 t5 t6";

    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .name-bottom {
    transform: translateX(2%) translateY(220px);
  }

  #tall1 {
    grid-area: t1;
  }
  #tall2 {
    grid-area: t2;
  }
  #tall3 {
    grid-area: t3;
  }
  #tall4 {
    grid-area: t4;
  }
  #tall5 {
    grid-area: t5;
  }
  #tall6 {
    grid-area: t6;
  }

  .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  .card {
    flex: 0 0 90%;
  }
}
@media (max-width: 480px) {
  .name-bottom {
    transform: translateX(4%) translateY(270px);
  }
}
