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

body {
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO SECTION */

.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  padding: 60px 20px;
  color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 22px;
  color: #dbeafe;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.whatsapp {
  background: #16a34a;
}

/* SECTIONS */

section {
  padding: 70px 20px;
}

section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 35px;
  color: #0f172a;
}

/* ABOUT */

.about p {
  text-align: center;
  max-width: 850px;
  margin: 15px auto;
  font-size: 18px;
}

/* SERVICES */

.services {
  background: white;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: #f8fafc;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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

.card h3 {
  margin-bottom: 15px;
  color: #1e3a8a;
}

/* LOCATION */

.location p {
  text-align: center;
  font-size: 20px;
}

/* CONTACT */

.contact {
  background: #0f172a;
  color: white;
  text-align: center;
}

.contact h2 {
  color: white;
}

.contact p {
  font-size: 20px;
  margin: 15px 0;
}

/* POSTER GALLERY */

.gallery {
  background: white;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.poster-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.poster-grid img:hover {
  transform: scale(1.02);
}

/* FOOTER */

footer {
  background: #020617;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 16px;
}
.map-container {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.map-container iframe {
  display: block;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

  .hero {
    padding: 40px 20px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-buttons {
    justify-content: center;
  }

  section h2 {
    font-size: 30px;
  }

  .contact p,
  .about p,
  .location p {
    font-size: 17px;
  }

}

