/* ======== Import Nunito Font ======== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

/* ======== Global Styles ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  background: radial-gradient(circle at left, #f9a01b -20%, #000 50%, #6abcff 150%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

/* ======== Header ======== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  color: white;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
}

header h1 {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

nav a:hover {
  color: #6abcff;
}

/* ======== Main Section ======== */
main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  flex-wrap: wrap;
}

.text-section {
  width: 50%;
}

.image-section {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* ======== Typography ======== */
h2 {
  font-size: 60px;
  color: #ffffff;
  text-shadow: 0 0 10px #1bd0f9, 0 0 20px #1bbaf9;
  letter-spacing: 10px;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  color: #f9d77e;
  text-shadow: 0 0 10px #f9a01b;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #bceeff;
}

/* ======== Button ======== */
button, .btn {
  margin-top: 20px;
  background: transparent;
  border: 2px solid #6abcff;
  color: #6abcff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

button:hover, .btn:hover {
  background: #6abcff;
  color: #000;
  box-shadow: 0 0 15px #6abcff;
}

/* ======== Contact Form ======== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

label {
  font-weight: bold;
  font-size: 16px;
}

input, textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid white;
  padding: 8px;
  color: white;
  font-size: 15px;
  outline: none;
}

textarea {
  resize: none;
  height: 100px;
}

/* ======== Footer ======== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #999;
}

/* ======== Responsive ======== */
@media (max-width: 900px) {
  header {
    padding: 20px 25px;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 14px;
  }

  main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    min-height: calc(100vh - 120px);
  }

  .text-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px; /* 15px gap between text and image */
  }

  h2 {
    font-size: 45px;
    letter-spacing: 6px;
  }
}


@media (max-width: 600px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
  }

  header h1 {
    font-size: 10px;
  }

  nav {
    gap: 15px;
  }

  nav a {
    font-size: 13px;
  }

  main {
    padding: 30px 15px;
  }

  h2 {
    font-size: 40px;
    letter-spacing: 4px;
  }

  h3 {
    font-size: 22px;
  }
}
