* {
  box-sizing: border-box;
}

.mc {
  color: #bd9570;
}

body {
  background-color: #f8f8f0;
  margin: 0;
  padding: 0;
  font-family: Pontano Sans, sans-serif;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  padding-bottom: 40px;
}
header .date {
  font-family: "EB Garamond", serif;
  font-size: 2em;
  color: #333;
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
}
header .location {
  font-family: "EB Garamond", serif;
  font-size: 1.5em;
  color: #555;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

h1 {
  font-family: "EB Garamond", serif;
  font-size: 3em;
  color: #bd9570;
  text-align: center;
  margin-top: 50px;
  font-weight: 500;
  font-style: italic;
  /*background: linear-gradient(to bottom, #d4af37, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
}

h2 {
  font-family: "EB Garamond", serif;
  font-size: 2.4em;
  color: #333;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}
h2:after {
  content: "";
  border-bottom: 2px solid #bd9570;
  position: absolute;
  width: 100%;
  top: calc(50% + 2px);
  transform: translateX(12px);
}

h3 {
  font-weight: 700;
  font-size: 20px;
  font-family: "EB Garamond", serif;
}

hr {
  border: none;
  border-top: 2px dotted #bd9570;
  margin: 40px 0;
}

a, a:visited, a:hover, a:active {
  color: #bd9570;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bd9570;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border-color: transparent;
  cursor: pointer;
  font-size: 1em;
}
.btn:hover {
  background-color: rgb(171.0526315789, 123.2057416268, 78.9473684211);
  color: #fff;
}

.row {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 600px) {
  .row:not(.mobile) {
    flex-direction: column;
    gap: 20px;
  }
  .row:not(.mobile) > * {
    width: 100% !important;
  }
}
.row.btns .col {
  display: flex;
  text-align: center;
  flex-direction: column;
}

.arrival .col.img {
  width: 33%;
}
.arrival .col.text {
  width: 66%;
}

.card {
  padding: 10px 20px;
  background-color: #bd9570;
  border-radius: 8px;
  color: #fff;
}
.card .title {
  margin-top: 0;
}

.badge {
  background-color: #bd9570;
  padding: 4px 12px;
  border-radius: 16px;
  color: #fff;
  font-size: 12px;
}

.d-day {
  margin-top: 20px;
}
.d-day .card {
  width: 50%;
}
.d-day i {
  font-size: 20px;
}
.d-day .details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.d-day a {
  color: #fff;
}

.pt {
  padding-top: 20px;
}

.song-request-form {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(51, 51, 51, 0.1);
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.song-request-form h2 {
  margin-top: 0;
}
.song-request-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  width: 400px;
  font-size: 18px;
}
.song-request-form label i {
  margin-right: 8px;
  color: #bd9570;
  font-size: 24px;
}
.song-request-form input[type=text] {
  width: 100%;
  padding: 10px;
  border: 1px solid #bd9570;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.messages .success {
  background-color: #a2c06e;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}

.table-container {
  overflow-x: auto;
  margin-top: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(51, 51, 51, 0.1);
  overflow: hidden;
}

tr:not(:last-of-type) td {
  border-bottom: 1px solid #bd9570;
}

th, td {
  padding: 1rem 1.25rem;
  text-align: left;
}

th {
  background: #bd9570;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tbody tr:hover {
  background: rgb(251.2454545455, 251.2454545455, 246.9545454545);
}

td {
  font-size: 1rem;
}

@media (max-width: 600px) {
  table {
    font-size: 0.9rem;
  }
  th, td {
    padding: 0.75rem 1rem;
  }
}/*# sourceMappingURL=style.css.map */