/* styles.css */

body {
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.3); /* Optional soft tint */
  z-index: -1;
}


.header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #e0e0e0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #800000;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.services, .about, .contact {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.services h2, .about h2, .contact h1 {
  margin-bottom: 1rem;
}

.services ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  width: fit-content;
  padding: 0.75rem 1.5rem;
  background-color: #800000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer {
  background-color: #ffffff;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
  margin-top: 4rem;
}
