/* ===== General ===== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: black;
  color: white;
}

/* ===== Header ===== */
header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid white;
}

.logo-video {
  width: 200px; /* adjust as needed */
  display: block;
  margin: 0 auto; /* centers the video */
}

marquee {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.blink {
  animation: blink-animation 1s steps(1, start) infinite;
  color: white;
}

@keyframes blink-animation {
  50% { opacity: 0; }
}

/* ===== Sidebar ===== */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: #111;
  padding: 20px;
  box-sizing: border-box;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px; /* space under header if needed */
}

.sidebar-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.sidebar-nav a:hover {
  color: #3897f0;
}

/* ===== Main Content ===== */
#main {
  margin-left: 240px; /* leave space for sidebar */
  padding: 20px;
  max-width: 900px;
}

/* ===== Headings ===== */
h1, h2 {
  letter-spacing: 4px;
  color: white;
}

/* ===== Instagram Posts ===== */
.instagram-wrapper {
  display: flex;
  gap: 20px;            /* space between posts */
  justify-content: center; /* center horizontally */
  flex-wrap: wrap;      /* wrap if screen is narrow */
  margin-top: 20px;
}




