body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fdfaf6;
  color: #333;
}

.language-select {
  position: fixed;
  top: 10px;
  right: 10px;
}

.language-select button {
  background: #e3d3c2;
  border: none;
  padding: 6px 12px;
  margin: 0 3px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.hero {
  background: url("assets/images/photo_1.jpg") center/cover no-repeat;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.hero h1, .hero p {
  z-index: 1;
}

main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#scheduleList, #giftsList {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.schedule-item, .gift-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-item img, .gift-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

#forbiddenColors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
  position: relative;
}

.color-circle::after {
  content: attr(data-name);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75em;
  color: #444;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea, select, button {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  background: #e3d3c2;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  background: #e3d3c2;
  color: #333;
  border-top: 1px solid #ccc;
}