/* General */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; line-height: 1.6; background: #f5f5f5; }

/* Navbar */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 50px; background: #111; color: #fff;
}
.navbar ul { list-style: none; display: flex; gap: 20px; }
.navbar a { color: #fff; text-decoration: none; font-weight: bold; }
.navbar a:hover { color: #ff3c3c; }

/* Hero */
.hero {
  display: flex; align-items: center; justify-content: space-between;
  padding: 50px; background: linear-gradient(135deg, #ff3c3c, #000);
  color: #fff; min-height: 90vh;
}
.hero-text { max-width: 50%; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { margin-bottom: 20px; }
.hero button {
  padding: 10px 20px; background: #fff; color: #000;
  border: none; border-radius: 5px; cursor: pointer;
}
.hero button:hover { background: #ff3c3c; color: #fff; }
.hero-img img { width: 400px; border-radius: 10px; }

/* Features */
.features { padding: 60px 20px; text-align: center; }
.feature-cards {
  display: flex; justify-content: center; gap: 20px; margin-top: 20px;
}
.card {
  background: #fff; padding: 20px; border-radius: 10px;
  width: 250px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery { padding: 60px 20px; text-align: center; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin-top: 20px;
}
.gallery-grid img {
  width: 100%; border-radius: 10px;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.05); }

/* Contact */
.contact { padding: 60px 20px; text-align: center; background: #111; color: #fff; }
.contact form { display: flex; flex-direction: column; gap: 15px; width: 300px; margin: auto; }
.contact input, .contact textarea {
  padding: 10px; border: none; border-radius: 5px;
}
.contact button {
  background: #ff3c3c; color: #fff; padding: 10px;
  border: none; border-radius: 5px; cursor: pointer;
}
.contact button:hover { background: #fff; color: #000; }

/* Footer */
footer { background: #000; color: #fff; padding: 20px; text-align: center; }
