
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #111;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d32f2f; /* RED */
  padding: 15px 40px;
}

nav h2 {
  color: white;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* HERO SECTION */
.hero {
  height: 70vh;
  background: linear-gradient(
              rgba(211,47,47,0.75),
              rgba(183,28,28,0.75)
            ),
            url('../images/fb-banner.png') center/cover;

  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero p {
  font-size: 20px;
}

/* BUTTONS */
.btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffffff;
  color: #d32f2f;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #f2f2f2;
}

/* SERVICES */
.services {
  display: flex;
  padding: 50px;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
  border-top: 5px solid #d32f2f; /* RED ACCENT */
}

.card:hover {
  transform: translateY(-10px);
}

/* FORM */
.form {
  max-width: 400px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
}

.form input,
.form textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 12px;
  background: #d32f2f;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

button:hover {
  background: #b71c1c;
}

/* ABOUT SECTION */
.about {
  display: flex;
  align-items: center;
  padding: 50px;
  gap: 20px;
}

.about img {
  width: 200px;
  border-radius: 10px;
}

/* LOGO */
.logo {
  height: 50px;
}

