* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

.main-container {
  padding-top: 90.77px;
}

h3 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 65px;
}

p {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

/* 'Navigation' Section */
.nav {
  display: flex;
  background-color: #022026;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
}

.nav-links {
  display: flex; /* Use flex to ensure links are aligned horizontally */
  align-items: center; /* Center links vertically within the nav bar */
  list-style: none; /* Remove default list styling */
  padding: 0; /* Ensure no extra padding */
  margin: 0; /* Ensure no extra margin */
}

.nav-links li {
  display: inline-block;
  list-style: none;
  padding: 0; /* Ensure no extra padding */
  margin: 0; /* Ensure no extra margin */
}

.nav-links a {
  font-size: 16px;
  margin-right: 20px;
  font-family: "Jost", sans-serif;
}

.nav-links a:link,
.nav-links a:visited {
  text-decoration: none;
  color: white;
  display: inline-block;
  padding: 0px 30px;
  transition: color 0.5s ease;
}

.nav-links a:hover,
.nav-links a:active {
  color: #f26052;
}

img[alt="Logo"] {
  width: 6%;
  margin-left: 20px;
}

/* 'Featured' Section */
.featured-container {
  position: relative;
}

.slide-1 {
  background: url("images/featured-2.jpg");
}

.slide-2 {
  background: url("images/featured-1.jpg");
}

.slide-3 {
  background: url("images/featured-3.jpg");
}

.slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow-x: hidden;
  transition: 0.3s linear; /* Smooth transition */
}

.featured-caption {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.featured-caption h3 {
  color: white;
  font-size: 65px;
  padding: 18px;
}

#featured-btn {
  background-color: #f26052;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.featured-caption a {
  text-decoration: none;
}

#featured-btn:hover {
  background-color: #022026;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: background 500ms;
}

.arrow img {
  width: 50px;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.4);
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

/* 'About' Section */
.about-container {
  background-color: white;
  display: flex;
  align-items: center; /* Center items vertically */
}

img[alt="About"] {
  width: 45%;
}

.about-content {
  padding: 100px 150px;
  align-items: center; /* Center items vertically */
}

#about-heading {
  text-align: right;
  margin-bottom: 50px;
  color: #022026;
  font-size: 45px;
}

.about-info p {
  line-height: 1.5em;
  text-align: justify;
}

/* 'Collab' Section */
.collab-container {
  background-color: #022026;
  padding: 140px;
}

.collab-content {
  display: flex; /* Flexbox Layout */
  flex-direction: column; /* Arranges items in a column */
  gap: 100px; /* Space between each item */
  width: 100%; /* Sets the container width to 100% */
}

.collab-item {
  display: flex; /* Flexbox Layout */
  align-items: center; /* Vertically centers the text and image */
  justify-content: space-between; /* Spaces the text and image apart. */
  background-color: white;
}

.collab-item:nth-child(odd) {
  flex-direction: row-reverse; /* Reverses the order of text and image for
                                even-numbered items, creating an alternating layout */
}

.collab-item img {
  width: 50%;
}

.collab-info {
  padding: 100px 100px;
}

.collab-info p {
  color: black;
  text-align: justify;
  line-height: 1.5em;
}

#collab-heading {
  margin-bottom: 90px;
  text-align: center;
  color: white;
  font-size: 45px;
}

#info-heading-left {
  margin-bottom: 40px;
  color: #022026;
  font-size: 45px;
}

#info-heading-right {
  margin-bottom: 40px;
  color: #022026;
  font-size: 45px;
  text-align: right;
}

/* 'Music Video Looks' Section */
.mv-container {
  background-color: white;
  padding: 140px;
}

#mv-heading {
  margin-bottom: 70px;
  text-align: center;
  color: #022026;
  font-size: 45px;
}

#mv-info-heading {
  margin-top: 20px;
  color: #022026;
  font-size: 35px;
}

