@charset "UTF-8";
html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: sans-serif;
  color: #333;
  background-color: #f9f9f7;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
}

.wed-column-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.wed-responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.placeholder-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  text-align: center;
  background-color: #f9f9f7;
  font-family: sans-serif;
  color: #333;
}

.placeholder-message {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.placeholder-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 80%;
  line-height: 1.6;
}

@keyframes blink {
  50% {
    color: transparent;
  }
}
.ellipsis {
  animation: 1s blink infinite;
}
.ellipsis:nth-child(2) {
  animation-delay: 250ms;
}
.ellipsis:nth-child(3) {
  animation-delay: 500ms;
}

@keyframes ellipsis {
  0% {
    width: 0;
  }
  25% {
    width: 0.5em;
  }
  50% {
    width: 1em;
  }
  75% {
    width: 1.5em;
  }
  100% {
    width: 0;
  }
}
@media (max-width: 768px) {
  .placeholder-message {
    font-size: 2rem;
  }
  .placeholder-description {
    font-size: 1rem;
  }
}
.bee {
  position: fixed;
  width: 48px;
  height: 48px;
  pointer-events: none;
  z-index: 9999;
  image-rendering: pixelated;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg class='body'%3E%3Crect x='4' y='4' width='8' height='8' fill='%23FDB832'/%3E%3Crect x='6' y='3' width='4' height='1' fill='%23FDB832'/%3E%3Crect x='6' y='12' width='4' height='1' fill='%23FDB832'/%3E%3Crect x='4' y='6' width='8' height='4' fill='%23000000'/%3E%3Crect x='5' y='4' width='2' height='2' fill='%23000000'/%3E%3Crect x='9' y='4' width='2' height='2' fill='%23000000'/%3E%3C/g%3E%3Crect x='12' y='4' width='3' height='4' fill='%23666666' class='wing-right'/%3E%3Crect x='1' y='4' width='3' height='4' fill='%23666666' class='wing-left'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

@keyframes flapLeft {
  0%, 100% {
    transform: translateX(0) rotate(-10deg);
  }
  50% {
    transform: translateX(-2px) rotate(-30deg);
  }
}
@keyframes flapRight {
  0%, 100% {
    transform: translateX(0) rotate(10deg);
  }
  50% {
    transform: translateX(2px) rotate(30deg);
  }
}
@keyframes idleHover {
  0%, 100% {
    transform: translate(0, 0) rotate(var(--rotation));
  }
  25% {
    transform: translate(1px, 1px) rotate(var(--rotation));
  }
  50% {
    transform: translate(0, 2px) rotate(var(--rotation));
  }
  75% {
    transform: translate(-1px, 1px) rotate(var(--rotation));
  }
}
@keyframes flyingHover {
  0%, 100% {
    transform: translate(0, 0) rotate(var(--rotation));
  }
  50% {
    transform: translate(0, 3px) rotate(var(--rotation));
  }
}
.bee .wing-left {
  animation: flapLeft 1s infinite ease-in-out;
}

.bee .wing-right {
  animation: flapRight 1s infinite ease-in-out;
}

.bee.flying .wing-left {
  animation: flapLeft 0.2s infinite ease-in-out;
}

.bee.flying .wing-right {
  animation: flapRight 0.2s infinite ease-in-out;
}

.bee {
  animation: idleHover 3s infinite ease-in-out;
}

.bee.flying {
  animation: flyingHover 0.3s infinite ease-in-out;
}

.beehive {
  position: fixed;
  width: 64px;
  height: 64px;
  top: 20px;
  right: 20px;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M8 20h16v4H8z' fill='%23D4A550'/%3E%3Cpath d='M6 16h20v4H6z' fill='%23D4A550'/%3E%3Cpath d='M8 12h16v4H8z' fill='%23D4A550'/%3E%3Cpath d='M10 8h12v4H10z' fill='%23D4A550'/%3E%3Cpath d='M12 6h8v2h-8z' fill='%23D4A550'/%3E%3Ccircle cx='16' cy='16' r='2' fill='%23222222'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.wed-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #333;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.wed-btn:hover,
.wed-btn:focus {
  color: #fff;
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wed-btn-primary {
  background-color: #333;
  color: #fff;
  border: none;
}

.wed-btn-primary:hover,
.wed-btn-primary:focus {
  background-color: #000;
}

.wed-btn-full {
  width: 100%;
  text-align: center;
}

.wed-btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.wed-btn-lg {
  padding: 12px 24px;
  font-size: 1rem;
}

.wed-btn-underline {
  border: none;
  background: none;
  padding: 10px 0;
}

.wed-btn-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #333;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.wed-btn-underline:hover::after,
.wed-btn-underline:focus::after {
  transform: scaleX(1);
}

.wed-btn:disabled,
.wed-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.wed-contact-section {
  margin-top: 1.5rem;
  padding: 1rem 0;
}

.wed-contact-section h3 {
  font-size: 1.3em;
  margin-bottom: 0.5rem;
  color: #444;
}

.wed-contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.wed-contact-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  min-width: 200px;
  flex: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wed-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wed-contact-name {
  display: block;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 0.5rem;
  color: #333;
}

.wed-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wed-contact-phone,
.wed-contact-email {
  display: block;
  color: #666;
  font-size: 1em;
}

.wed-contact-email {
  word-break: break-word;
}

@media (max-width: 600px) {
  .wed-contact-cards {
    flex-direction: column;
  }
}
.wed-faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.wed-faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.wed-faq-item.active {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.wed-faq-question {
  font-size: 1.1rem;
  color: #333333;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
  min-height: 60px;
  box-sizing: border-box;
  padding-bottom: 5px;
}

.wed-faq-question:hover {
  background-color: #f9f9f9;
}

.wed-faq-item.active .wed-faq-question {
  border-bottom: 1px solid #f0f0f0;
}

.wed-faq-question::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: #9e7676;
  transition: transform 0.3s ease;
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
}

.wed-faq-item.active .wed-faq-question::after {
  content: "−";
}

.wed-faq-item.active .wed-faq-question::after {
  content: "−";
}

.wed-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.wed-faq-item.active .wed-faq-answer {
  max-height: 2000px;
  padding: 1.5rem;
}

.wed-faq-answer p:first-child {
  margin-top: 0;
}

.wed-faq-answer p:last-child {
  margin-bottom: 0;
}

.wed-faq-answer a {
  color: #9e7676;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.wed-faq-answer a:hover {
  color: #5a3535;
}

@media (max-width: 768px) {
  .wed-faq-question {
    font-size: 1rem;
    padding: 1rem 2.5rem 1rem 1rem;
  }
  .wed-faq-question::after {
    right: 1rem;
    width: 12px;
    height: 12px;
  }
  .wed-faq-item.active .wed-faq-answer {
    padding: 1rem;
  }
}
.wedding-nav {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}

.wedding-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.wedding-nav li {
  margin: 0.5rem;
}

.wedding-nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.wedding-nav a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #333;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.wedding-nav a:hover,
.wedding-nav a:focus,
.wedding-nav a.active {
  color: #000;
}

.wedding-nav a:hover::after,
.wedding-nav a:focus::after,
.wedding-nav a.active::after {
  transform: scaleX(1);
}

.wedding-nav a.active {
  font-weight: 600;
}

.wedding-header {
  text-align: center;
  padding: 2rem 0;
  position: relative;
  font-family: "Times New Roman", serif;
}

.wedding-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.eloquent-hr {
  display: block;
  background: #bfc1c3;
  border: 0;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0;
}

.wed-input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #333;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.wed-input:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wed-input-sm {
  padding: 8px 10px;
  font-size: 0.8rem;
}

.wed-input-lg {
  padding: 12px 14px;
  font-size: 1rem;
}

.wed-input-upper {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wed-input-underline {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 10px 0;
  background-color: transparent;
}

.wed-input-underline:focus {
  border-bottom-color: #333;
  box-shadow: none;
}

.wed-input-group {
  position: relative;
  margin-bottom: 1rem;
}

.wed-input-group label {
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #666;
}

.wed-input::placeholder {
  color: #999;
  font-size: 0.9rem;
  font-style: italic;
}

.wed-input.error {
  border-color: #dc3545;
  border-width: 2px;
  background-color: #fff8f8;
}

.wed-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

.wed-input-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 500;
  background-color: #ffeeee;
  padding: 6px 10px;
  border-radius: 4px;
  border-left: 3px solid #dc3545;
}

.wed-input:disabled {
  background-color: #f9f9f9;
  cursor: not-allowed;
  opacity: 0.7;
}

.wed-input:read-only {
  background-color: #f9f9f9;
  cursor: default;
}

.wed-figure {
  margin: 0;
  display: inline-block;
  width: 100%;
}

.wed-caption {
  text-align: center;
  padding: 0.5rem 0;
  color: #666;
  font-style: italic;
  font-size: 0.9em;
  margin-top: 0.5rem;
}

.wed-invitation-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: radial-gradient(circle at 5% 5%, rgba(255, 221, 60, 0.05) 0%, transparent 50%), radial-gradient(circle at 95% 95%, rgba(255, 221, 60, 0.05) 0%, transparent 50%);
}

.wed-invitation-card::before,
.wed-invitation-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: 0;
  left: 0;
  z-index: -1;
}

