/* Custom CSS for Leonie Sinnlich Website */
/* Note: Consider purging unused selectors in a build step to reduce size. */

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #c70036, #9d174d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scrollbar Hide */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Card Styles */
.card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #fce7f3;
  padding: 1.5rem;
}

.card-overlay {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #fce7f3;
  padding: 2rem;
}



/* Gallery Styles */
.gallery-button {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  will-change: transform;
}

.gallery-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3;
}

.gallery-image {
  width: 20rem;
  height: 24rem;
  object-fit: cover;
  transition: transform 0.3s ease-out;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (min-width: 768px) {
  .gallery-image {
    width: 24rem;
    height: 28rem;
  }
}

@media (min-width: 1024px) {
  .gallery-image {
    width: 24rem;
    height: 32rem;
  }
}

.gallery-button:hover .gallery-image {
  transform: scale(1.05) translateZ(0);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  will-change: opacity;
}

.gallery-button:hover .gallery-overlay {
  opacity: 1;
}







/* Typography */
.heading-large {
  font-size: 2.25rem;
  font-weight: 700;
}

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

.heading-medium {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .heading-medium {
    font-size: 2.25rem;
  }
}

.heading-small {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .heading-small {
    font-size: 1.875rem;
  }
}

.body-text {
  font-weight: 300;
  color: #334155;
  line-height: 1.75;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .body-text {
    font-size: 1.125rem;
    line-height: 1.75;
  }
}



/* Mobile Menu Styles */
.mobile-menu-gradient {
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 50%, #fce7f3 100%) !important;
  min-height: 100vh !important;
  min-width: 100vw !important;
  height: 100vh !important;
  width: 100vw !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

.mobile-menu-fallback {
  background-color: #fdf2f8 !important;
}



/* Mobile viewport fix for full coverage */
@supports (-webkit-touch-callout: none) {
  .mobile-menu-gradient {
    min-height: -webkit-fill-available !important;
    height: -webkit-fill-available !important;
  }
}

/* Ensure no gaps on any mobile device */
#navLinks {
  max-height: 100vh !important;
  max-width: 100vw !important;
  overflow: hidden !important;
}



/* Facts Table Styles */
.facts-table {
  width: 100%;
  border-collapse: collapse;
}

.facts-table tbody {
  display: table-row-group;
}

.facts-table tr {
  display: table-row;
  border-bottom: 1px solid #fce7f3;
}

.facts-table tr:last-child {
  border-bottom: none;
}

.facts-table td {
  display: table-cell;
  padding: 0.75rem 0.5rem;
  vertical-align: top;
  word-wrap: break-word;
  word-break: break-word;
}

/* Mobile Table Responsive Styles */
@media (max-width: 768px) {
  .facts-table {
    font-size: 0.875rem;
  }
  
  .facts-table td {
    padding: 0.5rem 0.25rem;
    display: block;
    width: 100%;
    border-bottom: none;
  }
  
  .facts-table td:first-child {
    font-weight: 600;
    color: #c70036;
    border-bottom: 1px solid #fce7f3;
    padding-bottom: 0.25rem;
  }
  
  .facts-table td:last-child {
    padding-top: 0.25rem;
    padding-bottom: 0.75rem;
  }
  
  .facts-table tr {
    display: block;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #fce7f3;
  }
  
  .facts-table tr:nth-child(even) {
    background-color: #fdf2f8;
  }
}

/* SVG Logo Hover Effects */
.nav-link img {
  /* Convert any SVG to slate-700 color (#334155) */
  filter: brightness(0) saturate(100%) invert(24%) sepia(7%) saturate(1034%) hue-rotate(169deg) brightness(96%) contrast(87%);
  transition: filter 0.3s ease;
}

.nav-link:hover img {
  /* Convert any SVG to rose-700 color (#c70036) */
  filter: brightness(0) saturate(100%) invert(11%) sepia(96%) saturate(7463%) hue-rotate(321deg) brightness(98%) contrast(102%);
}

/* Remove hover color change for Bluesky and X icons */
.nav-link:hover img[alt="Bluesky"],
.nav-link:hover img[alt="X"] {
  /* Keep original color (slate-700) on hover */
  filter: brightness(0) saturate(100%) invert(24%) sepia(7%) saturate(1034%) hue-rotate(169deg) brightness(96%) contrast(87%);
}

/* ========================================
   CUSTOM CSS CLASSES (REPLACING TAILWIND)
   ======================================== */

/* About Me Section */
.about-me-section {
  padding: 3rem 0;
  background-color: #fdf2f8;
}

.about-me-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-me-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #c70036;
  margin-bottom: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-me-title {
    font-size: 3rem;
  }
}

