/* Navbar cleanup */
.navbar {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Dropdown menu: allow long text without breaking layout */
.navbar .dropdown-menu {
    max-width: 300px;
    white-space: normal;
}

/* Remove Bootstrap's default blue hover */
.navbar .dropdown-item:hover {
    background-color: #f2f2f2;
}

/* Logout button styled like a link */
.navbar-logout-btn {
    background




* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.container {
  position: relative;
  width: 50%;
  max-width: 300px;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.container:hover .overlay {
  opacity: 1;
}

.img_fe {
  border: 1px solid #ddd; /* Gray border */
  border-radius: 4px;  /* Rounded border */
  padding: 5px; /* Some padding */
  width: 150px; /* Set a small width */
}
/* Add a hover effect (blue shadow) */
img_fe:hover {
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

.vintage-card {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: #fafafa;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    max-width: 700px;
}

.vintage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.vintage-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.vintage-badge {
    background: #4a7;
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.vintage-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.vintage-notes h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.vintage-notes p {
    white-space: pre-line;
    line-height: 1.5;
}

body, html {
  height: 100%;
}
.bg {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
