/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: "Poppins", Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.main-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 10px;
  gap: 2rem;
  background: #000;
}

.logo {
  width: 120px;
  margin-bottom: 10px;
}

.main-header h1 {
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 800;

  /* Gold gradient text */
  background: linear-gradient(
    120deg,
    #b8860b 0%,
    #ffd700 25%,
    #fff1a8 50%,
    #ffd700 75%,
    #b8860b 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Shine animation */
  animation: goldShine 4s linear infinite;
}

   /* ===== BRAND MARQUEE ===== */
.brand-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-color: aliceblue;
}

.brand-marquee h3 {
  display: inline-block;
  padding-left: 100%;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;

  /* Gold shine */
  background: linear-gradient(
    120deg,
    #000,
    #222,
    #555,
    #222,
    #000
  );
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation:
    marqueeScroll 18s linear infinite,
    goldShine 4s linear infinite;
}

/* Scroll animation */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Shine animation (already used before) */
@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


/* ===== NAVBAR ===== */
.navbar {
  background: #1b1b1b;
  text-align: center;
  padding: 14px 0;
  border-bottom: 1px solid #333;
}

.navbar a {
  color: #fff;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: gold;
  transition: 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  color: gold;
}
/* ===== NAVBAR ACTIVE (LUXURY) ===== */
.navbar a.active {
  color: gold;
}

/* Permanent gold underline for active link */
.navbar a.active::after {
  width: 100%;
}

/* Fancy glow underline */
.navbar a.active::after {
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}


/* ===== BUTTON (COMMON) ===== */
.btn {
  background: gold;
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  padding: 20px;
  text-align: center;
  color: #aaa;
}

.footer-line {
  font-size: 13px;
  line-height: 1.6;
}

.footer-gap {
  margin: 0 15px;
  color: #555;
}

.footer a,
.dev-name {
  color: gold;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

/* ===== SOCIAL FLOAT BUTTONS ===== */
.social-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn img {
  width: 30px;
}



/* ===== RESPONSIVE (COMMON ONLY) ===== */
@media (max-width: 650px) {
  .main-header h1 {
    font-size: 22px;
  }

  .navbar a {
    margin: 0 10px;
    font-size: 14px;
  }

  .footer-gap {
    display: none;
  }

  .footer-line{
        width: 80%;
    }
}

@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