.about-me-text {
  font-weight: 300;
  color: #334155;
  line-height: 1.75;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-me-text {
    font-size: 1.25rem;
  }
}

/* Body and Layout */
.main-body {
  background-color: #fdf2f8;
  color: #334155;
  font-family: "Roboto Serif", serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  .main-body {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background-color: #c70036;
  color: white;
  padding: 0.5rem;
  border-radius: 0.25rem;
  z-index: 100;
}

.skip-link:focus {
  position: absolute;
  top: 0;
  left: 0;
}

/* Header Styles */
.site-header {
  text-align: center;
  padding: 0.5rem 0;
  background-color: #fdf2f8;
}

.header-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: 120px;
  width: auto;
}

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

@media (min-width: 1024px) {
  .header-logo {
    max-height: 180px;
  }
}

.site-title {
  font-size: 3rem;
  font-weight: 500;
  color: #c70036;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.2;
  font-family: 'Parisienne', cursive;
}

@media (min-width: 768px) {
  .site-title {
    font-size: 3.75rem;
    line-height: 1.1;
  }
}

@media (min-width: 1024px) {
  .site-title {
    font-size: 4.5rem;
    line-height: 1.1;
  }
}

.site-subtitle {
  font-size: 1.125rem;
  color: #334155;
  margin-top: 0;
}

@media (min-width: 768px) {
  .site-subtitle {
    font-size: 1.25rem;
  }
}

/* Navigation Styles */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* bg-white/80 */
  backdrop-filter: blur(16px); /* backdrop-blur-lg */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
  border-radius: 0 0 1rem 1rem; /* rounded-b-2xl */
  border-bottom: 1px solid #fce7f3; /* border-b border-rose-100 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  margin: 0 auto;
  font-size: 1rem; /* font-base */
}

@media (min-width: 768px) {
  .main-nav {
    font-size: 1.125rem; /* md:text-lg */
  }
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: block;
  font-size: 1.875rem; /* text-3xl */
  padding: 0.5rem; /* p-2 */
  border-radius: 0.25rem; /* rounded */
  transition: all 0.3s; /* transition-all */
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #334155; /* text-slate-700 */
}

.nav-toggle:hover {
  background-color: #fdf2f8; /* hover:bg-rose-50 */
}

.nav-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3; /* focus:ring-2 focus:ring-rose-200 */
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none; /* md:hidden */
  }
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex; /* hidden md:flex */
  }
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* gap-6 */
}

.social-icon {
  font-size: 1.25rem; /* text-xl */
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
}

/* Ensure navigation links match index Tailwind preflight look */
.main-nav a,
.nav-link {
  color: #334155; /* text-slate-700 */
  text-decoration: none;
  font-weight: 500;
}

.main-nav a:hover,
.nav-link:hover {
  color: #c70036; /* rose-700 */
  text-decoration: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 50%, #fce7f3 100%);
  transition: all 0.3s; /* transition-all duration-300 */
  transform: translateY(100%); /* translate-y-full */
  opacity: 0; /* opacity-0 */
  pointer-events: none; /* pointer-events-none */
  display: none;
}

@media (max-width: 767px) {
  .mobile-menu {
    display: block; /* md:hidden */
  }
}

