/* =========================
   GLOBAL BACKGROUND (NO WHITE)
========================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  overflow-x: hidden;
  background: #0b0b10;
}

/* glowing background layer 1 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #ff4d6d33, transparent 40%),
    radial-gradient(circle at 80% 30%, #4da3ff33, transparent 40%),
    radial-gradient(circle at 50% 80%, #7cff4d33, transparent 40%);
  z-index: -2;
}

/* moving glow layer */
body::after {
  content: "";
  position: fixed;
  inset: -50px;
  background: linear-gradient(120deg, #ff4d6d20, #4da3ff20, #7cff4d20);
  filter: blur(80px);
  animation: moveBG 10s infinite alternate ease-in-out;
  z-index: -1;
}

@keyframes moveBG {
  0% { transform: translateX(-50px) translateY(-30px) scale(1); }
  100% { transform: translateX(50px) translateY(30px) scale(1.2); }
}

/* =========================
   HEADER
========================= */
header {
  text-align: center;
  padding: 25px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

header h1 {
  margin: 0;
}

/* =========================
   LAYOUT
========================= */
.layout {
  display: flex;
  min-height: 100vh;
}

.left {
  flex: 3;
}

.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   GALLERY
========================= */
#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  padding: 20px;
}

.card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  padding: 10px;
  margin: 0;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  background: #111;
  padding: 20px;
  width: 340px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  border-radius: 10px;
}

#close {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
  font-size: 22px;
}

/* =========================
   BUTTONS
========================= */
button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

#want-btn {
  background: #333;
  color: white;
}

.wa {
  background: #25D366;
  color: white;
}

.email {
  background: #007bff;
  color: white;
}

/* =========================
   RIGHT SIDE TEXT
========================= */
.text {
  text-align: center;
}

.text h2 {
  font-size: 28px;
}

.text p {
  opacity: 0.7;
}
.form-container {
  margin: 30px auto;
  width: 95%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
iframe {
  width: 100%;
  min-height: 900px;
  border: none;
}