/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===================== BODY ===================== */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("img/app16.jpg") no-repeat center center;
  background-size: cover;
  color: #ffffff;
  line-height: 1.6;
  animation: slideIn 2s ease-out;
}

/* Background overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* ===================== ANIMATION ===================== */
@keyframes slideIn {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  height: 240px;
  overflow: hidden;
  text-align: center;
}

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

/* Hero content */
.hero-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Launching text */
.launching-text {
  background: #ffcc00;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Hero title */
.hero h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  color: #fff;

  text-shadow: 2px 2px 8px rgba(231, 180, 10, 0.7);

  animation: titlePop 4s ease-out forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 5px;
}

/* Title animation */
@keyframes titlePop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }

  60% {
    opacity: 1;
    transform: scale(1.05) translateY(5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===================== SLOGAN BADGE ===================== */
.slogan-badge {
  position: absolute;
  top: 15px;
  right: 20px;

  width: 65px;
  height: 65px;

  background: #ffcc00;
  border: 4px solid #ffcc00;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.slogan-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.slogan-badge::after {
  content: '';

  position: absolute;
  top: -6px;
  right: -6px;

  width: 16px;
  height: 16px;

  background: red;
  border-radius: 50%;
  border: 2px solid #fff;

  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,0,0,0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255,0,0,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255,0,0,0);
  }
}

/* ===================== BUTTON ===================== */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;

  background: #000;
  color: #fff;

  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;

  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* ===================== FEATURED PICTURES ===================== */
.featured-pictures {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 80px 40px;
  perspective: 1000px;
}

.featured-pictures .picture {
  flex: 1;
  max-width: 33%;
  transition: transform 0.5s;
}

.featured-pictures .picture img {
  width: 100%;
  height: 300px;
  object-fit: cover;

  border-radius: 20px;
  display: block;

  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.featured-pictures .left {
  transform: rotateY(10deg);
}

.featured-pictures .right {
  transform: rotateY(-10deg);
}

.featured-pictures .center {
  transform: rotateY(0deg);
}

.featured-pictures .picture:hover {
  transform: scale(1.05) rotateY(0deg);
  z-index: 2;
}

/* ===================== CONTAINER ===================== */
.container {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

/* ===================== ABOUT SECTION ===================== */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 20px;

  background: transparent;
  color: white;

  padding: 0;
}

.about h2,
.about p {
  color: white;
}

.about img {
  width: 100%;
  border-radius: 20px;
}

/* About button */
.about .btn {
  background-color: #ffcc00;
  color: #000;
  margin-left: 0;
}

/* ===================== SOCIAL MEDIA ===================== */
.social-media {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.social-media img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

/* ===================== SHOWS ===================== */
.shows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.show-card {
  background: rgba(0, 0, 0, 0.85);

  padding: 30px;
  border-radius: 20px;

  transition: 0.3s;
}

.show-card:hover {
  transform: translateY(-10px);
  background: #ff004f;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  margin-top: 30px;

  display: flex;
  justify-content: center;

  margin-bottom: 30px;
}

.contact-form form {
  width: 100%;
  max-width: 420px;

  display: flex;
  flex-direction: column;
  gap: 15px;

  border: 2px solid #ffcc00;
  border-radius: 16px;

  padding: 25px;

  box-shadow: 0 0 18px rgba(255, 204, 0, 0.45);

  background: black;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
}

/* Focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.7);
}

/* Button */
.contact-form button {
  background: #ffcc00;
  color: #000;

  font-weight: 700;

  border: none;
  border-radius: 10px;

  padding: 12px;
  cursor: pointer;

  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #ffd633;
  transform: translateY(-2px);
}

/* ===================== FOOTER ===================== */
footer {
  background: rgba(0, 0, 0, 0.9);

  text-align: center;
  padding: 30px;

  font-size: 0.9rem;
}

footer span {
  color: #ffcc00;
}

/* ===================== TABLET ===================== */
@media (max-width: 900px) {

  .featured-pictures {
    gap: 12px;
    padding: 40px 10px;
  }

  .featured-pictures .picture img {
    height: 200px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: 200px;
    padding: 10px;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-align: center;
  }

  .hero p {
    font-size: 0.95rem;
    text-align: center;
    padding: 0 10px;
  }

  .launching-text {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  /* Badge */
  .slogan-badge {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
  }

  /* FEATURED IMAGES */
  .featured-pictures {
    flex-direction: column;
    gap: 20px;

    padding: 30px 15px;
    perspective: none;
  }

  .featured-pictures .picture {
    max-width: 100%;
    width: 100%;
    transform: none !important;
  }

  .featured-pictures .picture img {
    width: 100%;
    height: auto;
  }

  /* ABOUT */
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* CONTAINER */
  .container {
    padding: 40px 15px;
  }

  /* SHOWS */
  .shows {
    grid-template-columns: 1fr;
  }

  .show-card {
    padding: 20px;
  }

  /* CONTACT */
  .contact-form form {
    padding: 20px;
  }

  /* BUTTON */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* SOCIAL */
  .social-media {
    gap: 15px;
  }

  .social-media img {
    width: 40px;
    height: 40px;
  }
}