/* GENERAL */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #0f0202;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  width: 80%;
}

/* BUTTONS */
.button {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #3333cc;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.button:hover {
  background-color: #ffa500;
}

/* LOGO SECTION */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.logo-item {
  margin: 20px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.logo-link img {
  width: 150px;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* New spacing between top and bottom logos */
.logo-sub {
  margin-top: 40px;
}

/* Text Section */
.text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -100px;
}

.fashion-films {
  font-size: 18px;
  font-weight: 700;
  color: #f5efed;
  margin-top: -180px;
  margin-bottom: 180px;
  transform: rotate(-270deg);
}

/* CONTACT BUTTON */
.contact-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #3333cc;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 50px;
  margin-bottom: 150px;
}

.enter-btn:hover {
  background-color: #ffa500;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.social-link {
  color: #fff;
  font-size: 40px;
  text-decoration: none;
  -webkit-text-stroke: 0.5px #fdf7f7;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.8;
}

.fa-facebook {
  color: #1877f2;
}

.fa-instagram {
  color: #e4405f;
}

.fa-tiktok {
  color: #000000;
}

.fa-pinterest {
  color: #e60023;
}

/* COPYRIGHT */
.copyright {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 14px;
  color: #888;
  width: 100%;
  margin-top: 20px;
}

/* CONTACT PAGE */
.contact-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.contact-page-container > div {
  margin: 20px 0;
  width: 100%;
  text-align: center;
}

/* MEDIA QUERIES */

/* Large devices */
@media (max-width: 1200px) {
  .container {
    padding: 20px;
  }

  .logo-section {
    gap: 30px;
  }
}

/* Medium devices */
@media (max-width: 992px) {
  .logo-section {
    flex-direction: column;
    align-items: center;
  }

  .logo-item img {
    max-width: 200px;
  }

  .fashion-films {
    transform: rotate(0deg);
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .logo-sub {
    margin-top: 30px;
  }
}

/* Small devices */
@media (max-width: 768px) {
  .logo-item img {
    max-width: 150px;
  }

  .button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .fashion-films {
    font-size: 24px;
    transform: rotate(0deg);
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .social-icons {
    bottom: 60px;
  }

  .logo-sub {
    margin-top: 25px;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .container {
    padding: 10px;
  }

  .logo-item img {
    max-width: 120px;
  }

  .button {
    padding: 6px 12px;
    font-size: 12px;
  }

  .fashion-films {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .social-icons .social-link {
    font-size: 30px;
    margin: 0 8px;
  }

  .copyright {
    font-size: 12px;
  }

  .logo-sub {
    margin-top: 20px;
  }
}

img {
  max-width: 100%;
  height: auto;
}
