/* Custom styles for Ryan and Maan Wedding */
body {
  background-color: #fbf7f2;
  color: #333;
  padding: 40px;
  text-align: center;
  font-family: 'Raleway', sans-serif;
}

h1 {
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  font-family: 'Dynalight', cursive;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

p {
  font-size: 18px;
}

.container {
  dislay: flex;
  flex-flow: column nowrap;
  width: 100%;
}

.container-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
}

.header {
  z-index: 9;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  background: #fbf7f2;
  border-bottom: solid 1px #f2ece5;
}

@media (min-width: 768px) {
  .header {
    height: 90px;
  }
}

.content {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .content {
    margin-top: 90px;
  }
}

.footer {
  margin-bottom: 40px;
}

.wishes-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  column-gap: 20px;
  /* Default 1 column */
  columns: 1;
}

/* Responsive column count */
@media (min-width: 640px) {
  .wishes-container {
    columns: 2;
  }
}

@media (min-width: 992px) {
  .wishes-container {
    columns: 2;
  }
}

@media (min-width: 1280px) {
  .wishes-container {
    columns: 3;
  }
}

.wish {
  background: #fff;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  margin-bottom: 16px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  box-sizing: border-box;
  width: 100%; /* full width inside column */
}

video {
  border-radius: 8px;
  margin-top: 10px;
}

.wish-message {
  display: block;
  text-align: center;
  font-size: 16px;
}

.wish-author {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}