*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #0A192F;
  color: #FFD700;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0A192F;
  padding: 12px 24px;
  color: #FFD700;
  flex-wrap: wrap;
}
.logo {
  font-size: 22px;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}
.nav-links li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
}
.nav-links li a:hover {
  color:white;
}
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
  color:#FFD700;
}

/* Hero Banner */
.hero {
  height: 45vh;
  background: url('../images/bg-dark.png') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .overlay {
  background: rgba(0,0,0,0);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  color: #FFD700;
}
.hero h1 {
  font-size: 28px;
  margin-bottom: 8px;
}
.hero p {
  font-size: 15px;
}

/* Brand Collection */
.collections {
  text-align: center;
  padding: 15px 10px;
}
.collections h2 {
  font-size: 22px;
  margin-bottom: 18px;
}
.collection-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background-color: #0A192F;
  color:#FFD700;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Celebrity Showcase */
.celebrity-showcase {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 35px 15px;
  background: #0A192F;
}
.celebrity-showcase .card {
  background: #1E1E1E;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 280px;
  text-align: center;
}
.slideshow-container img,
.slideshow-container video {
  width: 100%;
  height: 250px;      /* uniform size */
  object-fit: cover;  /* crop to fit */
  border-radius: 8px;
  transition: opacity 0.5s ease-in-out;
}
.celebrity-showcase .card p {
  padding: 12px 10px;
  font-weight: 600;
  font-size: 15px;
}

/* About & Contact */
.about, .contact {
  padding: 25px 15px;
  text-align: center;
}
.about h2, .contact h2 {
  font-size: 27px;
  margin-bottom: 10px;
}
.about p, .contact p {
  max-width: 650px;
  margin: 0 auto 8px;
  line-height: 1.5;
  font-size: 17px;
}
.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Footer */
footer {
  background: #0A192F;
  color: #FFD700;
  padding: 15px;
  font-size: 16px;
  text-align: center;
}
footer .icon {
  width: 21px;
  vertical-align: middle;
  margin-right: 5px;
}
#about,#contact{
  background-color: #1E1E1E;

}
#inst{
  color: pink;
}
#inst1{
  color: red;
}

/* 🔁 Responsive Fixes */
@media (max-width: 768px) {
  .hero { height: 48vh; }
  .hero h1 { font-size: 16px; }
  .hero p { font-size: 13px; }
  .celebrity-showcase { padding: 25px 10px; }
  .celebrity-showcase .card { max-width: 90%; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0A192F;
    padding: 10px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  .collection-buttons { flex-direction: column; gap: 12px; }
}
