/* GreatBars.org - Deutsche Sport Bars Verzeichnis Styles */

:root {
  --greatbars-primary: #d4af37;
  --greatbars-secondary: #8b0000;
  --greatbars-accent: #ff4500;
  --greatbars-dark: #2c2c2c;
  --greatbars-light-gray: #f5f5f5;
  --greatbars-white: #ffffff;
  --greatbars-text: #333333;
  --greatbars-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
  --greatbars-shadow-heavy: 0 16px 48px rgba(139, 0, 0, 0.2);
  --greatbars-border-radius: 16px;
  --greatbars-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--greatbars-text);
  background: linear-gradient(45deg, #fafafa 0%, #f0f0f0 100%);
  overflow-x: hidden;
}

body.greatbars-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Container & Layout */
.greatbars-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Main Content Wrapper */
.greatbars-main-content {
  position: relative;
  z-index: 1;
}

/* Top Navigation - Completely Rebuilt */
.greatbars-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: var(--greatbars-transition);
}

.greatbars-nav-wrapper {
  border-bottom: 2px solid var(--greatbars-primary);
}

.greatbars-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand Logo */
.greatbars-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--greatbars-dark);
  flex-shrink: 0;
  z-index: 1001;
}

.greatbars-brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.greatbars-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--greatbars-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Navigation Menu Wrapper */
.greatbars-nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.greatbars-nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.greatbars-nav-item {
  position: relative;
}

.greatbars-nav-link {
  display: block;
  text-decoration: none;
  color: var(--greatbars-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.625rem 1.125rem;
  border-radius: 8px;
  transition: var(--greatbars-transition);
  position: relative;
  white-space: nowrap;
}

.greatbars-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--greatbars-primary);
  transition: transform 0.3s ease;
}

.greatbars-nav-link:hover {
  color: var(--greatbars-primary);
  background: rgba(212, 175, 55, 0.08);
}

.greatbars-nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.greatbars-nav-link.active {
  color: var(--greatbars-primary);
  background: rgba(212, 175, 55, 0.12);
  font-weight: 600;
}

.greatbars-nav-link.active::before {
  transform: translateX(-50%) scaleX(1);
}

/* CTA Button */
.greatbars-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  color: var(--greatbars-white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--greatbars-transition);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.greatbars-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  text-decoration: none;
  color: var(--greatbars-white);
}

.greatbars-nav-cta i {
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.greatbars-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  flex-shrink: 0;
}

.greatbars-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  position: relative;
}

.greatbars-hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--greatbars-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Toggle Animation */
.greatbars-mobile-toggle.active .greatbars-hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.greatbars-mobile-toggle.active .greatbars-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.greatbars-mobile-toggle.active .greatbars-hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section - Asymmetric Design */
.greatbars-hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 2rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.greatbars-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  border-radius: 50% 0% 50% 0%;
  opacity: 0.05;
  z-index: 0;
  animation: greatbars-float 6s ease-in-out infinite;
  pointer-events: none;
}

.greatbars-hero-content {
  z-index: 10;
  position: relative;
}

.greatbars-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--greatbars-white);
  color: var(--greatbars-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--greatbars-shadow);
}

.greatbars-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--greatbars-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.greatbars-hero-highlight {
  color: var(--greatbars-primary);
  position: relative;
}

.greatbars-hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: linear-gradient(90deg, var(--greatbars-primary), var(--greatbars-accent));
  opacity: 0.3;
  border-radius: 2px;
}

.greatbars-hero-description {
  font-size: 1.2rem;
  color: var(--greatbars-text);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.greatbars-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 15;
}

.greatbars-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--greatbars-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.greatbars-btn-primary {
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  color: var(--greatbars-white);
  box-shadow: var(--greatbars-shadow);
}

.greatbars-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--greatbars-shadow-heavy);
  text-decoration: none;
  color: var(--greatbars-white);
}

.greatbars-btn-outline {
  background: transparent;
  color: var(--greatbars-primary);
  border: 2px solid var(--greatbars-primary);
}

