* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background-color: #0d0d0d;
  color: #f5f5f5;
}

/* Header / Banner */
header {
  position: relative;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

header img {
  max-width: 100%;
  height: auto;
  max-height: 320px;
  display: block;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff8c00, #ffd24a, #ff8c00, transparent);
  box-shadow: 0 0 16px 2px rgba(255, 153, 0, 0.6);
}

/* Main content */
main {
  position: relative;
  background:
    radial-gradient(circle at 12% -10%, rgba(255, 140, 0, 0.18), transparent 40%),
    radial-gradient(circle at 88% 105%, rgba(255, 210, 74, 0.12), transparent 45%),
    #0a0a0a;
}

/* Instagram section */
.instagram-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.instagram-section h2 {
  font-family: "Rajdhani", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.instagram-section p {
  color: #b3b3b3;
  margin-bottom: 2rem;
}

.instagram-section a {
  color: #ffb347;
  text-decoration: none;
  font-weight: bold;
}

.instagram-section a:hover {
  text-decoration: underline;
}

/* Instagram posts grid */
#instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

#instagram-feed .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

#instagram-feed iframe {
  width: 100% !important;
}

@media (max-width: 480px) {
  .instagram-section {
    padding: 2rem 0.75rem;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}