#mv-info {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 25px;
  margin-right: 30px;
  margin-left: 30px;
}

#mv-btn a {
  text-decoration: none;
  color: white;
}

#mv-btn {
  align-content: center;
  background-color: #f26052;
  color: white;
  border: none;
  width: 50%;
  padding: 10px 0px;
  font-size: 15px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin: 0 auto;
  transition: background-color 0.3s, color 0.3s;
}

#mv-btn:hover {
  background-color: #022026;
}

.slick-slider button {
  position: absolute;
  top: 32%;
  outline: "none";
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 35px;
  background-color: #022026;
  color: white;
  z-index: 99;
}

.slick-slider .slick-prev {
  left: -30px;
  font-size: 0;
}

.slick-slider .slick-prev::before {
  content: "<";
  line-height: 0.5;
  font-size: 25px;
}

.slick-slider .slick-next {
  right: -30px;
  font-size: 0;
}

.slick-slider .slick-next::after {
  content: ">";
  line-height: 0.5;
  font-size: 25px;
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
}

.slick-dots li {
  display: inline-block;
  padding: 1px;
  background-color: #ccc;
  margin: 10px 5px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.slick-dots button {
  display: none;
}

.slick-dots li.slick-active {
  background: #000;
}

.slick-slider img {
  width: 100%;
  height: 500px;
}

.slick-slide {
  padding: 40px 0;
  position: relative;
  height: auto !important;
  opacity: 0.5;
  transition: all 900ms ease;
}

.slick-current {
  opacity: 1;
  transform: scale(1.2);
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 50px;
}

.slick-slide .xyz {
  opacity: 0;
}

.slick-current .xyz {
  opacity: 1;
}

/* 'Live Performance Looks' Section */
.live-container {
  background-color: #022026;
  padding: 140px;
}

#live-heading {
  margin-bottom: 80px;
  text-align: center;
  color: white;
  font-size: 45px;
}

.gallery-image {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-image img {
  height: 400px;
  width: 280px;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.img-box {
  box-sizing: content-box;
  margin: 10px;
  height: 400px;
  width: 280px;
  overflow: hidden;
  display: inline-block;
  color: white;
  position: relative;
  background-color: white;
}

.gallery-caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
  height: 400px;
  width: 280px;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.img-box:hover img {
  transform: scale(1.1);
}

.img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.5);
}

.img-box:hover .gallery-caption {
  transform: translateY(-20px);
  opacity: 1;
}

.img-box:hover {
  cursor: pointer;
}

.gallery-caption > p:nth-child(2) {
  font-size: 0.8em;
}

.gallery-caption p {
  margin: 0;
}

.opacity-low {
  opacity: 0.5;
}

/* 'Newsletter' Section */
.news-container {
  background-color: white;
  padding: 130px 500px;
}

#news-heading {
  margin-bottom: 60px;
  text-align: center;
  color: #022026;
  font-size: 45px;
}

#news-info {
  text-align: justify;
  margin-bottom: 2em;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 20px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid;
  box-sizing: border-box;
  background-color: white;
}

::placeholder {
  font-family: "Jost", sans-serif;
  font-size: 18px;
}

#form-btn {
  width: 100%;
  padding: 15px 20px;
  margin-top: 1em;
  box-sizing: border-box;
  background-color: #f26052;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

#form-btn:hover {
  background-color: #022026;
}

/* 'Footer' Section */
.footer-container {
  background-color: #022026;
  padding: 40px;
}

.socials p {
  color: white;
  text-align: center;
  margin: 0;
}

.socials ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  align-items: center;
}

.socials li {
  margin: 0 20px;
}

.socials a {
  display: block;
}

.socials img {
  width: 40px;
  height: 40px;
}

