/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: "Bebas Neue", sans-serif;

  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #333;
  text-align: center;
  padding: 20px;

  background-image: linear-gradient(
    to right bottom,
    #fbde99,
    #e4eaad,
    #d5f1c6,
    #d0f6de,
    #d8f8f0
  );
  /* height: 100dvh; */
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #348c64;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 7px 7px 0px 0px rgb(52 140 100);
}

h1 {
  /* font-size: 3rem; */
  font-size: clamp(1rem, 8vw, 3rem);
  color: #578b65;
}
img {
  max-width: 100%; /* Ensures the image is responsive */
  height: auto; /* Maintains the aspect ratio */
}
.logo {
  /* max-height: 600px; */
}
.palm {
  position: absolute;
  z-index: 100;
  top: 0;
  left: -1.5rem;
  transform: rotate(22deg);
}
.palm2 {
  position: absolute;
  z-index: 100;
  top: 0;
  right: -2.5rem;
  transform: rotate(-75deg);
}

.welcome {
  font-weight: 600;
  display: block;
}
/* header p {
  font-size: 1.2rem;
  color: #7f8c8d;
} */
.logo-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.invitation {
  margin: 10px 0;
  /* height: 100dvh; */
  min-height: 100vh;
}

.invitation h2 {
  font-size: 1.35rem;
  color: #34495e;
  border: 1px solid #34495e;
}

.invitation p {
  font-size: 1.1rem;
  margin: 12px 0;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #0a0a0a;
}

.invitation ul {
  list-style: none;
  padding: 0;
  margin-block: 1.5rem;
}

.invitation ul li {
  display: inline-block;
  margin: 10px 0;
  font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  border: 2px solid rgba(0, 98, 90, 0.3);
  padding: 6px;
}
.invitation ul li span {
  font-weight: 700;
  margin-right: 4px;
}

/* .sticky {
  position: fixed;
  top: 1rem;
  left: 40%;
 
  z-index: 100; } */
.btn {
  display: inline-block;
  padding: 10px 25px;
  /* background-color: #513c02; */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  transition: background-color 0.3s ease;

  /* left: 50%; */
}

/* CSS */
.button-85 {
  padding: 0.8em 2.5em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  /* background: #111; */
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #cfe910,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #cfe910
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #292626;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.dates {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-block: 1.75rem;
}
.day-wrap {
  display: flex;
  flex-direction: column;
  width: 6rem;
  height: 6rem;
  line-height: 1.1;
  padding: 4px;
  background: rgb(165, 224, 197);
  border-radius: 4px;
  box-shadow: 5px 5px rgba(0, 98, 90, 0.4), 10px 10px rgba(0, 98, 90, 0.3),
    15px 15px rgba(0, 98, 90, 0.2), 20px 20px rgba(0, 98, 90, 0.1),
    25px 25px rgba(0, 98, 90, 0.05);
}
.day {
  font-size: 3rem;
}
.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 1rem;
  flex-wrap: wrap;
}
.person {
  display: flex;
  flex-direction: column;
  /* justify-content: ; */
  align-items: center;
  gap: 0;
  box-shadow: inset -12px -8px 40px #46464620;
  padding: 4px;
}
.person p {
  margin: 0;
}
.person p:first-child {
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.person p:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
a {
  text-decoration: none;
  color: #333;
}
p.footer {
  color: #e6283b;
  border: 1px dashed red;
  padding: 2px;
  text-align: center;
}
/* Responsive Design */
@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }

  .invitation h2 {
    font-size: 1.25rem;
  }

  /* .invitation p,
  .invitation ul li {
    font-size: 0.9rem;
  } */
  /* .invitation ul li {
    font-size: 1.1rem;
  } */
  .btn {
    /* padding: 8px 16px; */
    font-size: 1rem;
  }
  .palm,
  .palm2 {
    height: 110px;
  }
}
