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

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

body {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background-image: url('assets/bg.jpg'); /* your image path */
  background-size: cover;         /* scales image to cover entire area */
  background-position: center;    /* centers the image */
  background-repeat: no-repeat;   /* no tiling */
  background-attachment: fixed;   /* optional: keeps image fixed on scroll */
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll; /* prevent scroll issues on mobile */
    background-size: cover;        /* still covers screen */
    background-position: center top; /* adjust position for mobile */
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 2em;
  color: #555;
  cursor: default;
}

.logo span {
  color: #7d2ae8;
}

.navigation {
  margin-left: -300px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.navigation a {
  font-size: 1.1em;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
}

.navigation a:hover,
.navigation a.active {
  color: #7d2ae8;
}

.btn-talk {
  color: #fff;
  text-decoration: none;
  padding: 8px 35px;
  background: #7d2ae8;
  border-radius: 10px;
  border: 2px solid #7d2ae8;
  font-weight: 500;
  transition: .3s;
  cursor: pointer;
}

.btn-talk:hover {
  color: #7d2ae8;
  background: transparent;
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('background.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 30px 100px;
  margin-top: 20px;
}

.content {
  max-width: 700px;
  color: inherit;
}

.content h2 {
  font-size: 3em;
}

.content h2 span {
  color: #7d2ae8;
}

.content h4 {
  font-size: 2em;
}

.content p {
  padding: 10px 0 40px 0;
}

.btn-group a {
  color: #fff;
  text-decoration: none;
  padding: 10px 40px;
  background: #7d2ae8;
  border-radius: 10px;
  border: 2px solid #7d2ae8;
  font-weight: 500;
  transition: .3s;
  margin-right: 10px;
}

.btn-group a:hover {
  color: #7d2ae8;
  background: transparent;
}

.social-icons {
  position: absolute;
  bottom: 50px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #7d2ae8;
  border-radius: 50%;
  margin-right: 22px;
  text-align: center;
  line-height: 35px;
  border: 1px solid #fff;
  outline: 2px solid #7d2ae8;
  transition: .3s;
}

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

.social-icons a i {
  color: #fff;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 20px;
  }

  .navigation {
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .home {
    padding: 80px 30px;
  }

  .content h2 {
    font-size: 2em;
  }

  .btn-group a {
    padding: 8px 20px;
  }
}