.greatbars-btn-outline:hover {
  background: var(--greatbars-primary);
  color: var(--greatbars-white);
  text-decoration: none;
}

.greatbars-hero-visual {
  position: relative;
  z-index: 5;
}

.greatbars-hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.greatbars-hero-card {
  background: var(--greatbars-white);
  padding: 1.5rem;
  border-radius: var(--greatbars-border-radius);
  box-shadow: var(--greatbars-shadow);
  transition: var(--greatbars-transition);
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 120px;
}

.greatbars-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--greatbars-shadow-heavy);
}

.greatbars-hero-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--greatbars-shadow-heavy);
}

.greatbars-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.greatbars-card-title {
  font-weight: 700;
  color: var(--greatbars-dark);
  font-size: 1.1rem;
}

.greatbars-card-rating {
  color: var(--greatbars-primary);
  font-size: 1rem;
}

.greatbars-card-location {
  color: var(--greatbars-text);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Overlapping Featured Section */
.greatbars-featured {
  position: relative;
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  clear: both;
}

.greatbars-section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  clear: both;
}

.greatbars-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--greatbars-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.greatbars-section-subtitle {
  font-size: 1.1rem;
  color: var(--greatbars-text);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Clean Grid Layout */
.greatbars-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.greatbars-featured-card {
  background: var(--greatbars-white);
  border-radius: var(--greatbars-border-radius);
  box-shadow: var(--greatbars-shadow);
  overflow: hidden;
  transition: var(--greatbars-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.greatbars-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--greatbars-shadow-heavy);
}

.greatbars-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
}

.greatbars-venue-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--greatbars-dark);
  margin-bottom: 0.5rem;
}

.greatbars-venue-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--greatbars-text);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.greatbars-venue-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.greatbars-stars {
  color: var(--greatbars-primary);
  font-size: 1.1rem;
}

.greatbars-price-indicator {
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  color: var(--greatbars-white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.greatbars-venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.greatbars-tag {
  background: rgba(212, 175, 55, 0.1);
  color: var(--greatbars-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.greatbars-venue-description {
  color: var(--greatbars-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.greatbars-card-actions {
  display: flex;
  gap: 0.75rem;
}

/* Cities Section */
.greatbars-cities {
  background: linear-gradient(135deg, var(--greatbars-light-gray) 0%, var(--greatbars-white) 100%);
  padding: 6rem 2rem;
}

.greatbars-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.greatbars-city-card {
  background: var(--greatbars-white);
  border-radius: var(--greatbars-border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--greatbars-shadow);
  transition: var(--greatbars-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.greatbars-city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--greatbars-primary), var(--greatbars-accent));
}

.greatbars-city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--greatbars-shadow-heavy);
}

.greatbars-city-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--greatbars-white);
  font-size: 1.8rem;
}

.greatbars-city-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--greatbars-dark);
  margin-bottom: 1rem;
}

.greatbars-city-description {
  color: var(--greatbars-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  flex: 1;
}

/* Footer */
.greatbars-footer {
  background: linear-gradient(135deg, var(--greatbars-dark) 0%, var(--greatbars-secondary) 100%);
  color: var(--greatbars-white);
  padding: 4rem 2rem 2rem;
}

.greatbars-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.greatbars-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.greatbars-footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--greatbars-primary);
}

.greatbars-footer-description {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.greatbars-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.greatbars-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.9;
}

.greatbars-contact-item a {
  color: var(--greatbars-white);
  text-decoration: none;
  transition: var(--greatbars-transition);
}

.greatbars-contact-item a:hover {
  color: var(--greatbars-primary);
}

.greatbars-footer-menu {
  list-style: none;
}

.greatbars-footer-menu li {
  margin-bottom: 0.75rem;
}

.greatbars-footer-menu a {
  color: var(--greatbars-white);
  text-decoration: none;
  opacity: 0.9;
  transition: var(--greatbars-transition);
}