.wed-invitation-card::before {
  transform: rotate(-1deg);
  border-color: rgba(242, 184, 53, 0.2);
}

.wed-invitation-card::after {
  transform: rotate(1deg);
}

.wed-invitation-content {
  line-height: 1.8;
  color: #333;
  position: relative;
  padding: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 2H17L22 12L17 22H7L2 12L7 2Z' fill='none' stroke='rgba(242, 184, 53, 0.15)' stroke-width='1'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 2H17L22 12L17 22H7L2 12L7 2Z' fill='none' stroke='rgba(242, 184, 53, 0.15)' stroke-width='1'/%3E%3C/svg%3E");
  background-position: top 5px left 5px, bottom 5px right 5px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}

.wed-invitation-parents {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  font-size: 1.1em;
  position: relative;
}

.wed-invitation-and {
  margin: 0.3rem 0;
  font-size: 1.8em;
  color: #444;
  font-family: "Playfair Display", serif, sans-serif;
  position: relative;
  font-weight: 600;
}

.wed-invitation-request {
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1.1em;
}

.wed-invitation-names {
  font-size: 1.8em;
  font-weight: bold;
  margin: 1.2rem 0;
  color: #222;
  font-family: "Playfair Display", serif, sans-serif;
}

.wed-invitation-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-top: 1.2rem;
  margin-top: 0.5rem;
}

