body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}

.hero {
  padding: 15px 0;
}

.hero .logo {
  width: 85vw;
  max-width: 600px;
  margin-bottom: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.about {
  padding: 20px 20px;
}

.about h2 {
  color: #FFD700;
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 26px;
}

.about .box {
  background: rgba(17, 17, 17, 0.85);
  border-radius: 10px;
  padding: 20px;
  margin: 15px auto;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.6;
}

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

.gallery h2 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 26px;
}

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

.gallery-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

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

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

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

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.business-card img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}

footer {
  background: #111;
  padding: 15px;
  font-size: 14px;
  color: #777;
}

/* Floating Buttons */
.float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 100;
  text-decoration: none;
}
.float img {
  width: 30px;
  height: 30px;
}
.float.whatsapp {
  right: 20px;
  background-color: #25D366;
  color: white;
}
.float.call {
  right: 85px;
  background-color: #FFD700;
  color: black;
}