.greatbars-footer-menu a:hover {
  color: var(--greatbars-primary);
  opacity: 1;
}

.greatbars-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.greatbars-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.greatbars-legal-text {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.greatbars-copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Banner */
.greatbars-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--greatbars-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(0);
  transition: var(--greatbars-transition);
}

.greatbars-cookie-banner.hidden {
  transform: translateY(100%);
}

.greatbars-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.greatbars-cookie-text h6 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--greatbars-dark);
}

.greatbars-cookie-text p {
  margin: 0;
  color: var(--greatbars-text);
  font-size: 0.9rem;
}

.greatbars-cookie-actions {
  display: flex;
  gap: 1rem;
}

.greatbars-btn-accept {
  background: var(--greatbars-primary);
  color: var(--greatbars-white);
}

.greatbars-btn-policy {
  background: transparent;
  color: var(--greatbars-primary);
  border: 2px solid var(--greatbars-primary);
}

/* Animations */
@keyframes greatbars-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes greatbars-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.greatbars-animate {
  animation: greatbars-fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .greatbars-nav-container {
    padding: 1rem 1.5rem;
  }

  .greatbars-nav-menu {
    gap: 0.25rem;
  }

  .greatbars-nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
  }

  .greatbars-nav-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

  .greatbars-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1.5rem 4rem;
    min-height: auto;
    max-width: 100%;
    overflow: visible;
  }

  .greatbars-hero::before {
    display: none !important;
  }

  .greatbars-hero-title {
    font-size: 2.8rem;
  }

  .greatbars-hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
  }

  .greatbars-hero-visual {
    position: relative;
    z-index: 5;
    margin-top: 2rem;
    padding-top: 1rem;
  }

  .greatbars-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    align-items: center;
  }

  .greatbars-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    min-height: 52px;
    position: relative;
    z-index: 20;
  }

  .greatbars-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .greatbars-featured-card {
    grid-column: 1;
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .greatbars-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* German text handling */
  .greatbars-nav-link {
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .greatbars-nav-container {
    padding: 0.875rem 1rem;
    gap: 1rem;
  }

  .greatbars-brand-text {
    font-size: 1.4rem;
  }

  .greatbars-brand-logo {
    width: 42px;
    height: 42px;
  }

  .greatbars-mobile-toggle {
    display: flex;
  }

  .greatbars-nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow-y: auto;
  }

  .greatbars-nav-menu-wrapper.active {
    right: 0;
  }

  .greatbars-nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .greatbars-nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .greatbars-nav-link {
    display: block;
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    border-radius: 0;
  }

  .greatbars-nav-link::before {
    display: none;
  }

  .greatbars-nav-link.active {
    background: rgba(212, 175, 55, 0.08);
  }

  .greatbars-nav-cta {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  /* Mobile Menu Overlay */
  .greatbars-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .greatbars-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Ensure main content starts below navbar */
  .greatbars-main-content {
    padding-top: 0;
  }
  
  .greatbars-navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
  }

  .greatbars-hero {
    padding: 1.5rem 1rem 4rem;
    min-height: auto;
    gap: 1.5rem;
    overflow: visible !important;
  }

  .greatbars-hero::before {
    display: none !important;
  }

  .greatbars-hero::after {
    display: none !important;
  }

  .greatbars-hero-content {
    padding-bottom: 2rem;
  }

  .greatbars-hero-title {
    font-size: 2rem;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .greatbars-hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .greatbars-hero-actions {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    align-items: center;
  }

  .greatbars-hero-visual {
    margin-top: 2rem;
    padding-top: 1rem;
    order: 2;
  }

  .greatbars-hero-cards {
    gap: 1rem;
  }

  .greatbars-hero-card {
    min-height: 100px;
    padding: 1.25rem;
  }

  .greatbars-section-title {
    font-size: 2.2rem;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  .greatbars-featured,
  .greatbars-cities {
    padding: 3rem 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }

  .greatbars-cities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .greatbars-city-card {
    min-height: 280px;
  }

  .greatbars-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .greatbars-hero-actions {
    justify-content: center;
  }

  .greatbars-card-actions {
    flex-direction: column;
  }

  .greatbars-btn {
    justify-content: center;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    min-height: 52px;
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
  }

  .greatbars-featured,
  .greatbars-cities {
    padding: 3rem 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    clear: both;
  }

  /* German venue names and descriptions */
  .greatbars-venue-name {
    font-size: 1.4rem;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    line-height: 1.3;
  }

  .greatbars-city-name {
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
}

@media (max-width: 480px) {
  .greatbars-nav-container {
    padding: 0.75rem 0.875rem;
  }

  .greatbars-brand-text {
    font-size: 1.3rem;
  }

  .greatbars-brand-logo {
    width: 38px;
    height: 38px;
  }

  .greatbars-nav-menu-wrapper {
    width: 90%;
    padding: 4.5rem 1.5rem 2rem;
  }

  .greatbars-nav-link {
    padding: 0.875rem 0.5rem;
    font-size: 0.95rem;
  }

  .greatbars-nav-cta {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .greatbars-hero {
    padding: 1rem 0.75rem 3rem;
    gap: 1rem;
    overflow: visible !important;
  }

  .greatbars-hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .greatbars-section-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .greatbars-hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .greatbars-hero-actions {
    margin-top: 1.25rem;
    margin-bottom: 2.5rem;
    gap: 0.875rem;
  }

  .greatbars-hero-visual {
    margin-top: 2rem;
    padding-top: 1rem;
  }

  .greatbars-btn {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    min-height: 52px;
    width: 100%;
  }

  .greatbars-card-content {
    padding: 1.25rem;
    min-height: 280px;
  }

  .greatbars-city-card {
    padding: 1.25rem;
    min-height: 240px;
  }

  .greatbars-cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .greatbars-featured,
  .greatbars-cities {
    padding: 2rem 0.75rem;
    margin-top: 2rem;
  }

  .greatbars-section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .greatbars-hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  /* Critical: Prevent button overlap */
  .greatbars-hero-actions .greatbars-btn:first-child {
    margin-bottom: 1rem;
  }

  .greatbars-hero-actions .greatbars-btn:last-child {
    margin-bottom: 2rem;
  }

  /* Address long German words breaking mobile layout */
  /* Ensure proper spacing between sections */
  .greatbars-hero + .greatbars-featured {
    margin-top: 2rem;
  }

  /* Prevent any absolute positioning issues */
  .greatbars-hero::before,
  .greatbars-hero::after {
    display: none !important;
  }

  /* Additional overlap prevention */
  .greatbars-card-actions .greatbars-btn {
    margin-bottom: 0.5rem;
  }

  /* Ensure content spacing */
  .greatbars-hero-content {
    margin-bottom: 2rem;
  }

  .greatbars-asymmetric-grid {
    margin-top: 2rem;
    gap: 2rem;
  }

  .greatbars-featured-card + .greatbars-featured-card {
    margin-top: 0;
  }

  /* Section isolation */
  section {
    isolation: isolate;
  }

  /* Fix German footer menu text wrapping */
  .greatbars-footer-menu a {
    font-size: 0.9rem;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  /* Prevent horizontal scroll on small screens */
  .greatbars-container {
    overflow-x: hidden;
  }

  /* Handle long German venue tags */
  .greatbars-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  /* Form elements text handling */
  label {
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
}

/* Mobile Layout Fixes */
@media (max-width: 768px) {
  /* Force clean layout structure on mobile */
  body {
    overflow-x: hidden;
  }

  .greatbars-container {
    overflow-x: hidden;
  }

  /* Ensure all sections stack properly without overlap */
  .greatbars-container > * {
    position: relative;
    z-index: auto;
  }

  /* Fix any potential fixed positioning issues */
  .greatbars-hero,
  .greatbars-featured,
  .greatbars-cities {
    position: relative;
    clear: both;
    isolation: isolate;
  }

  /* Ensure buttons are always accessible and don't overlap */
  .greatbars-hero-actions {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    clear: both;
    position: relative;
    z-index: 100;
  }

  .greatbars-hero-actions .greatbars-btn {
    position: relative;
    z-index: 101;
    margin-bottom: 0.5rem;
  }

  /* Add safe spacing between major sections */
  section + section {
    margin-top: 2rem;
  }

  /* Prevent hero cards from overlapping buttons */
  .greatbars-hero-visual {
    margin-top: 3rem;
    padding-top: 2rem;
    clear: both;
  }

  /* Ensure featured section starts cleanly */
  .greatbars-featured {
    padding-top: 4rem;
    margin-top: 3rem;
  }

  /* Prevent any absolute elements from causing issues */
  .greatbars-hero *[style*="position: absolute"],
  .greatbars-hero *[style*="position:absolute"] {
    position: static !important;
  }
}

/* German Language Handling */
.greatbars-german-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
}

/* Prevent layout breaks on small screens with long German words */
@media (max-width: 375px) {
  /* iPhone SE and smaller screens */
  .greatbars-nav-link {
    font-size: 0.8rem !important;
    padding: 0.6rem 0.8rem !important;
  }
  
  .greatbars-footer-menu a {
    font-size: 0.8rem !important;
  }
  
  .greatbars-legal-text {
    font-size: 0.8rem !important;
  }
  
  /* Handle very long compound German words */
  .greatbars-venue-name,
  .greatbars-city-name,
  .greatbars-section-title,
  .greatbars-hero-title {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -ms-hyphens: auto !important;
  }
  
  /* Specific handling for legal page titles that can be very long in German */
  .greatbars-hero-title {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }
  
  /* Cookie banner text handling */
  .greatbars-cookie-text {
    font-size: 0.85rem !important;
  }
}

/* Utility Classes */
.greatbars-hidden {
  display: none !important;
}

.greatbars-text-center {
  text-align: center;
}

.greatbars-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--greatbars-transition);
}

.greatbars-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Critical Mobile Overlap Prevention */
@media (max-width: 768px) {
  /* Ensure no floating or absolute positioned elements overlap */
  .greatbars-hero-content,
  .greatbars-hero-visual,
  .greatbars-hero-actions {
    position: relative !important;
    transform: none !important;
    float: none !important;
  }

  /* Force proper button spacing and visibility */
  .greatbars-btn-primary,
  .greatbars-btn-outline {
    display: flex !important;
    position: relative !important;
    z-index: 50 !important;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  /* Ensure sections don't overlap */
  .greatbars-hero,
  .greatbars-featured,
  .greatbars-cities {
    display: block !important;
    position: relative !important;
  }

  /* Add padding buffer between hero and next section */
  .greatbars-hero {
    padding-bottom: 4rem !important;
  }

  #featured-bars {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 480px) {
  /* Extra mobile safeguards */
  .greatbars-hero {
    padding-bottom: 3rem !important;
  }

  .greatbars-hero-actions {
    padding-bottom: 2rem !important;
  }
}

/* Extracted inline styles */
.greatbars-hero-short {
  min-height: 50vh;
}

.greatbars-hero-medium {
  min-height: 60vh;
}

.greatbars-section-padding-top {
  padding-top: 2rem;
}

.greatbars-content-container {
  max-width: 900px;
  margin: 0 auto;
}

.greatbars-content-container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.greatbars-card-content-left {
  text-align: left;
}

.greatbars-content-section {
  margin-bottom: 3rem;
}

.greatbars-content-section-last {
  margin-bottom: 2rem;
}

.greatbars-content-h2 {
  color: var(--greatbars-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.greatbars-content-h3 {
  color: var(--greatbars-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.greatbars-content-p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.greatbars-content-p-last {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.greatbars-info-box {
  background: var(--greatbars-light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.greatbars-info-box-primary {
  background: rgba(212, 175, 55, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--greatbars-primary);
}

.greatbars-info-box-secondary {
  background: rgba(139, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--greatbars-secondary);
}

.greatbars-info-box-success {
  background: #e8f5e8;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #4caf50;
}

.greatbars-info-box-warning {
  background: #fff3cd;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ffc107;
}

.greatbars-content-ul {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.greatbars-content-link {
  color: var(--greatbars-primary);
}

.greatbars-form-grid {
  display: grid;
  gap: 1.5rem;
}

.greatbars-form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.greatbars-form-grid-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.greatbars-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--greatbars-dark);
}

.greatbars-form-input,
.greatbars-form-select,
.greatbars-form-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--greatbars-transition);
  background: white;
}

.greatbars-form-input:focus,
.greatbars-form-select:focus,
.greatbars-form-textarea:focus {
  border-color: var(--greatbars-primary);
  outline: none;
}

.greatbars-form-textarea {
  resize: vertical;
}

.greatbars-form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.greatbars-form-checkbox {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--greatbars-primary);
}

.greatbars-form-checkbox-label {
  color: var(--greatbars-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.greatbars-form-submit-wrapper {
  margin-top: 1rem;
}

.greatbars-form-submit-full {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
}

.greatbars-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.greatbars-contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.greatbars-contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.greatbars-contact-info-grid {
  display: grid;
  gap: 1.5rem;
}

.greatbars-city-highlights-title {
  color: var(--greatbars-primary);
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.greatbars-city-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.greatbars-city-highlights-item {
  padding: 0.25rem 0;
  color: var(--greatbars-text);
  opacity: 0.9;
}

.greatbars-city-card-left {
  text-align: left;
}

.greatbars-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.greatbars-about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.greatbars-about-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.greatbars-about-feature-content strong {
  color: var(--greatbars-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.greatbars-about-feature-content span {
  color: var(--greatbars-text);
  opacity: 0.9;
}

.greatbars-about-features-grid {
  display: grid;
  gap: 1.5rem;
}

.greatbars-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.greatbars-team-member {
  padding: 1.5rem;
}

.greatbars-team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.greatbars-team-name {
  color: var(--greatbars-dark);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.greatbars-team-description {
  color: var(--greatbars-text);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
}

.greatbars-cta-section {
  background: linear-gradient(135deg, var(--greatbars-primary) 0%, var(--greatbars-accent) 100%);
  color: white;
}

.greatbars-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.greatbars-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.greatbars-cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.greatbars-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.greatbars-cta-btn-primary {
  background: white;
  color: var(--greatbars-primary);
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
}

.greatbars-cta-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  font-weight: 600;
}

.greatbars-table-wrapper {
  overflow-x: auto;
}

.greatbars-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.greatbars-table thead tr {
  background: var(--greatbars-light-gray);
}

.greatbars-table th,
.greatbars-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #ddd;
}

.greatbars-table th {
  font-weight: 600;
}

.greatbars-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

.greatbars-table code {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.greatbars-info-text {
  text-align: left;
  color: var(--greatbars-text);
  line-height: 1.6;
}

.greatbars-info-text p {
  margin-bottom: 1rem;
}

.greatbars-info-text p:last-child {
  margin-bottom: 0;
}

.greatbars-info-text strong {
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .greatbars-contact-grid,
  .greatbars-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .greatbars-form-grid-2col,
  .greatbars-form-grid-3col {
    grid-template-columns: 1fr;
  }
  
  .greatbars-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .greatbars-cta-title {
    font-size: 2rem;
  }
  
  .greatbars-cta-description {
    font-size: 1rem;
  }
}

/* Additional heading and text styles */
.greatbars-content-h3-large {
  color: var(--greatbars-primary);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.greatbars-content-h3-medium {
  color: var(--greatbars-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.greatbars-content-h2-large {
  color: var(--greatbars-primary);
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.greatbars-text-color {
  color: var(--greatbars-text);
}

.greatbars-dark-color {
  color: var(--greatbars-dark);
}