/* styles.css - Responsive landing page using logo color scheme */
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background: #fff;
  box-sizing: border-box;
  /* Background image covers the entire screen, positioned at the top */
  background: linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url("images/bg.jpg") top center / cover no-repeat;
}
.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.background-img {
  position: absolute;
  object-fit: cover;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin: auto;
  text-align: center;
  border-radius: 32px;
  padding: 2.5rem 2.5rem 3rem 2.5rem;
  background-color: white;
  box-shadow: 0 8px 40px rgba(14, 107, 168, 0.1);
}
.logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 1.7rem;
  filter: drop-shadow(0 2px 12px #0e6ba855);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
h1 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 0.7rem 0;
  color: #0e6ba8;
  text-shadow: 0 2px 8px #f7b32b33;
}
h2 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.2rem 0;
  color: #222;
  letter-spacing: 0.5px;
}
#typewriter {
  color: #f7b32b;
  font-weight: 700;
  font-size: 1.5rem;
  border-right: 2px solid #f7b32b;
  padding-right: 2px;
  min-width: 120px;
  display: inline-block;
  font-family: "Fira Mono", "Consolas", monospace;
}
p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}
.insta-btn {
  background: linear-gradient(90deg, #f7b32b 0%, #0e6ba8 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(14, 107, 168, 0.1);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.5px;
}
.insta-btn:hover {
  background: linear-gradient(90deg, #0e6ba8 0%, #f7b32b 100%);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
  .overlay {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }
  .logo {
    width: 70px;
    height: 70px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2,
  #typewriter {
    font-size: 1rem;
  }
  .insta-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;700&family=Poppins:wght@400;600;700;800&display=swap");