/* Media Queries */
@media screen and (max-width: 425px) {
  .mobile {
    padding-top: 200px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    font-size: 16px;
  }

  img[alt="Logo"] {
    width: 18%;
    margin: auto;
  }

  .featured-caption h3 {
    color: white;
    font-size: 35px;
    padding: 18px;
  }

  #featured-btn {
    background-color: #f26052;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }

  .about-container {
    background-color: white;
    display: block;
    align-items: center; /* Center items vertically */
  }

  #about-heading {
    text-align: center;
    margin-bottom: 50px;
    color: #022026;
    font-size: 30px;
  }

  .about-content {
    padding: 70px 35px;
    align-items: center; /* Center items vertically */
  }

  .about-info p {
    line-height: 1.5em;
    text-align: justify;
    font-size: 16px;
  }

  img[alt="About"] {
    width: 100%;
  }

  .collab-container {
    background-color: #022026;
    padding-top: 80px;
    padding-bottom: 60px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .collab-content {
    display: block;
    flex-direction: column;
    gap: 100px;
    width: 100%;
  }

  .collab-item {
    display: block; /* Flexbox Layout */
    align-items: center; /* Vertically centers the text and image */
    justify-content: space-between; /* Spaces the text and image apart. */
    background-color: white;
    margin-bottom: 40px;
  }

  .collab-info {
    padding: 35px 35px;
  }

  .collab-info p {
    color: black;
    text-align: justify;
    line-height: 1.5em;
    font-size: 16px;
  }

  .collab-item img {
    width: 100%;
  }

  #info-heading-left,
  #info-heading-right {
    margin-bottom: 35px;
    color: #022026;
    font-size: 30px;
    text-align: center;
  }

  #collab-heading {
    margin-bottom: 50px;
    text-align: center;
    color: white;
    font-size: 30px;
  }

  .mv-container {
    background-color: white;
    padding: 60px 30px;
  }

  .slick-slider img {
    width: 100%;
    height: 100%;
  }

  #mv-heading {
    margin-bottom: 40px;
    text-align: center;
    color: #022026;
    font-size: 30px;
  }

  #mv-info {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 25px;
    margin-right: 30px;
    margin-left: 30px;
  }

  #mv-info-heading {
    margin-top: 20px;
    color: #022026;
    font-size: 20px;
  }

  #mv-btn {
    align-content: center;
    background-color: #f26052;
    color: white;
    border: none;
    width: 60%;
    padding: 10px 10px;
    font-size: 12px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin: 0 auto;
    transition: background-color 0.3s, color 0.3s;
  }

  .live-container {
    background-color: #022026;
    padding: 80px 20px;
  }

  #live-heading {
    margin-bottom: 35px;
    text-align: center;
    color: white;
    font-size: 30px;
  }

  .gallery-image img {
    height: 100%;
    width: 100%;
    transform: scale(1);
    transition: transform 0.4s ease;
  }

  .gallery-caption {
    width: 90%;
    text-align: left;
    font-size: 18px;
  }

  .img-box {
    box-sizing: content-box;
    margin: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;
  }

  .transparent-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
  }

  .news-container {
    background-color: white;
    padding: 80px 30px;
  }

  #news-heading {
    margin-bottom: 40px;
    text-align: center;
    color: #022026;
    font-size: 30px;
  }

  #news-info {
    text-align: justify;
    margin-bottom: 1.5em;
    font-size: 16px;
  }

  input[type="text"],
  input[type="email"] {
    width: 100%;
    padding: 10px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid;
    box-sizing: border-box;
    background-color: white;
  }

  ::placeholder {
    font-family: "Jost", sans-serif;
    font-size: 15px;
  }

  #form-btn {
    width: 100%;
    padding: 10px 10px;
    margin-top: 1em;
    box-sizing: border-box;
    background-color: #f26052;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .footer-container {
    background-color: #022026;
    padding: 35px;
  }

  .socials p {
    color: white;
    text-align: center;
    margin: 0;
    font-size: 16px;
  }

  .socials li {
    margin: 0 15px;
  }

  .socials img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 1910px) {
  .main-container {
    padding-top: 0;
  }
}
