*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
}

body {
  overflow-x: hidden;
  background: #000;
}

/* Layout */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url("assets/bg-image.webp") center/cover no-repeat;
  padding: 60px 10vw;
}

/* Header & Nav */
header {
  z-index: 10;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: auto;
  max-height: 50px;
}

.nav-links {
  display: flex;
  gap: 50px;
  list-style: none;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  text-decoration: underline;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  flex-wrap: wrap;
}

main>div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 2;
}

.content-main {
  max-width: 700px;
  padding: 100px 0;
}

.content-text {
  /* padding-top: 100px; */
}

.content-text h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
}

.content-text p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 20px;
}

.content-visual {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.character-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Footer */
.social-icons {
  display: flex;
  gap: 28px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: translateY(-4px);
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
  .container {
    padding: 50px 8vw;
  }

  .content-text h1 {
    font-size: 54px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 40px 6vw;

  }
  .content-main{
    padding: 60px 0;
  }

  /* .content-text {
    padding-top: 50px;
  } */

  .content-text h1 {
    font-size: 48px;
  }

  .logo {
    max-height: 40px;
  }

}

@media (max-width: 968px) {
  main {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .content-text,
  .content-visual {
    flex: 1;
    min-width: auto;
  }

  .content-text {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 30px 5vw;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 120px 40px;
    gap: 30px;
    transition: right 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .content-text h1 {
    font-size: 36px;
  }
}