body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ddd9d9;
  color: #fff;
  padding: 20px;
  text-align: center;
  height: 35vh; /* Make the header take up the full height of the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo img {
  width: 45%;
  height: 45%;
  display: block;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background-image: url("media/background-image.jpg"); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  text-align: center;
}

.overlay {
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Dark overlay for better text visibility */
  padding: 20px;
  border-radius: 10px;
}

h1 {
  font-size: 48px;
  margin: 0;
}

h2 {
  font-size: 36px;
  margin: 10px 0 20px 0;
}

.ayat-arabic {
  font-size: 32px;
  font-family: "Amiri", serif; /* Arabic font for Quranic verse */
  margin: 20px 0;
}

.ayat-urdu {
  font-size: 24px;
  font-family: "Noto Nastaliq Urdu", serif; /* Urdu font for translation */
  margin: 10px 0;
}

.inshallah {
  font-size: 28px;
  margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .ayat-arabic {
    font-size: 24px;
  }

  .ayat-urdu {
    font-size: 18px;
  }

  .inshallah {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  .ayat-arabic {
    font-size: 20px;
  }

  .ayat-urdu {
    font-size: 16px;
  }

  .inshallah {
    font-size: 18px;
  }
}
