

  @import url('https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@400;700&display=swap');

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

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('images/background-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.navbar-brand {
  font-family: "Stardos Stencil", system-ui;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
  transition: left 0.5s ease;
}

.navbar-brand:hover::before {
  left: 100%;
}

.navbar-brand:hover {
  color: #000;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 12px;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5), 
              0 0 30px rgba(255, 215, 0, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-brand:active {
  transform: scale(0.98) rotate(0deg);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

main {
  flex: 1 0 auto;
  padding: 20px;
}

footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* Movie card styles */
.movie-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.movie-card.expanded {
  background-color: #fff9e6;
}

@media screen and (max-width: 768px) {
  .navbar-brand {
    font-size: 1.5rem;
    padding: 6px 12px;
  }

  main {
    padding: 10px;
  }
}



