* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Poppins", sans-serif;
  background-color: #fdf7ef;
  color: #3b2f2f;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #0b284d 0%, #142c53 40%, #d4af37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.hero-content p {
  color: #d4af37;
  font-size: 1.3rem;
  margin: 15px 0 25px;
}
.cta-btn {
  background: #d4af37;
  color: #3b2f2f;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #fff;
  color: #0b284d;
  transform: scale(1.05);
}

/* === PORTFOLIO === */
.portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 5%;
}
.folder-card {
  background: #fff;
  border-radius: 16px;
  width: 260px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.folder-card:hover {
  transform: translateY(-10px);
}
.folder-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.folder-card h2 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #3b2f2f;
}
.view-btn {
  background: #d4af37;
  color: #3b2f2f;
  border: none;
  padding: 8px 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.view-btn:hover {
  background: #0b284d;
  color: #fff;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}
#closeBtn {
  position: absolute;
  top: 20px; right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.lightbox-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px;
}
.lightbox-content img {
  width: 250px;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s;
}
.lightbox-content img:hover {
  transform: scale(1.05);
}
.full-image-view {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.full-image-view img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}
#closeFullView {
  position: absolute;
  top: 25px; right: 40px;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
}
#closeFullView:hover {
  color: #d4af37;
}

/* === FOOTER === */
.site-footer {
  background: #0b284d;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 1rem;
}
.glow {
  color: #d4af37;
  position: relative;
}
/* ===== Floating Contact Buttons ===== */
.contact-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1200;
}

.contact-btn {
  width: 50px;
  height: 50px;
  background-color: #d4af37;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.contact-btn:hover {
  transform: scale(1.1);
  background-color: #b8922b;
}

.whatsapp-btn {
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #1ebd59;
}
