/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #fff8e1; /* Soft light gold */
  color: #333;
  padding: 20px;
}

/* Header */
h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #c1272d; /* Deep red */
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  background-color: #1e90ff; /* Vibrant Barcelona blue */
  padding: 10px 0;
  margin-bottom: 20px;
  border-radius: 5px;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
}

nav ul li a:hover {
  background-color: #c1272d;
  border-radius: 3px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.bento-box {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  background-color: #ffffff; /* Clean white */
}

.bento-box:hover {
  transform: translateY(-5px);
}

.bento-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bento-box h2 {
  margin: 10px;
  font-size: 1.2em;
  color: #333;
}