body {
  margin: 0;
  font-family: Open Sans;
  text-align: center;
  background: #fff8f5;
}
#welcome img {
  width: 30%;
  margin: 3px;
}
#welcome {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f5d7cf;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#welcome button {
  padding: 12px 25px;
  background: #c76d5e;
  color: white;
  border: none;
  font-size: 18px;
}

#mainContent {
  display: none;
}

.hero {
  padding: 80px 20px;
  background: #f5e6e0;
}

section {
  padding: 50px 20px;
}

.event {
  background: white;
  margin: 15px auto;
  padding: 15px;
  width: 80%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery img {
  width: 30%;
  margin: 5px;
}

.invite-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  background: #d9d9d9;
  border: none;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.invite-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}

.invite-btn:active {
  transform: translateY(0px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.icon {
  font-size: 18px;
}


footer {
  background: #f5e6e0;
  padding: 20px;
}