.mobile-menu.active {
  transform: translateY(0); /* translate-y-0 */
  opacity: 1; /* opacity-100 */
  pointer-events: auto; /* pointer-events-auto */
}

.mobile-menu-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
}

.mobile-menu-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
}

.mobile-menu-bg-circle-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: #fda4af;
}

.mobile-menu-bg-circle-2 {
  top: 10rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  background-color: #fb7185;
  filter: blur(16px);
}

.mobile-menu-bg-circle-3 {
  bottom: 10rem;
  left: 5rem;
  width: 10rem;
  height: 10rem;
  background-color: #fecdd3;
  filter: blur(24px);
}

.mobile-menu-bg-circle-4 {
  bottom: 5rem;
  right: 2.5rem;
  width: 7rem;
  height: 7rem;
  background-color: #fda4af;
  filter: blur(16px);
}

.mobile-menu-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 2rem; /* px-8 */
}

.mobile-menu-close {
  position: absolute;
  top: 2rem; /* top-8 */
  right: 2rem; /* right-8 */
  font-size: 2.25rem; /* text-4xl */
  color: #334155; /* text-slate-700 */
  background-color: rgba(255, 255, 255, 0.3); /* bg-white/30 */
  backdrop-filter: blur(4px); /* backdrop-blur-sm */
  border-radius: 9999px; /* rounded-full */
  padding: 0.75rem; /* p-3 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  z-index: 1000; /* Ensure it appears above other elements */
}

.mobile-menu-close:hover {
  color: #c70036; /* hover:text-rose-700 */
  background-color: rgba(255, 255, 255, 0.5); /* hover:bg-white/50 */
}

.mobile-menu-close:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3; /* focus:ring-2 focus:ring-rose-200 */
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
  text-align: center;
  margin-bottom: 3rem; /* mb-12 */
}

.mobile-nav-link {
  font-size: 1.5rem; /* text-2xl */
  padding: 1rem 2rem; /* py-4 px-8 */
  border-radius: 1rem; /* rounded-2xl */
  background-color: rgba(255, 255, 255, 0.4); /* bg-white/40 */
  backdrop-filter: blur(4px); /* backdrop-blur-sm */
  border: 1px solid rgba(255, 255, 255, 0.3); /* border border-white/30 */
  transition: all 0.3s; /* transition-all duration-300 */
  font-weight: 500; /* font-medium */
  color: #334155; /* text-slate-700 */
  text-decoration: none;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.6); /* hover:bg-white/60 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* hover:shadow-lg */
}

/* Remove hover color change for Bluesky and X icons in mobile navigation */
.mobile-nav-link:hover img[alt="Bluesky"],
.mobile-nav-link:hover img[alt="X"] {
  /* Keep original color (slate-700) on hover */
  filter: brightness(0) saturate(100%) invert(24%) sepia(7%) saturate(1034%) hue-rotate(169deg) brightness(96%) contrast(87%);
}

.mobile-social-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem; /* gap-4 */
  margin-top: 1rem; /* mt-4 */
  padding-top: 1rem; /* pt-4 */
  border-top: 1px solid rgba(255, 255, 255, 0.3); /* border-t border-white/30 */
}

.mobile-social-icon {
  width: 1.5rem; /* w-6 */
  height: 1.5rem; /* h-6 */
}

/* About Section (Full Width) */
.about-section {
  width: 100vw; /* w-screen */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* -ml-[50vw] */
  margin-right: -50vw; /* -mr-[50vw] */
}

.about-main {
  background-color: #fdf2f8; /* bg-rose-50 */
}

.about-container {
  position: relative;
  height: 100vh; /* h-screen */
  overflow: hidden;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.about-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1rem; /* px-4 */
}

.about-text-box {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  transform: translateY(100%);
}

.about-hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c70036, #9d174d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-hero-title {
    font-size: 2.25rem;
  }
}

