body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #333;
}

/* Hero */
.hero {
  background: #00aaff;
  color: #fff;
  padding: 100px 20px;
}

.hero .logo {
  margin-bottom: 30px;
}

.hero .logo img {
  max-width: 200px;
  height: auto;
}

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

.hero p {
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 40px 20px;
}

.about h2 {
  color: #00aaff;
  margin-bottom: 15px;
}

.about p {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* Gallery */
.gallery {
  padding: 50px 20px;
}

.gallery h2 {
  margin-bottom: 30px;
  color: #00aaff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close, .prev, .next {
  position: absolute;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.lightbox .close { top: 20px; right: 35px; }
.prev { top: 50%; left: 20px; transform: translateY(-50%); }
.next { top: 50%; right: 20px; transform: translateY(-50%); }

.prev:hover, .next:hover, .lightbox .close:hover { color: #00aaff; }

/* Footer */
.footer {
  background: #222;
  color: #fff;
  padding: 30px 20px;
  text-align: left;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-item h4 {
  color: #00aaff;
  margin-bottom: 15px;
}

.footer-item a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-item a:hover { color: #00aaff; }

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


.hero {
  position: relative;
  background: url('../images/bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero .logo,
.hero .hero-content {
  position: relative;
  z-index: 2;
}
