/* General */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fefefe;
  color: #000000;
}

/* Header */
header {
  background-color: white;
  padding: 20px;
  color: black;
  text-align: center;
}

.logo-image {
  max-width: 200px;
  border-radius: 12px;
}

.contact-info {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

/* Services section */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.service-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 280px;
  text-align: center;
}

/* Gallery section */
.gallery {
  padding: 20px;
}

.gallery h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  text-align: center;
  max-width: 300px;
}

.gallery-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.gallery-text {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

/* Order section and all forms */
#order-section {
  background-color: #d0e0e3;
  padding: 20px;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#order-section h2,
#order-section h3 {
  margin: 10px 0;
  color: #333;
}

/* Uniform input fields */
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form input[type="password"] {
  width: 90%;
  max-width: 250px;
  font-size: 1rem;
  padding: 8px 10px;
  margin: 6px 0;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Submit button */
.checkout-form button[type="submit"] {
  background-color: #388e3c;
  color: white;
  font-size: 1rem;
  padding: 6px 0;
  width: 90%;
  max-width: 250px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.checkout-form button[type="submit"]:hover {
  background-color: #2e7d32;
}

/* Auth links */
.auth-options {
  margin: 20px 0 10px;
  text-align: center;
}

.auth-options a {
  display: inline-block;
  margin: 0 10px;
  padding: 6px 14px;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  background-color: #4CAF50;
  transition: background-color 0.3s ease;
}

.auth-options a:hover {
  background-color: #388e3c;
}

textarea {
  width: 90%;
  max-width: 250px;
  font-size: 1rem;
  padding: 8px 10px;
  margin: 6px 0;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .services {
    flex-direction: column;
    padding: 10px;
  }

  .service-box {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
  }

  .gallery-grid {
    flex-direction: column;
    align-items: center;
  }

  .checkout-form input {
    width: 100%;
  }
}