/* Main Content Container */
.main-content {
  background-color: #fdf2f8; /* bg-rose-50 */
  margin: 0 auto;
  padding: 0 0.5rem; /* px-2 */
}

/* Section Utilities */
.section-padding {
  padding: 3rem 0;
}

.section-header {
  font-size: 2.25rem;
  font-weight: 700;
  color: #c70036;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.container-full {
  width: 100%;
}

.container-responsive {
  max-width: 56rem;
  margin: 0 auto;
}

.container-wide {
  max-width: 72rem;
  margin: 0 auto;
}

/* Gallery Specific Styles */
.gallery-container {
  position: relative;
  margin: 0 -1rem; /* -mx-4 */
}

@media (min-width: 768px) {
  .gallery-container {
    margin: 0; /* md:-mx-0 lg:-mx-0 */
  }
}

.gallery-scroll {
  display: flex;
  gap: 1rem; /* gap-4 */
  overflow-x: auto;
  padding-bottom: 1rem; /* pb-4 */
  padding-left: 1rem; /* content-padding */
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .gallery-scroll {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .gallery-scroll {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8); /* bg-black bg-opacity-80 */
  backdrop-filter: blur(4px); /* backdrop-blur */
}

.lightbox-overlay.hidden {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 1rem; /* top-4 */
  right: 1rem; /* right-4 */
  color: white;
  font-size: 1.875rem; /* text-3xl */
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-close:focus {
  outline: none;
}

.lightbox-content {
  max-width: 48rem; /* max-w-3xl */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* -translate-y-1/2 */
  color: white;
  font-size: 1.875rem; /* text-3xl */
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-nav:focus {
  outline: none;
}

.lightbox-prev {
  left: 1rem; /* left-4 */
}

.lightbox-next {
  right: 1rem; /* right-4 */
}

.lightbox-image {
  max-height: 80vh; /* max-h-[80vh] */
  width: auto;
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}

.lightbox-counter {
  color: white;
  margin-top: 0.5rem; /* mt-2 */
  font-size: 0.875rem; /* text-sm */
}

.lightbox-thumbnails {
  display: flex;
  gap: 0.5rem; /* gap-2 */
  margin-top: 1rem; /* mt-4 */
}



/* Tab System */
.tab-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
  gap: 0.5rem; /* gap-2 */
  margin-bottom: 1rem; /* mb-4 */
  width: 100%;
  max-width: 20rem; /* max-w-sm */
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  background-color: #fce7f3; /* bg-rose-100 */
  color: #334155; /* text-slate-700 */
  font-weight: 500; /* font-medium */
  padding: 0.75rem; /* px-3 py-3 */
  border-radius: 0.5rem; /* rounded-lg */
  transition: all 0.3s;
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25; /* leading-tight */
  border: none;
  cursor: pointer;
}

.tab-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3; /* focus:ring-2 focus:ring-rose-200 */
}

.tab-btn.col-span-2 {
  grid-column: span 2; /* col-span-2 */
}

.tab-btn.active {
  background-color: #c70036; /* bg-rose-700 */
  color: white; /* text-white */
}

.tab-content {
  width: 100%;
  overflow-x: auto;
}

.tab-content.hidden {
  display: none;
}

.tab-content-title {
  font-size: 1.125rem; /* text-lg */
  font-weight: 500; /* font-medium */
  color: #334155; /* text-slate-700 */
  margin-bottom: 0.5rem; /* mb-2 */
}

@media (min-width: 768px) {
  .tab-content-title {
    font-size: 1.25rem; /* md:text-xl */
  }
}

.tab-content-text {
  color: #334155; /* text-slate-700 */
  font-weight: 300; /* font-light */
  font-size: 1rem; /* text-base */
  margin-bottom: 0.5rem; /* mb-2 */
  text-align: left;
}

@media (min-width: 768px) {
  .tab-content-text {
    font-size: 1.125rem; /* md:text-lg */
  }
}

/* Booking Section */
.booking-section {
  padding: 3rem 0; /* py-12 */
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* gap-8 */
  align-items: stretch;
}

@media (min-width: 1024px) {
  .booking-grid {
    grid-template-columns: repeat(2, 1fr); /* lg:grid-cols-2 */
  }
}

.booking-photo {
  display: none;
}

@media (min-width: 1024px) {
  .booking-photo {
    display: block; /* hidden lg:block */
  }
}

.booking-image {
  width: 100%;
  height: 100%;
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
  object-fit: cover;
}

.booking-form-container {
  max-width: 32rem; /* max-w-2xl */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .booking-form-container {
    margin: 0; /* lg:mx-0 */
  }
}

.booking-form-card {
  background-color: white;
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
  padding: 1.5rem; /* p-6 */
  border: 1px solid #fce7f3; /* border border-rose-100 */
  margin-bottom: 1.5rem; /* mb-6 */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space-y-6 */
}

.form-group {
  margin-bottom: 1rem; /* mb-4 */
}

.form-group-row {
  margin-bottom: 1rem; /* mb-4 */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
}

@media (min-width: 768px) {
  .form-group-row {
    flex-direction: row; /* md:flex-row */
  }
}

.form-group-flex {
  flex: 1; /* flex-1 */
}

.form-label {
  display: block;
  font-weight: 500; /* font-medium */
  color: #334155; /* text-slate-700 */
  margin-bottom: 0.5rem; /* mb-2 */
  font-size: 1rem; /* text-base */
}

@media (min-width: 768px) {
  .form-label {
    font-size: 1.125rem; /* md:text-lg */
  }
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem; /* px-4 py-3 */
  border-radius: 0.5rem; /* rounded-lg */
  border: 1px solid #e2e8f0; /* border border-slate-200 */
  transition: all 0.3s; /* transition duration-300 */
  font-size: 1rem; /* text-base */
}

@media (min-width: 768px) {
  .form-input {
    font-size: 1.125rem; /* md:text-lg */
  }
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3; /* focus:ring-2 focus:ring-rose-200 */
  border-color: #f9a8d4; /* focus:border-rose-300 */
}

.form-input::placeholder {
  color: #94a3b8; /* placeholder-slate-400 */
}

.form-textarea {
  resize: vertical; /* resize-vertical */
}

.contact-email {
  text-align: center;
}

.contact-email-text {
  font-weight: 300; /* font-light */
  color: #334155; /* text-slate-700 */
  margin-bottom: 0.5rem; /* mb-2 */
  font-size: 1rem; /* text-base */
}

@media (min-width: 768px) {
  .contact-email-text {
    font-size: 1.125rem; /* md:text-lg */
  }
}

.contact-email-link {
  background-color: white; /* bg-white */
  color: #334155; /* text-slate-700 */
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  border-radius: 0.5rem; /* rounded-lg */
  font-weight: 500; /* font-medium */
  transition: all 0.3s; /* transition duration-300 */
  text-decoration: none;
  font-size: 1rem; /* text-base */
}

@media (min-width: 768px) {
  .contact-email-link {
    font-size: 1.125rem; /* md:text-lg */
  }
}

.contact-email-link:hover {
  background-color: #fce7f3; /* hover:bg-rose-100 */
}

.contact-email-link:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3; /* focus:ring-2 focus:ring-rose-100 */
}

