/* form.css*/

body {
    font-family: Arial, sans-serif;
    background: #FFF5F0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

h2 {
    text-align: center;
    color: #333;
}

form label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    resize: vertical;
}

button {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background-color: #555;
}

#my-form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}
/* ======= Responsive CSS for All Devices ======= */

/* Large Desktops (optional, usually 1200px+) */
@media (max-width: 1400px) {
  /* Example: reduce extra-wide spacing */
}

/* Medium Laptops & Desktops */
@media (max-width: 1024px) {
  .navbar .container {
    flex-direction: column;
    align-items: center;
  }

  .navbar h1 {
    font-size: 28px;
    margin: 10px 0;
  }

  nav a {
    margin: 8px;
    font-size: 16px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .navbar h1 {
    font-size: 24px;
  }

  .logo img {
    width: 60px;
    height: auto;
    margin: 0 auto;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 20px 10px;
  }

  .section h2 {
    font-size: 22px;
    text-align: center;
  }

  .section p {
    font-size: 14px;
    text-align: justify;
  }

  nav a {
    display: block;
    text-align: center;
    margin: 10px 0;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .hero h2 {
    font-size: 22px;
  }

  .hero p,
  .section p {
    font-size: 13px;
  }

  .navbar h1 {
    font-size: 20px;
  }

  nav a {
    font-size: 14px;
  }
}
 