.wed-invitation-venue,
.wed-invitation-date,
.wed-invitation-reception {
  font-size: 1.1em;
}

.wed-invitation-date {
  font-weight: 600;
  color: #444;
  position: relative;
}

.wed-invitation-content::before,
.wed-invitation-content::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg class='body'%3E%3Crect x='4' y='4' width='8' height='8' fill='%23FDB832' stroke='%23333' stroke-width='0.2'/%3E%3Crect x='6' y='3' width='4' height='1' fill='%23FDB832' stroke='%23333' stroke-width='0.2'/%3E%3Crect x='6' y='12' width='4' height='1' fill='%23FDB832' stroke='%23333' stroke-width='0.2'/%3E%3Crect x='4' y='6' width='8' height='4' fill='%23000000' stroke='%23333' stroke-width='0.15'/%3E%3Crect x='5' y='4' width='2' height='2' fill='%23000000' stroke='%23333' stroke-width='0.15'/%3E%3Crect x='9' y='4' width='2' height='2' fill='%23000000' stroke='%23333' stroke-width='0.15'/%3E%3C/g%3E%3Crect x='12' y='4' width='3' height='4' fill='%23666666' stroke='%23333' stroke-width='0.2' class='wing-right'/%3E%3Crect x='1' y='4' width='3' height='4' fill='%23666666' stroke='%23333' stroke-width='0.2' class='wing-left'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  opacity: 0.7;
}

.wed-invitation-content::before {
  top: -20px;
}

.wed-invitation-content::after {
  bottom: -20px;
}

.wed-invitation-content::before,
.wed-invitation-content::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='30' viewBox='0 0 190 30'%3E%3Cline x1='10' y1='15' x2='75' y2='15' stroke='%23F2B835' stroke-width='1' stroke-dasharray='1,3' /%3E%3Cline x1='115' y1='15' x2='180' y2='15' stroke='%23F2B835' stroke-width='1' stroke-dasharray='1,3' /%3E%3Cg transform='translate(85, 7)'%3E%3Cg class='body'%3E%3Crect x='4' y='4' width='8' height='8' fill='%23FDB832' stroke='%23333' stroke-width='0.2'/%3E%3Crect x='6' y='3' width='4' height='1' fill='%23FDB832' stroke='%23333' stroke-width='0.2'/%3E%3Crect x='6' y='12' width='4' height='1' fill='%23FDB832' stroke='%23333' stroke-width='0.2'/%3E%3Crect x='4' y='6' width='8' height='4' fill='%23000000' stroke='%23333' stroke-width='0.15'/%3E%3Crect x='5' y='4' width='2' height='2' fill='%23000000' stroke='%23333' stroke-width='0.15'/%3E%3Crect x='9' y='4' width='2' height='2' fill='%23000000' stroke='%23333' stroke-width='0.15'/%3E%3C/g%3E%3Crect x='12' y='4' width='3' height='4' fill='%23666666' stroke='%23333' stroke-width='0.2' class='wing-right'/%3E%3Crect x='1' y='4' width='3' height='4' fill='%23666666' stroke='%23333' stroke-width='0.2' class='wing-left'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
}

.wed-invitation-content {
  padding: 2rem 0.5rem;
  margin: 1.5rem 0;
}