/* Newsletter Popup */
.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.newsletter-popup.show {
  opacity: 1;
  visibility: visible;
}

.newsletter-popup.hidden {
  display: none;
}

.newsletter-card {
  background-color: #fdf2f8;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #fce7f3;
  padding: 2rem;
  margin: 0 1rem;
  max-width: 28rem;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.newsletter-popup.show .newsletter-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.newsletter-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #c70036;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-close:hover {
  color: #9d174d;
  transform: scale(1.1);
}

.newsletter-close:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3;
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #c70036;
}

@media (min-width: 768px) {
  .newsletter-title {
    font-size: 1.875rem;
  }
}

.newsletter-text {
  font-size: 1rem;
  font-weight: 300;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .newsletter-text {
    font-size: 1.125rem;
  }
}

/* Facts Table */
.facts-container {
  max-width: 72rem; /* max-w-6xl */
  margin: 2rem auto; /* my-8 */
  padding: 0 1rem; /* px-4 */
}

.facts-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700; /* font-bold */
  margin-bottom: 2rem; /* mb-8 */
  text-align: center;
}

@media (min-width: 768px) {
  .facts-title {
    font-size: 1.875rem; /* md:text-3xl */
  }
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* gap-8 */
  align-items: stretch;
}

@media (min-width: 1024px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr); /* lg:grid-cols-2 */
  }
}

