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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}


header {
  position: absolute;
  width: 100%;
  padding: 20px 50px;
  z-index: 10;
}

.logo img {
  height: 90px;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0, 0, 0, 0.6)),
              url('/assets/image-gen\ \(7\).png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}



/* Mobile */
@media (max-width: 768px) {
  .hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                      url('/assets//image-gen\ \(8\).png');
  }
}


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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 300;
}


.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary {
  background-color: #58743f;
  color: white;
}

.primary:hover {
  background-color: #3f572b;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.secondary:hover {
  background-color: white;
  color: #333;
}


.contact-strip {
  background-color: #58743f;
  color: white;
  text-align: center;
  padding: 15px;
  font-weight: 500;
}


footer {
  background-color: #1c1c1c;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}


@media(max-width: 768px){
  .hero-content h1 {
    font-size: 2rem;
  }

  header {
    padding: 20px;
  }
}

/* RAMADAN IFTAR SECTION */
.iftar-section {
  position: relative;
  height: 90vh;
  background: linear-gradient(rgba(8, 40, 5, 0.85), rgba(8, 40, 5, 0.85)),
              url('https://images.unsplash.com/photo-1584556812952-905ffd0f0c48');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 20px;
}

/* Content */
.iftar-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.iftar-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.iftar-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #1ebc59);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

/* Crescent Moon */
.moon {
  position: absolute;
  top: 60px;
  right: 80px;
  width: 80px;
  height: 80px;
  background: #fdd835;
  border-radius: 50%;
  box-shadow: -15px 0 0 10px #091c3f;
  z-index: 2;
}

/* Stars */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
  z-index: 1;
}
.mosque {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;
  background-color: #011404;
  clip-path: polygon(
    0% 100%, 0% 70%, 5% 65%, 10% 70%, 15% 60%, 20% 75%, 
    25% 65%, 30% 70%, 35% 60%, 40% 75%, 45% 65%, 
    50% 70%, 55% 60%, 60% 75%, 65% 65%, 70% 70%, 
    75% 60%, 80% 75%, 85% 65%, 90% 70%, 95% 65%, 
    100% 70%, 100% 100%
  );
  z-index: 2;
}


/* Responsive */
@media(max-width: 768px){
  .iftar-content h2 {
    font-size: 1.8rem;
  }

  .moon {
    width: 60px;
    height: 60px;
    top: 30px;
    right: 30px;
  }
}


/* LOGO SECTION */
.brand-logos {
  background: linear-gradient(135deg, #1f3d2b, #2f5d3a);
  padding: 40px 20px;
  text-align: center;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Rounded Logos */
.logos-container img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  padding: 10px;
  background: white;
  transition: 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Hover Effect */
.logos-container img:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .iftar-section {
    height: auto;
    padding: 80px 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 75vh;
  }

  .iftar-section {
    height: auto;
    padding: 80px 20px;
  }
}
