/* Reset */
body, h1, h2, p, a { margin: 0; padding: 0; font-family: Arial, sans-serif; }
body { line-height: 1.6; color: #333; }

/* Navbar */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar img { height: 60px; }
.navbar nav a {
  margin-left: 20px; text-decoration: none; color: #333; font-weight: bold;
}
.navbar nav a:hover { color: #007BFF; }

/* Hero */
.hero {
  background: url('img/concordTemple.webp') center/cover no-repeat;
  text-align: center; padding: 120px 20px;
}
.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }
.btn {
  display: inline-block; padding: 12px 24px; background: #007BFF; color: white;
  border-radius: 5px; text-decoration: none; font-weight: bold;
}
.btn:hover { background: #0056b3; }

/* Products */
.products { padding: 60px 20px; text-align: center; }
.products h2 { margin-bottom: 40px; font-size: 2rem; }
.grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.product-card {
  background: #f4f4f4; padding: 40px; border-radius: 10px;
}

/* About */
.about { padding: 60px 20px; text-align: center; background: #f9f9f9; }
.about h2 { margin-bottom: 20px; }

/* Footer */
footer {
  text-align: center; padding: 20px; background: #333; color: white;
}
/* Products Section */
.products {
  text-align: center;
  padding: 50px 20px;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease-in-out;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  font-weight: bold;
  margin-top: 10px;
}

.product-card p {
  color: #555;
  margin: 10px 0;
}

.product-card button {
  margin-top: 10px;
  padding: 10px 20px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #0056b3;
}
.about-hero {
  background: url('img/about-banner.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.about-content {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}


.contact-hero {
  background: url('img/contact-banner.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.contact-info {
  max-width: 700px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 20px;
}