.facts-card {
  background-color: white;
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
  border: 1px solid #fce7f3; /* border border-rose-100 */
  padding: 1rem; /* p-4 */
  width: 100%;
}

@media (min-width: 768px) {
  .facts-card {
    padding: 2rem; /* md:p-8 */
  }
}

.facts-table-container {
  overflow-x: auto;
  width: 100%;
}

.facts-image {
  display: none;
}

@media (min-width: 1024px) {
  .facts-image {
    display: block; /* hidden lg:block */
  }
}

.facts-image-img {
  width: 100%;
  height: 100%;
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
  object-fit: cover;
}

/* Footer Styles (Updated) */
.site-footer {
  background-color: #fdf2f8; /* bg-rose-50 */
  border-top: 1px solid #fce7f3;
  padding: 1.5rem 0;
  margin-top: auto;
}

.footer-content {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-links {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #c70036;
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copyright {
  color: #334155;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  max-width: 6rem;
  margin: 1rem auto;
  padding: 0 1rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 0.5rem;
  color: #94a3b8;
}

.breadcrumb-link {
  color: #c70036;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: #9d174d;
  text-decoration: underline;
}

.breadcrumb-current {
  color: #64748b;
  font-weight: 500;
}

/* Utility Classes */
.btn-primary {
  background-color: #c70036; /* bg-rose-700 */
  color: white;
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  border-radius: 0.5rem; /* rounded-lg */
  font-weight: 500; /* font-medium */
  transition: background-color 0.3s; /* transition duration-300 */
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem; /* text-base */
}

@media (min-width: 768px) {
  .btn-primary {
    font-size: 1.125rem; /* md:text-lg */
  }
}

.btn-primary:hover {
  background-color: #9d174d; /* hover:bg-rose-800 */
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3; /* focus:ring-2 focus:ring-rose-200 */
}



/* ========================================
   PRICING SECTION STYLES
   ======================================== */

/* Kennenlernen Section */
.kennenlernen-section {
  padding: 4rem 0;
}

.kennenlernen-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.wishlist-card-section {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 4rem;
  border: 1px solid #fce7f3;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.wishlist-description {
  font-weight: 300;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .wishlist-description {
    font-size: 1.25rem;
  }
}

.wishlist-link {
  background-color: #c70036;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s;
  margin-bottom: 1.5rem;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .wishlist-link {
    font-size: 1.125rem;
  }
}

.wishlist-link:hover {
  background-color: #c70036;
}

.wishlist-link:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fce7f3;
}

/* Pricing Headers */
.pricing-main-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .pricing-main-title {
    font-size: 3rem;
    line-height: 1.1;
  }
}

.section-divider,
.pricing-divider {
  width: 6rem; /* w-24 */
  height: 0.25rem; /* h-1 */
  background: linear-gradient(to right, #c70036, #c70036); /* bg-gradient-to-r from-rose-700 to-rose-700 */
  margin: 0 auto 0.75rem; /* mx-auto mb-3 */
  border-radius: 9999px; /* rounded-full */
}

/* Pricing Tables */
.pricing-container {
  max-width: 56rem; /* max-w-4xl */
  margin: 0 auto; /* mx-auto */
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pricing-grid {
    flex-direction: row;
    gap: 3rem;
  }
  
  .pricing-grid > div {
    flex: 1;
  }
}

.pricing-section-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 500; /* font-medium */
  color: #334155; /* text-slate-700 */
  margin-bottom: 0.5rem; /* mb-2 */
}

