/*=================================================
            LOSTCOMPASS STUDIOS
                STYLE.CSS
=================================================*/

/*=============== GOOGLE FONT ===============*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=============== RESET ===============*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0f1117;
  color: #ffffff;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section {
  padding: 80px 8%;
}

/*=============== CONTAINER ===============*/

.container {
  max-width: 1200px;
  margin: auto;
}

/*=============== NAVBAR ===============*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 17, 23, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar {
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 42px;
}

.logo span {
  font-size: 1.3rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #ddd;
  transition: .3s;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: #4da3ff;
}

.menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/*=============== BUTTONS ===============*/

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  transition: .3s;
  font-weight: 600;
}

.primary-btn {
  background: #4da3ff;
  color: #fff;
}

.primary-btn:hover {
  background: #3589e8;
}

.secondary-btn {
  border: 2px solid #4da3ff;
  color: #4da3ff;
  margin-left: 12px;
}

.secondary-btn:hover {
  background: #4da3ff;
  color: #fff;
}

/*=============== HERO ===============*/

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 100px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #4da3ff;
}

.hero-content p {
  color: #bfbfbf;
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

/*=============== SECTION TITLE ===============*/

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.section-title p {
  color: #a9a9a9;
  font-size: 1rem;
}

/*=============== ABOUT PREVIEW ===============*/

.about-preview {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.about-content p {
  color: #c7c7c7;
  margin-bottom: 30px;
}

/*=============== FEATURED GAMES ===============*/

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-card {
  background: #181b24;
  border-radius: 18px;
  overflow: hidden;
  transition: .35s;
  border: 1px solid rgba(255, 255, 255, .06);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(77, 163, 255, .18);
}

.game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.game-content {
  padding: 25px;
}

.game-content h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.game-content p {
  color: #bdbdbd;
  margin-bottom: 22px;
}

/*=============== TEAM PREVIEW ===============*/

.team-preview {
  display: flex;
  align-items: center;
  gap: 60px;
}

.team-content {
  flex: 1;
}

.team-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.team-content p {
  color: #c5c5c5;
  margin-bottom: 30px;
}

.team-image {
  flex: 1;
}

.team-image img {
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

#founderImage{
  width: 320px;
  height: 300px;
}

/*=============== CAREERS ===============*/

.careers-preview {
  text-align: center;
  background: #181b24;
  border-radius: 20px;
}

.careers-preview h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.careers-preview p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #c3c3c3;
}

/*=============== CONTACT ===============*/

.contact-preview {
  text-align: center;
}

.contact-preview h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.contact-preview p {
  color: #bdbdbd;
  max-width: 700px;
  margin: 0 auto 35px;
}

/*=============== FOOTER ===============*/

footer {
  background: #11141b;
  padding: 60px 8% 25px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-content {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.footer-content img {
  width: 70px;
  margin: 0 auto 20px;
}

.footer-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-content p {
  color: #bdbdbd;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: #181b24;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: .3s;
}

.social-links a:hover {
  background: #4da3ff;
  color: #fff;
  transform: translateY(-5px);
}

.copyright {
  margin-top: 35px;
  text-align: center;
  color: #8f8f8f;
  font-size: .9rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
}

/*=============== SCROLLBAR ===============*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #11141b;
}

::-webkit-scrollbar-thumb {
  background: #4da3ff;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3589e8;
}

/*=============== RESPONSIVE ===============*/

@media(max-width:992px) {
  
  .hero,
  .about-preview,
  .team-preview {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content p,
  .about-content p,
  .team-content p {
    max-width: 100%;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-content,
  .team-content {
    order: 2;
  }
  
  .about-image,
  .team-image {
    order: 1;
  }
  
}

@media(max-width:768px) {
  
  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #11141b;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 25px 0;
    gap: 20px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-btn {
    display: block;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-content h2,
  .team-content h2,
  .careers-preview h2,
  .contact-preview h2 {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .secondary-btn {
    margin-left: 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 70px 6%;
  }
  
}

@media(max-width:480px) {
  
  .logo span {
    font-size: 1rem;
  }
  
  .logo img {
    width: 36px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: .95rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .game-content {
    padding: 20px;
  }
  
  footer {
    padding: 50px 6% 20px;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-links a {
    width: 42px;
    height: 42px;
  }
  
}