/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* BACKGROUND */
body {
  background: linear-gradient(135deg, #041702, #0b0f1a, #020617);
  color: #ffffff;
}

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: rgba(21, 39, 17, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
}

header h1 {
  color: #ff00f2;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 14px;
}

nav a:hover {
  color: #00ffd5;
}

/* HERO */
.hero {
  text-align: center;
  padding: 10vh 20px; /* Adjusted to fit more naturally */
}

.hero h2 {
  font-size: 2.8rem;
}

.hero p {
  max-width: 800px;
  margin: 20px auto;
  color: #dfe1cb;
  font-size: 1.2rem; /* Adjusted font size for readability */
}

/* BUTTON */
.btn {
  margin: 10px;
  padding: 12px 25px;
  border: none;
  background: #00ffd5;
  color: black;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* IMAGE SPACE */
.image-box {
  width: 80%; /* Adjusted for better responsiveness */
  height: auto;
  background: linear-gradient(45deg, #20371f, #374151);
  border-radius: 12px;
  margin: 25px auto; /* Centering the image box */
  overflow: hidden;
  padding: 10px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* SECTION */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 15px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: rgba(55, 31, 49, 0.8);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* SOCIALS */
.socials a {
  margin: 10px;
  display: inline-block;
  padding: 10px 20px;
  background: #1f2937;
  border-radius: 6px;
  text-decoration: none;
  color: white;
}

.socials a:hover {
  background: #00ffd5;
  color: rgb(0, 0, 0);
}

/* CONTRACT */
.ca-box {
  background: #371f2b;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  word-break: break-all;
}

.copy-btn {
  margin-top: 10px;
  padding: 8px 15px;
  background: #00ffd5;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #020617;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem; /* Adjusting text size for mobile */
  }

  .image-box {
    width: 90%; /* Adjust image box width for small screens */
  }

  .btn {
    width: 100%; /* Make the button full width on small screens */
  }
}

input, textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea {
  min-height: 150px;
}