* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #e1e1e1;
  color: white;
  line-height: 1.6;
}

/* GLOBAL CONTAINER */
.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER (FULL WIDTH) */
header {
  width: 100%;
  padding: 20px 0;
  background: #1c0633;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin: 0 15px;
  color: #aaa;
  text-decoration: none;
}

nav a.active {
  color: white;
}

/* HERO */
.hero {
  text-align: center;
  height: 600px;
  padding: 280px 20px 80px;
  background: url("../assets/images/bg-image.jpg") center/cover no-repeat;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 60px;
}

.hero p {
  margin: 10px 0 20px;
  opacity: 0.8;
}

.play img {
  width: 160px;
}

/* INFO SECTION */
.info {
  background: #ffffff;
  color: #333;
  position: relative;
}

.info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
}

.info-left {
  flex: 1;
  font-size: 22px;
}

.info-right {
  flex: 1;
}

.info-right ul {
  margin: 50px 0;
  list-style: none;
}

.info-right li {
  margin: 8px 0;
}

/* DOG */
.dog {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 60%;
}

/* SCREENS */
.screens {
  background: #1c0633;
  text-align: center;
  padding: 80px 0;
}

.phones {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.phones img {
  width: 150px;
  height: 300px;
  margin: 0 10px;
  border-radius: 20px;
}

/* FOLLOW */
.follow {
  background: #f3f3f3;
  color: #333;
  text-align: center;
  align-items: center;
  position: relative;
}

.follow-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

/* CAT */
.cat {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 60%;
}

/* SOCIAL */
.socials div {
  width: 40px;
  height: 40px;
  background: #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.socials i {
  color: #333;
  font-size: 18px;
}

/* FOOTER (FULL WIDTH) */
footer {
  background: #1c0633;
  text-align: center;
  padding: 40px 20px;
}

.links a {
  margin: 0px 20px;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav a{
    font-size: 12px;
  }

  .container {
    padding: 0 10px;
  }

  .hero h2 {
    font-size: 60px;
  }

  .hero-content {
    padding-top: 280px;
  }

  .info-inner {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
  }

  .info-right ul {
    margin: 0 0;
  }

  .dog {
    position: static;
    margin-top: 20px;
  }

  .screens{
    padding: 30px 0px;
  }

  .phones img {
    margin: 0px;
  }

  .follow-inner {
    padding: 0;
  }

  .cat {
    position: static;

    width: 200px;
  }

  .follow-inner {
    justify-content: end;
  }

  nav a {
    margin: 0 8px;
  }
}