.wed-map {
  margin: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.wed-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.wed-radio-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.wed-radio-input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #666;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 0.75rem;
  position: relative;
  cursor: pointer;
  background-color: white;
}

.wed-radio-input:checked {
  border-color: #666;
}

.wed-radio-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #666;
  border-radius: 50%;
}

.wed-radio-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.2);
}

.wed-radio-label {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  background-color: white;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  width: 100%;
}

.wed-radio-error .wed-radio-input {
  border-color: #dc3545;
}

.wed-radio-error .wed-radio-input:checked::after {
  background-color: #dc3545;
}

.wed-radio-error .wed-radio-label {
  color: #dc3545;
  border-color: #dc3545;
}

.wed-textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #333;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.5;
  box-sizing: border-box;
  max-width: 100%;
  margin-bottom: 8px;
}
.wed-textarea:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.wed-textarea::placeholder {
  color: #999;
  font-size: 0.9rem;
  font-style: italic;
}
.wed-textarea.error {
  border-color: #dc3545;
}
.wed-textarea.error:focus {
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
}
.wed-textarea:disabled {
  background-color: #f9f9f9;
  cursor: not-allowed;
  opacity: 0.7;
}
.wed-textarea:read-only {
  background-color: #f9f9f9;
  cursor: default;
}

.wed-textarea-sm {
  padding: 8px 10px;
  font-size: 0.8rem;
  min-height: 80px;
}

.wed-textarea-lg {
  padding: 12px 14px;
  font-size: 1rem;
  min-height: 150px;
}

.wed-textarea-underline {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 10px 0;
  background-color: transparent;
}
.wed-textarea-underline:focus {
  border-bottom-color: #333;
  box-shadow: none;
}

#dietary-char-counter {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  padding-right: 4px;
}

.wed-char-counter-warning {
  color: #f39c12;
}

.wed-char-counter-danger {
  color: #e74c3c;
}

.wed-warning-panel {
  background-color: #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wed-warning-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.wed-warning-icon svg {
  width: 100%;
  height: 100%;
  fill: #6b7280;
}

.wed-warning-content {
  flex-grow: 1;
}

.wed-warning-content h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.wed-warning-content p {
  margin: 0;
}

@media (max-width: 768px) {
  .wed-warning-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .wed-warning-icon {
    margin-bottom: 0.5rem;
  }
}
.wed-hotel-category {
  margin-top: 2rem;
  width: 100%;
}

.wed-hotel-category h3 {
  width: 100%;
  background-color: #f2f2f2;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  color: #333;
  border-left: 4px solid #333;
  font-size: 1.2rem;
}

.wed-hotel-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

.wed-hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wed-hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.wed-hotel-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.wed-hotel-header small {
  color: #c39b40;
  font-weight: normal;
  margin-left: 0.5rem;
}

.wed-hotel-features {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: #555;
}

.wed-hotel-features li {
  margin-bottom: 0.3rem;
}

.wed-hotel-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.wed-hotel-locations span {
  background-color: #eaeaea;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #555;
}

.wed-padding-sm {
  padding: 10px;
}

.wed-padding-md {
  padding: 20px;
}

.wed-padding-lg {
  padding: 40px;
}

.wed-padding-xl {
  padding: 60px;
}

/* Vertical padding classes */
.wed-padding-y-sm {
  padding-top: 5px;
  padding-bottom: 5px;
}

.wed-padding-y-md {
  padding-top: 20px;
  padding-bottom: 20px;
}

.wed-padding-y-lg {
  padding-top: 40px;
  padding-bottom: 40px;
}

.wed-padding-y-xl {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Horizontal padding classes */
.wed-padding-x-sm {
  padding-left: 10px;
  padding-right: 10px;
}

.wed-padding-x-md {
  padding-left: 20px;
  padding-right: 20px;
}

.wed-padding-x-lg {
  padding-left: 40px;
  padding-right: 40px;
}

.wed-padding-x-xl {
  padding-left: 60px;
  padding-right: 60px;
}

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

.wed-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.wed-column-text {
  flex: 1;
  min-width: 300px;
}

.wed-section {
  margin-bottom: 30px;
}

.wed-details {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-top: 20px;
}
.wed-details h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #444;
}
.wed-details ul {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
}
.wed-details li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.1em;
  line-height: 1.6;
}
.wed-details li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background-color: #666;
  border-radius: 50%;
}
.wed-details i {
  color: #666;
}

.wed-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2.5rem 0;
}

.wed-divider::before,
.wed-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.wed-divider-text {
  padding: 0 1.5rem;
  font-size: 1.4em;
  color: #666;
  letter-spacing: 3px;
}

/*# sourceMappingURL=main-c4950b9ba131d20268eb.css.map*/