* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Navigation Bar */
header {
  background-color: #0d165a;
  color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

nav .logo h1 {
  font-size: 1.8rem;
}

nav .nav-links {
  list-style: none; /* <--- Fjerner punkter */
  display: flex;
}

nav .nav-links li {
  margin-left: 20px;
}

nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

nav .burger {
  display: none;
  cursor: pointer;
}

nav .burger .line {
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 5px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url("./images/slagord.jpg");
  background-size: cover;
  background-position: center;
  color: #f8f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero .hero-points p {
  line-height: 1.2 !important;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.cta-button {
  padding: 10px 20px;
  background-color: #9f0101;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

/* About Section */
.about {
  padding: 60px 0;
  background-color: #5990d8;
  text-align: center;
  margin-bottom: 60px;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.2rem;
  color: #353333;
}

.about ul,
.services ul {
  list-style: none; /* <--- Fjerner punkter */
  padding-left: 0;
  margin-left: 0;
  text-align: center;
}

.about li,
.services li {
  font-size: 1.1rem;
  color: #111;
}

/* Services Section */
.services {
  padding: 60px 0;
  background-color: #f7f7f7;
  text-align: center;
  margin-bottom: 0;
}

.services .container {
  max-width: auto;
  margin: 0 auto;
  background-image: url("./images/vindmøller.jpg");
  background-size: cover;
  background-position: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.service-card {
  background-color: rgba#fff; /* Beholder denne selv om verdien er rar (kan være placeholder) */
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 8px rgba 0, 0, 0, 1;
  transition: transform 0.3s ease;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 1.1rem;
  color: #111010;
}

.service-card:hover {
  transform: translateY(-15px);
}

/* Contact Us Section */
.contact {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
  margin-top: 60px;
}

.contact .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact input,
.contact textarea {
  width: 100%;
  max-width: 600px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact button {
  padding: 15px 30px;
  background-color: #7d0e04;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #7b0e04;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav .nav-links {
    display: none;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
  }

  nav .nav-links li {
    margin: 15px 0;
  }

  nav .burger {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .service-card {
    margin: 15px;
  }
}