@media (min-width: 768px) {
  .pricing-section-title {
    font-size: 1.5rem; /* md:text-2xl */
  }
}

.pricing-description {
  font-weight: 300; /* font-light */
  color: #334155; /* text-slate-700 */
  line-height: 1.75; /* leading-relaxed */
  margin-bottom: 0.5rem; /* mb-2 */
  font-size: 1.125rem; /* text-lg */
}

@media (min-width: 768px) {
  .pricing-description {
    font-size: 1.25rem; /* md:text-xl */
  }
}

.pricing-table-container {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(252, 231, 243, 0.6);
  overflow: hidden;
  padding: 0.5rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s;
}

/* City Guide dropdown cards */
.guide-card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(252, 231, 243, 0.8);
  box-shadow: 0 12px 24px -8px rgba(190, 18, 60, 0.15);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(190, 18, 60, 0.22);
}

.guide-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.5rem; /* ~text-2xl */
  line-height: 2rem;
  font-weight: 700;
  color: #c70036; /* rose-700 */
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(253,242,248,0.6));
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .guide-btn {
    font-size: 1.875rem; /* md:text-3xl */
    line-height: 2.25rem;
  }
}

.guide-section .guide-card + .guide-card {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .guide-section .guide-card + .guide-card {
    margin-top: 1.25rem;
  }
}

@media (min-width: 768px) {
  .pricing-table-container {
    padding: 2rem;
  }
}

.pricing-table-container:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-table-full {
  width: 100%;
  text-align: left;
}

/* Service Cards Grid (from line 477+) */
.service-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .service-cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* City Guide Service Cards - Always single column */
.guide-section .service-cards-container {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .guide-section .service-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-card-item {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid #fce7f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
}

.service-card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: #fdf2f8;
  border: 1px solid #fce7f3;
  margin-bottom: 1rem;
}

.service-card-icon {
  color: #c70036;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .service-card-title {
    font-size: 1.5rem;
  }
}

.service-card-content {
  font-weight: 300;
  color: #334155;
  line-height: 1.75;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .service-card-content {
    font-size: 1.25rem;
  }
}

/* Gallery Image Placeholders and Loading States */
.gallery-image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 25%, #ffffff 50%, #f9a8d4 75%, #fce7f3 100%);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(244, 63, 94, 0.2);
  border-top: 3px solid #f43f5e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  z-index: 2;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.lazy-image.loaded {
  opacity: 1;
}

.lazy-image.loaded + .gallery-loading-spinner {
  display: none;
}

/* Ensure gallery buttons maintain their structure */
.gallery-button {
  position: relative;
  overflow: hidden;
}

.gallery-button .gallery-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* Optimize for mobile */
@media (max-width: 768px) {
  .gallery-loading-spinner {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  
  .gallery-button .gallery-image-placeholder {
    min-height: 150px;
  }
}

/* Language Switcher Styles */
.language-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c70036, #9d174d);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.language-switch:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #9d174d, #c70036);
}

.language-text {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

/* Mobile language switcher section */
.mobile-language-section {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(199, 0, 54, 0.2);
}

.mobile-language-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 50px;
  background: linear-gradient(135deg, #c70036, #9d174d);
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  padding: 0 1rem;
}

.mobile-language-switch:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #9d174d, #c70036);
}

.mobile-language-switch .language-text {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Desktop navigation layout */
@media (min-width: 768px) {
  .desktop-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .desktop-nav .social-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
  }
}

/* Mobile language switcher */
@media (max-width: 768px) {
  .language-switch {
    min-width: 36px;
    height: 36px;
  }
  
  .language-text {
    font-size: 0.8rem;
  }
  
  .mobile-social-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .mobile-social-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}
