/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL FONTS */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.6;
}

/* CONTAINER CLASS */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* GOLD THEME COLORS (Reusable Classes) */
.text-gold { color: #f4c430; }
.bg-gold { background: #f4c430; }
.bg-black { background: #000; }

/* SECTION STYLING */
section {
  padding: 40px 20px;
}
section h2 {
  margin-bottom: 15px;
  color: #222;
}







/* ==========================
   FLOATING SOCIAL ICONS
========================== */

.floating-socials {
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Platform Colors */
.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, #fd5949 45%, 
    #d6249f 60%, #285AEB 90%);
}

.float-btn.youtube {
  background: #FF0000;
}

/* Hover Effect */
.float-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

/* ==========================
   SCROLL TO TOP BUTTON
========================== */

.scroll-top-float {
  position: fixed;
  right: 22px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border-radius: 8px;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

.scroll-top-float:hover {
  transform: translateY(-4px);
}

/* ==========================
   MOBILE OPTIMIZATION
========================== */
@media (max-width: 768px) {
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .floating-socials {
    right: 15px;
  }
}

