/* Custom CSS to hide unwanted sections and add customizations */

/* Hide The Digital Yes logo and Buy Now button */
.fixed.top-4.left-4 {
  display: none !important;
}

/* Hide language selector if visible */
[class*="language"],
[class*="locale"] {
  display: none !important;
}

/* Hide the "Extra: custom illustration" badge */
.absolute.-top-2.-right-2,
.absolute.top-0.right-0 {
  display: none !important;
}

/* Hide Dress Code Section */
section:has(h2:contains("Dress Code")),
section:has([class*="dressCode"]) {
  display: none !important;
}

/* Hide Gifts Section */
section:has(h2:contains("Gifts")),
section:has([class*="gifts"]),
section:has(p:contains("WEDDING REGISTRY")) {
  display: none !important;
}

/* Hide RSVP / Confirm Attendance Section */
section:has(h2:contains("Confirm your attendance")),
section:has(form),
section:has([class*="rsvp"]) {
  display: none !important;
}

/* Add map icon styling */
.venue-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #5c2018;
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-family: "Lora", serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px -3px rgba(92, 32, 24, 0.2);
}

.venue-map-link:hover {
  background-color: #4a1812;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px -3px rgba(92, 32, 24, 0.3);
}

.venue-map-link svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
