/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #dc2626;
  --secondary-color: #991b1b;
  --accent-color: #fbbf24;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Header Styles */
.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  min-width: 280px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header {
  padding: 0.75rem 1rem 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-link:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 1.25rem;
}

.dropdown-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 0.5rem 0;
}

.dropdown-view-all {
  font-weight: 600;
  color: var(--primary-color);
  border-top: 1px solid var(--border-color);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.dropdown-view-all:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Mobile Menu Animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  height: 50vh;
  
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
    position: relative;
   
    }

    /* Add a shadow overlay to the hero background */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
       background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
        border-radius: inherit;
    }

    .hero > * {
        position: relative;
        z-index: 2;
}

.hero-content {
  max-width: 800px;
  padding: 0 1rem;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Main Content */
.main {
  margin-top: 70px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Card Styles */
.card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.card-overlay h3 {
  color: white;
  margin: 0;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  background-color: var(--bg-light);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb */
.breadcrumb {
  background-color: var(--bg-light);
  padding: 1rem 0;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-light);
}

.breadcrumb-list a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--primary-color);
}

/* Content Sections */
.content-section {
  padding: 2rem 0;
}

.content-section h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.content-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  /* Mobile Dropdown Styles */
  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    justify-content: center;
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 1;
    visibility: visible;
  }

  .dropdown.active .dropdown-menu {
            max-height: max-content;
        transform: none;
  }

  .dropdown-header {
    padding: 0.5rem 1rem 0.25rem;
    font-size: 0.75rem;
    background: var(--bg-white);
    margin: 0;
  }

  .dropdown-link {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
  }

  .dropdown-link:hover {
    padding-left: 1.5rem;
    background-color: white;
  }

  .dropdown-divider {
    margin: 0;
    background-color: var(--border-color);
  }

  .dropdown-view-all {
    background: var(--primary-color);
    color: white;
    border-top: none;
    margin-top: 0;
    padding-top: 0.75rem;
  }

  .dropdown-view-all:hover {
    background-color: var(--secondary-color);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 2rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }

  .card-content {
    padding: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}


        /* Contact Form Enhancements */
        .contact-form-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }

        .contact-form {
            max-width: 100%;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #fff;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
            transform: translateY(-1px);
        }

        .form-group input:invalid:not(:focus),
        .form-group select:invalid:not(:focus),
        .form-group textarea:invalid:not(:focus) {
            border-color: #ef4444;
        }

        .form-group input:valid,
        .form-group select:valid,
        .form-group textarea:valid {
            border-color: #10b981;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Custom Checkbox Styles */
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .checkbox-label input[type="checkbox"] {
            display: none;
        }

        .checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid #e2e8f0;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .checkbox-label input[type="checkbox"]:checked + .checkmark {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .checkbox-label:hover .checkmark {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        /* Contact Information Enhancements */
        .contact-info-section {
            background: linear-gradient(135deg, #fef7f7 0%, #fee2e2 100%);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #fecaca;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            font-size: 2rem;

            flex-shrink: 0;
        }

        .contact-details h3 {
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-size: 1.1rem;
        }

        .contact-details p {
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        .contact-details a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-details a:hover {
            text-decoration: underline;
        }

        .contact-details small {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-links a {
            padding: 0.5rem 1rem;
            background: var(--bg-light);
            border-radius: 6px;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .social-links a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-1px);
        }

        /* Business Hours */
        .contact-hours {
            margin-top: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: #f8fafc;
            border-radius: 6px;
            border-left: 3px solid var(--primary-color);
        }

        .hours-item:nth-child(odd) {
            background: #f1f5f9;
        }

        /* FAQ Section Enhancements */
        .faq-section {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
        }

        .faq-item.active .faq-question {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .faq-toggle {
            font-size: 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            background: rgba(255, 255, 255, 0.3);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer p {
            padding: 1.5rem;
            margin: 0;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Form Validation Messages */
        .form-message {
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 1rem;
            display: none;
            font-weight: 500;
        }

        .form-message.success {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #bbf7d0;
        }

        .form-message.error {
            background: #fef2f2;
            color: #dc2626;
            border: 1px solid #fecaca;
        }

        .field-error {
            display: none;
            color: #ef4444;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        .char-counter {
            display: block;
            text-align: right;
            margin-top: 0.5rem;
            color: #6b7280;
            font-size: 0.875rem;
        }

        .form-group.focused input,
        .form-group.focused select,
        .form-group.focused textarea {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        /* Loading Animation */
        .btn.loading {
            position: relative;
            color: transparent;
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Animation Classes */
        .animate-in {
            animation: slideInUp 0.6s ease forwards;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-icon {
            transition: all 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-form-section,
            .contact-info-section {
                padding: 1.5rem;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .contact-icon {
                font-size: 1.5rem;
            }

            .social-links {
                justify-content: center;
            }

            .hours-item {
                flex-direction: column;
                gap: 0.25rem;
                text-align: center;
            }

            .faq-question {
                padding: 1rem;
            }

            .faq-answer p {
                padding: 1rem;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 14px 16px;
                font-size: 16px; /* Prevents zoom on iOS */
            }
        }

/* ============================
   NEW HOMEPAGE SECTIONS STYLES
   ============================ */

/* Travel Tips Section */
.tip-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Seasonal Highlights Section */
.seasonal-highlights {
    background: var(--bg-light);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.season-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.season-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.season-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.season-card:hover .season-image img {
    transform: scale(1.05);
}

.season-content {
    padding: 1.5rem;
}

.season-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.season-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.season-content ul {
    list-style: none;
    padding: 0;
}

.season-content li {
    color: var(--text-light);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.season-content li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Season-specific colors */
.season-card.spring h3 { color: #10b981; }
.season-card.summer h3 { color: #f59e0b; }
.season-card.autumn h3 { color: #dc2626; }
.season-card.winter h3 { color: #3b82f6; }

/* Polish Cuisine Section */
.cuisine-section {
    background: var(--bg-white);
}

.cuisine-intro {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 3rem;
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.dish-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.dish-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.dish-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dish-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    font-size: 1rem;
    color: #fbbf24;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .season-image {
        height: 150px;
    }
    
    .season-content {
        padding: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .tip-card,
    .dish-card {
        padding: 1.5rem;
    }
    
    .tip-icon,
    .dish-icon {
        font-size: 2.5rem;
    }
    
    .cuisine-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
        font-size: 1rem;
    }
}

/* ============================
   DESTYNACJE PAGE SPECIFIC STYLES
   ============================ */

/* Featured Destination Cards */
.featured-destination {
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.featured-destination:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.card-highlights span {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card-highlights span:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.featured-destination .card-content h3 a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.featured-destination .card-content h3 a:hover {
    color: var(--primary-color);
}

/* Region Cards */
.region-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--bg-white) 0%, #f0f9ff 100%);
}

.region-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.region-cities {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.region-cities a {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.region-cities a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* More Cities Section - Compact Cards */
.section .grid-4 .card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.section .grid-4 .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.card-features span {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.section .grid-4 .card h3 a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.section .grid-4 .card h3 a:hover {
    color: var(--secondary-color);
}

/* Call to Action Section */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .btn {
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

/* Enhanced Section Styling */
.section h2 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section .container > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: left;
    line-height: 1.7;
}

/* Destination Card Image Overlays */
.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-destination:hover .card-image::after {
    opacity: 1;
}

/* Button Enhancements */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline:hover {
    color: white;
    border-color: var(--primary-color);
}

/* Interactive Elements */
.featured-destination .card-content {
    position: relative;
}

.featured-destination .card-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: inherit;
}

.featured-destination:hover .card-content::before {
    opacity: 1;
}

/* Loading Animation for Images */
.card-image img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

.card-image img[loading="lazy"]:not([src]) {
    opacity: 0;
}

/* Enhanced Typography */
.section .container > h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: left;
}

.section .container > h2:first-of-type {
    text-align: left;
}

/* Responsive Design for Destynacje Page */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .card-highlights {
        justify-content: center;
    }
    
    .card-features {
        justify-content: center;
    }
    
    .section .container > h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section .container > p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .card-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .card-highlights span,
    .card-features span {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .featured-destination .card-content {
        padding: 1rem;
    }
    
    .region-card .card-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .tip-card,
    .dish-card,
    .testimonial-card {
        padding: 1rem;
    }
    
    .season-content {
        padding: 0.75rem;
    }
    
    .testimonial-card:before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .cuisine-intro {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* UNESCO World Heritage Sites Section */
.unesco-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.unesco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.unesco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.unesco-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.unesco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.unesco-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.unesco-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.unesco-card:hover .unesco-image img {
    transform: scale(1.05);
}

.unesco-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.unesco-content {
    padding: 25px;
}

.unesco-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.unesco-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.unesco-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.unesco-year, .unesco-type {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid #e9ecef;
}

.btn-unesco {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-unesco:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.unesco-info {
    margin-top: 50px;
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.unesco-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unesco-description {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Interactive Travel Planner Section */
.travel-planner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.travel-planner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m0 40l40-40h-40v40zm40 0v-40h-40l40 40z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.travel-planner .section-title h2,
.travel-planner .section-title p {
    color: white;
}

.planner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.planner-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.planner-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-step {
    margin-bottom: 30px;
}

.form-step label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.days-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.day-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.day-btn:hover, .day-btn.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.interest-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interest-item:hover, .interest-item.selected {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.interest-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.interest-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.budget-slider {
    margin-top: 15px;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.budget-display {
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.generate-route-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    color: #2d3436;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.generate-route-btn:hover {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 234, 167, 0.3);
}

.route-suggestions {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.route-suggestions h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

.route-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.route-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.route-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.route-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.route-city {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.route-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.route-card p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.route-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.route-highlights span {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.custom-route {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.custom-route h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.custom-route a {
    color: #ffeaa7;
    font-weight: 600;
    text-decoration: underline;
}

.custom-route a:hover {
    color: #fdcb6e;
}

/* O-nas (About Us) Page Specific Styles */
.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 50px 0 25px 0;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 2px;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.content-section ul {
    margin: 25px 0;
    padding-left: 0;
        list-style: none;
}

.content-section ul li {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.content-section ul li strong {
    color: #2c3e50;
    font-weight: 600;
}

.content-section a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.content-section a:hover {
    border-bottom-color: #007bff;
}

/* Grid Layouts for About Page */


/* About Page Cards */
.content-section .card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.content-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.content-section .card-content {
    padding: 30px;
}

.content-section .card-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section .card-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Feature Items for Values Section */
.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #007bff;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Section Styling */
.section.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section.features .container {
    position: relative;
    z-index: 1;
}

.section.features .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section.features .section-title h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section.features .section-title p {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Typography Enhancements */
.content-section h2:nth-of-type(1) {
    color: #007bff;
}

.content-section h2:nth-of-type(2) {
    color: #28a745;
}

.content-section h2:nth-of-type(3) {
    color: #dc3545;
}

.content-section h2:nth-of-type(4) {
    color: #6f42c1;
}

.content-section h2:nth-of-type(5) {
    color: #fd7e14;
}

.content-section h2:nth-of-type(6) {
    color: #20c997;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    /* UNESCO Section Mobile */
    .unesco-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .unesco-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .unesco-info {
        padding: 25px;
    }
    
    /* Travel Planner Mobile */
    .planner-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .planner-form, .route-suggestions {
        padding: 25px;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .interest-item {
        padding: 15px;
    }
    
    .interest-icon {
        font-size: 1.5rem;
    }
    
    .days-selector {
        justify-content: center;
    }
    
    .route-cities {
        justify-content: center;
    }
    
    .route-highlights {
        justify-content: center;
    }
    
    /* About Page Mobile Styles */
    .content-section h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .content-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .content-section p {
        font-size: 1rem;
        text-align: left;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-section .card-content {
        padding: 20px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .section.features .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Enhanced Card Styles with Images */
.image-card {
    overflow: hidden;
    position: relative;
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .card-image img {
    transform: scale(1.05);
}

.card-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.card-features span {
    background: #f8f9fa;
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Museums Section */
.museums-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.museums-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23007bff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 4.418-3.582 8-8 8s-8-3.582-8-8 3.582-8 8-8 8 3.582 8 8zm0-20v8c-4.418 0-8-3.582-8-8s3.582-8 8-8z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.museums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.museum-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.museum-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.museum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.museum-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.museum-card.featured .museum-image {
    height: 100%;
}

.museum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.museum-card:hover .museum-image img {
    transform: scale(1.05);
}

.museum-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.museum-content {
    padding: 25px;
}

.museum-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.museum-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.museum-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.museum-type, .museum-time, .museum-price {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid #e9ecef;
}

.museum-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.museum-highlights span {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Gastronomy Section */
.gastronomy-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.gastronomy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.gastronomy-section .section-title h2,
.gastronomy-section .section-title p {
    color: white;
}

.gastronomy-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.intro-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.dish-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dish-card.specialty {
    border: 2px solid rgba(255, 234, 167, 0.5);
    background: rgba(255, 234, 167, 0.1);
}

.dish-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.dish-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.dish-content h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.dish-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.dish-details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dish-origin, .dish-type, .dish-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.restaurants-section {
    margin-top: 60px;
}

.restaurants-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.restaurant-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.restaurant-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.restaurant-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.restaurant-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.restaurant-features span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Events Section */
.events-section {
    background: white;
    position: relative;
}

.events-calendar {
    margin: 50px 0;
}

.season-events {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.season-events.spring {
    background: linear-gradient(135deg, #a8e6cf 0%, #7fcdcd 100%);
}

.season-events.summer {
    background: linear-gradient(135deg, #ffd93d 0%, #74b9ff 100%);
}

.season-events.autumn {
    background: linear-gradient(135deg, #fab1a0 0%, #e17055 100%);
}

.season-events.winter {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.season-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.season-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.season-header h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.events-list {
    padding: 30px;
}

.event-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-item.featured {
    border: 3px solid rgba(255, 234, 167, 0.8);
    background: rgba(255, 248, 220, 0.95);
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: #2c3e50;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    height: fit-content;
}

.event-content h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.event-tags span {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.venues-section {
    margin-top: 60px;
}

.venues-section h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.venue-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.venue-image {
    height: 200px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.05);
}

.venue-content {
    padding: 25px;
}

.venue-content h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.venue-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.venue-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.venue-features span {
    background: #f8f9fa;
    color: #495057;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Responsive Design for Gdansk Page */
@media (max-width: 768px) {
    .museum-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .museums-grid,
    .dishes-grid,
    .restaurants-grid,
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gastronomy-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-image {
        order: -1;
    }
    
    .intro-image img {
        height: 200px;
    }
    
    .event-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .event-date {
        width: 120px;
        margin: 0 auto;
    }
    
    .season-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .dish-card,
    .restaurant-card,
    .museum-card {
        padding: 20px;
    }
    
    .museum-content,
    .venue-content {
        padding: 20px;
    }
}

/* Katowice Page Specific Styles */

/* Architecture Section */
.architecture-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

.architecture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231976d2' fill-opacity='0.03'%3E%3Cpath d='M20 0v40M0 20h40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.landmark-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.landmark-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.landmark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.landmark-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.landmark-card.featured .landmark-image {
    height: 100%;
}

.landmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landmark-card:hover .landmark-image img {
    transform: scale(1.05);
}

.landmark-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.landmark-content {
    padding: 25px;
}

.landmark-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.landmark-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.landmark-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.landmark-year, .landmark-type, .landmark-capacity, .landmark-size, .landmark-height, .landmark-daily {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid #e9ecef;
}

.landmark-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.landmark-features span {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Heritage Section */
.heritage-section {
    background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.heritage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.heritage-section .section-title h2,
.heritage-section .section-title p {
    color: white;
}

.heritage-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.intro-content h3 {
    color: #ffa726;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.heritage-sites {
    margin: 50px 0;
}

.heritage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.heritage-card.major {
    border: 2px solid rgba(255, 167, 38, 0.5);
    background: rgba(255, 167, 38, 0.1);
}

.heritage-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.heritage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.heritage-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.heritage-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.heritage-timeline {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 120px;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffa726;
    margin-bottom: 5px;
}

.timeline-event {
    font-size: 0.9rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.heritage-details, .heritage-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.heritage-details span, .heritage-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mining-culture {
    margin-top: 60px;
}

.mining-culture h3 {
    color: #ffa726;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.culture-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.culture-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.culture-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.culture-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.culture-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Culture Section */
.culture-section {
    background: white;
    position: relative;
}

.culture-venues {
    margin: 50px 0;
}

.venue-card.premium {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 30px;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.venue-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.venue-programs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.venue-programs span {
    background: #f3e5f5;
    color: #7b1fa2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.festivals-calendar {
    margin-top: 60px;
}

.festivals-calendar h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.festivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.festival-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.festival-item.featured {
    border: 3px solid #ff9800;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.festival-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.festival-month {
    background: #2c3e50;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    min-width: 60px;
}

.festival-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.festival-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Cuisine Section */
.cuisine-section {
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cuisine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='20'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cuisine-section .section-title h2,
.cuisine-section .section-title p {
    color: white;
}

.cuisine-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.intro-text h3 {
    color: #fff9c4;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.dishes-showcase {
    margin: 50px 0;
}

.dish-category {
    margin-bottom: 50px;
}

.dish-category h3 {
    color: #fff9c4;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dish-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dish-card.traditional {
    border: 2px solid rgba(255, 249, 196, 0.5);
    background: rgba(255, 249, 196, 0.1);
}

.dish-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.dish-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.dish-content h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dish-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.dish-info {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dish-info span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurants-recommendations {
    margin-top: 60px;
}

.restaurants-recommendations h3 {
    color: #fff9c4;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.restaurant-card.premium {
    border: 2px solid rgba(255, 249, 196, 0.5);
    background: rgba(255, 249, 196, 0.1);
}

.restaurant-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.restaurant-header h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.restaurant-rating {
    color: #ffd54f;
    font-size: 0.9rem;
}

.restaurant-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.restaurant-details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.restaurant-details span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Parks Section */
.parks-section {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    position: relative;
    overflow: hidden;
}

.parks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234caf50' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v40c11.046 0 20-8.954 20-20z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.parks-showcase {
    margin: 50px 0;
}

.park-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.park-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.park-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.park-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.park-card.featured .park-image {
    height: 100%;
}

.park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.park-card:hover .park-image img {
    transform: scale(1.05);
}

.park-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.park-content {
    padding: 25px;
}

.park-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.park-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.park-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.park-size, .park-visitors, .park-established {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid #e9ecef;
}

.park-attractions, .park-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.park-attractions span, .park-features span {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.parks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.recreation-activities {
    margin-top: 60px;
}

.recreation-activities h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.activity-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.activity-content h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.activity-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.activity-details {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.activity-details span {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.seasonal-activities {
    margin-top: 50px;
}

.seasonal-activities h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.season-card {
    border-radius: 15px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.season-card.spring {
    background: linear-gradient(135deg, #81c784, #4caf50);
}

.season-card.summer {
    background: linear-gradient(135deg, #ffb74d, #ff9800);
}

.season-card.autumn {
    background: linear-gradient(135deg, #ff8a65, #ff5722);
}

.season-card.winter {
    background: linear-gradient(135deg, #64b5f6, #2196f3);
}

.season-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.season-content h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.season-content ul {
    list-style: none;
    padding: 0;
}

.season-content li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
}

.season-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

/* Transport Section */
.transport-section {
    background: white;
    position: relative;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.transport-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.transport-card.primary {
    grid-column: span 2;
    border: 2px solid #007bff;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.transport-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #007bff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.transport-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.transport-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.transport-details {
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-label {
    color: #495057;
    font-weight: 500;
}

.detail-value {
    color: #2c3e50;
    font-weight: 600;
}

.transport-tips h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    font-weight: 700;
}

.transport-tips ul {
    list-style: none;
    padding: 0;
}

.transport-tips li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.transport-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.rail-connections, .airport-info, .roads-info, .parking-info {
    margin: 20px 0;
}

.connection-group, .info-item, .road-item {
    margin-bottom: 15px;
}

.connection-group h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.connection-group ul {
    list-style: none;
    padding: 0;
}

.connection-group li {
    padding: 3px 0;
    color: #6c757d;
}

.info-item, .road-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-label, .road-name {
    color: #495057;
    font-weight: 500;
}

.info-value, .road-direction {
    color: #2c3e50;
    font-weight: 600;
}

.accommodation-section {
    margin-top: 60px;
}

.accommodation-section h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.accommodation-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.accommodation-card.luxury {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fffde7, #fff9c4);
}

.accommodation-card.mid-range {
    border: 2px solid #4caf50;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e8);
}

.accommodation-card.budget {
    border: 2px solid #2196f3;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.hotel-rating {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffa726;
}

.accommodation-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.accommodation-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.accommodation-card li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.accommodation-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.price-range {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: 8px;
}

.practical-tips {
    margin-top: 50px;
}

.practical-tips h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.tip-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.tip-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Krakow Page Specific Styles */

/* Jewish Heritage Section */
.jewish-heritage-section {
    background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.jewish-heritage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpolygon points='30,0 60,30 30,60 0,30'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.jewish-heritage-section .section-title h2,
.jewish-heritage-section .section-title p {
    color: white;
}

.heritage-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.heritage-content h3 {
    color: #ffd54f;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.heritage-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.heritage-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.heritage-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.synagogues-section {
    margin: 50px 0;
}

.synagogues-section h3 {
    color: #ffd54f;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.synagogues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.synagogue-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.synagogue-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.synagogue-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.synagogue-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.synagogue-card.featured .synagogue-image {
    height: 100%;
}

.synagogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.synagogue-card:hover .synagogue-image img {
    transform: scale(1.05);
}

.synagogue-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd54f, #ffc107);
    color: #3e2723;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
}

.synagogue-content {
    padding: 25px;
}

.synagogue-content h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.synagogue-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.synagogue-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.synagogue-year, .synagogue-style, .synagogue-status {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.synagogue-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.synagogue-features span {
    background: rgba(255, 213, 79, 0.2);
    color: #ffd54f;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.culture-revival {
    margin-top: 60px;
}

.culture-revival h3 {
    color: #ffd54f;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.revival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.revival-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.revival-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.revival-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.revival-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.revival-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Outdoor Activities Section */
.outdoor-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    position: relative;
    overflow: hidden;
}

.outdoor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234caf50' fill-opacity='0.1'%3E%3Cpath d='M20 0l20 20-20 20L0 20z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.activities-showcase {
    margin: 50px 0;
}

.activity-category {
    margin-bottom: 50px;
}

.activity-category h3 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.activity-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.activity-card.featured .activity-image {
    height: 100%;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.activity-content {
    padding: 25px;
}

.activity-content h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.activity-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.activity-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.activity-distance, .activity-time, .activity-level {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid #e9ecef;
}

.activity-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.activity-highlights span {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.seasonal-activities {
    margin-top: 60px;
}

.seasonal-activities h3 {
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.seasons-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.season-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.season-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.season-item.spring {
    border-top: 4px solid #4caf50;
}

.season-item.summer {
    border-top: 4px solid #ff9800;
}

.season-item.autumn {
    border-top: 4px solid #ff5722;
}

.season-item.winter {
    border-top: 4px solid #2196f3;
}

.season-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.season-content h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.season-content ul {
    list-style: none;
    padding: 0;
}

.season-content li {
    padding: 8px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.season-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Krakow Responsive Design */
@media (max-width: 768px) {
    .synagogue-card.featured,
    .activity-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .heritage-intro,
    .cuisine-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .heritage-image,
    .intro-image {
        order: -1;
    }
    
    .heritage-image img,
    .intro-image img {
        height: 200px;
    }
    
    .synagogues-grid,
    .activities-grid,
    .revival-grid,
    .seasons-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .synagogue-content,
    .activity-content {
        padding: 20px;
    }
}

/* Katowice Responsive Design */
@media (max-width: 768px) {
    .landmark-card.featured,
    .venue-card.premium,
    .park-card.featured,
    .transport-card.primary {
        grid-column: span 1;
        display: block;
    }
    
    .landmarks-grid,
    .venues-grid,
    .parks-grid,
    .dishes-grid,
    .restaurants-grid,
    .activities-grid,
    .seasons-grid,
    .transport-grid,
    .accommodation-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .heritage-intro,
    .cuisine-intro,
    .intro-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .intro-image {
        order: -1;
    }
    
    .intro-image img {
        height: 200px;
    }
    
    .heritage-timeline,
    .festivals-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .festival-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .landmark-content,
    .park-content,
    .venue-content {
        padding: 20px;
    }
}

/* Lublin Specific Styles */

/* Historic Attractions Section - Lublin */
.historic-attractions-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.historic-attractions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/castle-on-blue-sky-background-9704.webp') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.attraction-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.15);
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.2);
}

.attraction-card.featured {
    border: 2px solid rgba(139, 69, 19, 0.3);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(160, 82, 45, 0.05) 100%);
}

.attraction-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attraction-content {
    padding: 25px;
}

.attraction-content h3 {
    font-size: 1.4rem;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 600;
}

.attraction-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.attraction-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.attraction-details span {
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.attraction-features span {
    background: rgba(139, 69, 19, 0.05);
    color: #8B4513;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(139, 69, 19, 0.15);
}

/* Multicultural Heritage Section - Lublin */
.multicultural-section {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.multicultural-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/historic-square-in-poland-with-colorful-buildings-and-blue-sky-1382.webp') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.heritage-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-content h3 {
    font-size: 2rem;
    color: #4B0082;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(75, 0, 130, 0.2);
}

.intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.heritage-sites {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.heritage-sites h3 {
    font-size: 1.8rem;
    color: #4B0082;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.heritage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 130, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.heritage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.2);
}

.heritage-card.major {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border: 2px solid rgba(75, 0, 130, 0.3);
}

.heritage-icon {
    font-size: 2.5rem;
    padding: 15px;
    background: linear-gradient(135deg, #9370DB 0%, #BA55D3 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 70px;
}

.heritage-content h4 {
    font-size: 1.3rem;
    color: #4B0082;
    margin-bottom: 15px;
    font-weight: 600;
}

.heritage-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.heritage-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.heritage-details span {
    background: rgba(75, 0, 130, 0.1);
    color: #4B0082;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(75, 0, 130, 0.2);
}

.traditions-section {
    position: relative;
    z-index: 1;
}

.traditions-section h3 {
    font-size: 1.8rem;
    color: #4B0082;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.traditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tradition-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 130, 0.2);
}

.tradition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.2);
}

.tradition-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #9370DB 0%, #BA55D3 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tradition-content h4 {
    font-size: 1.3rem;
    color: #4B0082;
    margin-bottom: 15px;
    font-weight: 600;
}

.tradition-content p {
    color: #666;
    line-height: 1.6;
}

/* Nature Section - Lublin */
.nature-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.nature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/lush-green-forest-beautiful-nature-trail-3114.webp') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.nature-showcase {
    position: relative;
    z-index: 1;
}

.nature-category {
    margin-bottom: 60px;
}

.nature-category h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.nature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.nature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.nature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.2);
}

.nature-card.featured {
    border: 2px solid rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(139, 195, 74, 0.05) 100%);
}

.nature-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.nature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nature-card:hover .nature-image img {
    transform: scale(1.05);
}

.nature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nature-content {
    padding: 25px;
}

.nature-content h4 {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 600;
}

.nature-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nature-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.nature-details span {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.nature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nature-highlights span {
    background: rgba(76, 175, 80, 0.05);
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.seasonal-activities {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.seasonal-activities h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

/* Transport Section - Lublin */
.transport-section {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(30, 136, 229, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.transport-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/historic-train-station-busy-platform-morning-light-1727.webp') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.transport-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.transport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(33, 150, 243, 0.2);
}

.transport-card.primary {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(30, 136, 229, 0.05) 100%);
    border: 2px solid rgba(33, 150, 243, 0.3);
}

.transport-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #2196F3 0%, #1E88E5 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.transport-content h3 {
    font-size: 1.5rem;
    color: #1976D2;
    margin-bottom: 15px;
    font-weight: 600;
}

.transport-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.transport-details {
    background: rgba(33, 150, 243, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #1976D2;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: 600;
}

.transport-tips h4 {
    color: #1976D2;
    margin-bottom: 15px;
    font-weight: 600;
}

.transport-tips ul {
    list-style: none;
    padding: 0;
}

.transport-tips li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.transport-tips li:last-child {
    border-bottom: none;
}

.rail-connections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.connection-group h4 {
    color: #1976D2;
    margin-bottom: 15px;
    font-weight: 600;
}

.connection-group ul {
    list-style: none;
    padding: 0;
}

.connection-group li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.connection-group li:last-child {
    border-bottom: none;
}

.airport-info, .roads-info {
    background: rgba(33, 150, 243, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.info-item, .road-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.info-item:last-child, .road-item:last-child {
    border-bottom: none;
}

.info-label, .road-name {
    color: #1976D2;
    font-weight: 500;
}

.info-value, .road-direction {
    color: #333;
    font-weight: 600;
}

.parking-info {
    margin-top: 20px;
}

.parking-info h4 {
    color: #1976D2;
    margin-bottom: 15px;
    font-weight: 600;
}

.parking-info ul {
    list-style: none;
    padding: 0;
}

.parking-info li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.parking-info li:last-child {
    border-bottom: none;
}

.accommodation-section {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.accommodation-section h3 {
    font-size: 1.8rem;
    color: #1976D2;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.accommodation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.accommodation-card.luxury {
    border-left: 4px solid #FFD700;
}

.accommodation-card.mid-range {
    border-left: 4px solid #2196F3;
}

.accommodation-card.budget {
    border-left: 4px solid #4CAF50;
}

.hotel-rating {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.accommodation-card h4 {
    color: #1976D2;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.accommodation-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.accommodation-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.accommodation-card li:last-child {
    border-bottom: none;
}

.price-range {
    text-align: center;
    font-weight: 600;
    color: #1976D2;
    background: rgba(33, 150, 243, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.practical-tips {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.practical-tips h3 {
    font-size: 1.8rem;
    color: #1976D2;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #2196F3 0%, #1E88E5 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tip-card h4 {
    color: #1976D2;
    margin-bottom: 15px;
    font-weight: 600;
}

.tip-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tip-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.tip-card li:last-child {
    border-bottom: none;
}

/* Poznan Specific Styles */

/* Landmarks Section - Poznan */
.landmarks-section {
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.1) 0%, rgba(210, 180, 140, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.landmarks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/historic-town-hall-in-poland-9277.webp') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.landmark-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(205, 133, 63, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(205, 133, 63, 0.15);
}

.landmark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(205, 133, 63, 0.2);
}

.landmark-card.featured {
    border: 2px solid rgba(205, 133, 63, 0.3);
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.05) 0%, rgba(210, 180, 140, 0.05) 100%);
}

.landmark-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.landmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landmark-card:hover .landmark-image img {
    transform: scale(1.05);
}

.landmark-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #CD853F 0%, #D2B48C 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landmark-content {
    padding: 25px;
}

.landmark-content h3 {
    font-size: 1.4rem;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 600;
}

.landmark-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.landmark-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.landmark-details span {
    background: rgba(205, 133, 63, 0.1);
    color: #8B4513;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(205, 133, 63, 0.2);
}

.landmark-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landmark-features span {
    background: rgba(205, 133, 63, 0.05);
    color: #8B4513;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(205, 133, 63, 0.15);
}

/* Commerce Section - Poznan */
.commerce-section {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.1) 0%, rgba(100, 149, 237, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.commerce-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/historic-train-station-busy-platform-morning-light-1727.webp') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.commerce-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-content h3 {
    font-size: 2rem;
    color: #4682B4;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(70, 130, 180, 0.2);
}

.intro-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.business-heritage {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.business-heritage h3 {
    font-size: 1.8rem;
    color: #4682B4;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.heritage-timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.timeline-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(70, 130, 180, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 180, 0.2);
    min-width: 250px;
}

.timeline-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(70, 130, 180, 0.2);
}

.timeline-item.medieval {
    border-top: 4px solid #8B4513;
}

.timeline-item.industrial {
    border-top: 4px solid #696969;
}

.timeline-item.modern {
    border-top: 4px solid #4682B4;
}

.timeline-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #4682B4 0%, #6495ED 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: #4682B4;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.timeline-details span {
    background: rgba(70, 130, 180, 0.1);
    color: #4682B4;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(70, 130, 180, 0.2);
}

.modern-business {
    position: relative;
    z-index: 1;
}

.modern-business h3 {
    font-size: 1.8rem;
    color: #4682B4;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.business-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(70, 130, 180, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 180, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(70, 130, 180, 0.2);
}

.business-icon {
    font-size: 2.5rem;
    padding: 15px;
    background: linear-gradient(135deg, #4682B4 0%, #6495ED 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 70px;
}

.business-content h4 {
    font-size: 1.3rem;
    color: #4682B4;
    margin-bottom: 15px;
    font-weight: 600;
}

.business-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.business-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.business-features span {
    background: rgba(70, 130, 180, 0.1);
    color: #4682B4;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(70, 130, 180, 0.2);
}

/* Enhanced Card Styles for existing sections */
.card-image {
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Szczecin-specific styles */
.maritime-section {
    background: linear-gradient(135deg, #e6f3ff 0%, #b3d9ff 100%);
    position: relative;
    overflow: hidden;
}

.maritime-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%234a90e2" fill-opacity="0.05"><path d="M30 30l10-10v20l-10-10zm-10 10h20v-20h-20v20z"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.maritime-section .container {
    position: relative;
    z-index: 2;
}

.maritime-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.maritime-intro .intro-text h3 {
    color: #1e40af;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.maritime-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1rem;
}

.maritime-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.maritime-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.maritime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.maritime-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.maritime-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.maritime-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.maritime-content h4 {
    color: #1e40af;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.maritime-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.maritime-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.maritime-features span {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

/* Nature Section Styles */
.nature-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
}

.nature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2316a34a" fill-opacity="0.05"><circle cx="20" cy="20" r="4"/><circle cx="20" cy="20" r="8" fill="none" stroke="%2316a34a" stroke-width="1"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.nature-section .container {
    position: relative;
    z-index: 2;
}

.nature-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.nature-intro .intro-text h3 {
    color: #16a34a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.nature-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1rem;
}

.nature-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nature-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.nature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.nature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.nature-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.nature-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.nature-card.featured .nature-image {
    height: 100%;
}

.nature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nature-card:hover .nature-image img {
    transform: scale(1.05);
}

.nature-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(22, 163, 74, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nature-content {
    padding: 2rem;
}

.nature-content h3 {
    color: #16a34a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.nature-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nature-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nature-features span {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Transport Section Styles */
.szc-transport-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
}

.szc-transport-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d97706" fill-opacity="0.05"><rect x="15" y="20" width="20" height="10" rx="2"/><circle cx="20" cy="30" r="3"/><circle cx="30" cy="30" r="3"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.szc-transport-section .container {
    position: relative;
    z-index: 2;
}

.szc-transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.szc-transport-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.szc-transport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.szc-transport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.szc-transport-content h4 {
    color: #d97706;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.szc-transport-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.szc-transport-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.szc-transport-options span {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

/* Responsive Design for Szczecin sections */
@media (max-width: 768px) {
    .maritime-intro,
    .nature-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nature-card.featured {
        grid-template-columns: 1fr;
    }
    
    .nature-card.featured .nature-image {
        height: 250px;
    }
    
    .maritime-grid,
    .nature-grid,
    .szc-transport-grid {
        grid-template-columns: 1fr;
    }
}

/* Torun-specific styles */
.torun-landmarks-section {
    background: linear-gradient(135deg, #8b5a2b 0%, #d2691e 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.torun-landmarks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f4a460" fill-opacity="0.1"><path d="M40 40l20-20v40l-20-20zm-20 20h40v-40h-40v40z"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.torun-landmarks-section .container {
    position: relative;
    z-index: 2;
}

.torun-landmarks-section .section-title h2,
.torun-landmarks-section .section-title p {
    color: white;
}

.torun-landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.torun-landmark-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.torun-landmark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.torun-landmark-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.torun-landmark-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.torun-landmark-card.featured .torun-landmark-image {
    height: 100%;
}

.torun-landmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.torun-landmark-card:hover .torun-landmark-image img {
    transform: scale(1.05);
}

.torun-landmark-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(139, 90, 43, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.torun-landmark-content {
    padding: 2rem;
}

.torun-landmark-content h3 {
    color: #8b5a2b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.torun-landmark-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.torun-landmark-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.torun-landmark-details span {
    background: rgba(139, 90, 43, 0.1);
    color: #8b5a2b;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(139, 90, 43, 0.2);
}

/* Copernicus Section */
.copernicus-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.copernicus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.1"><circle cx="30" cy="30" r="15"/><circle cx="30" cy="30" r="8"/><circle cx="30" cy="30" r="3"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.copernicus-section .container {
    position: relative;
    z-index: 2;
}

.copernicus-section .section-title h2,
.copernicus-section .section-title p {
    color: white;
}

.copernicus-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.copernicus-intro .intro-text h3 {
    color: #fbbf24;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.copernicus-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.copernicus-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.copernicus-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.copernicus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.copernicus-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.copernicus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.copernicus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.copernicus-content h4 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.copernicus-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.copernicus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.copernicus-features span {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

/* Gingerbread Section */
.gingerbread-section {
    background: linear-gradient(135deg, #92400e 0%, #d97706 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.gingerbread-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.15"><rect x="15" y="15" width="20" height="20" rx="10"/><rect x="20" y="10" width="10" height="5" rx="2"/><rect x="20" y="35" width="10" height="5" rx="2"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.gingerbread-section .container {
    position: relative;
    z-index: 2;
}

.gingerbread-section .section-title h2,
.gingerbread-section .section-title p {
    color: white;
}

.gingerbread-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.gingerbread-intro .intro-text h3 {
    color: #fbbf24;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gingerbread-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fed7aa;
    margin-bottom: 1rem;
}

.gingerbread-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gingerbread-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gingerbread-showcase h3 {
    color: #fbbf24;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.gingerbread-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gingerbread-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.gingerbread-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.gingerbread-card.featured {
    border: 2px solid #fbbf24;
}

.gingerbread-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.gingerbread-content h4 {
    color: #92400e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gingerbread-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gingerbread-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gingerbread-details span {
    background: rgba(146, 64, 14, 0.1);
    color: #92400e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(146, 64, 14, 0.2);
}

/* Gothic Section */
.gothic-section {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.gothic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23a78bfa" fill-opacity="0.1"><path d="M35 10l10 25h-20l10-25zm0 50l-10-25h20l-10 25z"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.gothic-section .container {
    position: relative;
    z-index: 2;
}

.gothic-section .section-title h2,
.gothic-section .section-title p {
    color: white;
}

.gothic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gothic-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.gothic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.gothic-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.gothic-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gothic-card.featured .gothic-image {
    height: 100%;
}

.gothic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gothic-card:hover .gothic-image img {
    transform: scale(1.05);
}

.gothic-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(76, 29, 149, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gothic-content {
    padding: 2rem;
}

.gothic-content h3 {
    color: #4c1d95;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gothic-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gothic-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gothic-features span {
    background: rgba(76, 29, 149, 0.1);
    color: #4c1d95;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(76, 29, 149, 0.2);
}

/* Vistula Section */
.vistula-section {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.vistula-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236ee7b7" fill-opacity="0.1"><path d="M10 30c0 0 10-10 20-10s20 10 20 10-10 10-20 10-20-10-20-10z"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.vistula-section .container {
    position: relative;
    z-index: 2;
}

.vistula-section .section-title h2,
.vistula-section .section-title p {
    color: white;
}

.vistula-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.vistula-intro .intro-text h3 {
    color: #6ee7b7;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vistula-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1fae5;
    margin-bottom: 1rem;
}

.vistula-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vistula-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.vistula-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vistula-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.vistula-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.vistula-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.vistula-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vistula-card:hover .vistula-image img {
    transform: scale(1.05);
}

.vistula-content {
    padding: 2rem;
}

.vistula-content h3 {
    color: #065f46;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vistula-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vistula-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vistula-features span {
    background: rgba(6, 95, 70, 0.1);
    color: #065f46;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(6, 95, 70, 0.2);
}

/* Torun Practical Section */
.torun-practical-section {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.torun-practical-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fed7aa" fill-opacity="0.1"><circle cx="25" cy="25" r="10"/><circle cx="25" cy="25" r="5"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.torun-practical-section .container {
    position: relative;
    z-index: 2;
}

.torun-practical-section .section-title h2,
.torun-practical-section .section-title p {
    color: white;
}

.torun-practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.torun-practical-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.torun-practical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.torun-practical-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.torun-practical-content h4 {
    color: #7c2d12;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.torun-practical-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.torun-practical-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.torun-practical-options span {
    background: rgba(124, 45, 18, 0.1);
    color: #7c2d12;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(124, 45, 18, 0.2);
}

/* Responsive Design for Torun sections */
@media (max-width: 768px) {
    .copernicus-intro,
    .gingerbread-intro,
    .vistula-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .torun-landmark-card.featured,
    .gothic-card.featured {
        grid-template-columns: 1fr;
    }
    
    .torun-landmark-card.featured .torun-landmark-image,
    .gothic-card.featured .gothic-image {
        height: 250px;
    }
    
    .torun-landmarks-grid,
    .copernicus-grid,
    .gingerbread-grid,
    .gothic-grid,
    .vistula-grid,
    .torun-practical-grid {
        grid-template-columns: 1fr;
    }
}

/* Warsaw-specific styles */
.warsaw-landmarks-section {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.warsaw-landmarks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.1"><path d="M40 20l15 20h-30l15-20zm0 40l-15-20h30l-15 20z"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.warsaw-landmarks-section .container {
    position: relative;
    z-index: 2;
}

.warsaw-landmarks-section .section-title h2,
.warsaw-landmarks-section .section-title p {
    color: white;
}

.warsaw-landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.warsaw-landmark-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.warsaw-landmark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.warsaw-landmark-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.warsaw-landmark-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.warsaw-landmark-card.featured .warsaw-landmark-image {
    height: 100%;
}

.warsaw-landmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.warsaw-landmark-card:hover .warsaw-landmark-image img {
    transform: scale(1.05);
}

.warsaw-landmark-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(185, 28, 28, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warsaw-landmark-content {
    padding: 2rem;
}

.warsaw-landmark-content h3 {
    color: #b91c1c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.warsaw-landmark-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.warsaw-landmark-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.warsaw-landmark-details span {
    background: rgba(185, 28, 28, 0.1);
    color: #b91c1c;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(185, 28, 28, 0.2);
}

/* Modern Warsaw Section */
.modern-warsaw-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.modern-warsaw-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236b7280" fill-opacity="0.1"><rect x="20" y="10" width="5" height="40"/><rect x="30" y="5" width="5" height="50"/><rect x="10" y="15" width="5" height="30"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.modern-warsaw-section .container {
    position: relative;
    z-index: 2;
}

.modern-warsaw-section .section-title h2,
.modern-warsaw-section .section-title p {
    color: white;
}

.modern-warsaw-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.modern-warsaw-intro .intro-text h3 {
    color: #60a5fa;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modern-warsaw-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.modern-warsaw-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modern-warsaw-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modern-warsaw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.modern-warsaw-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.modern-warsaw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modern-warsaw-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.modern-warsaw-content h4 {
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modern-warsaw-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modern-warsaw-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modern-warsaw-features span {
    background: rgba(31, 41, 55, 0.1);
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(31, 41, 55, 0.2);
}

/* Warsaw Culture Section */
.warsaw-culture-section {
    background: linear-gradient(135deg, #581c87 0%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.warsaw-culture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23c4b5fd" fill-opacity="0.1"><path d="M35 10l8 15h-16l8-15zm0 50l-8-15h16l-8 15z"/><circle cx="35" cy="35" r="5"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.warsaw-culture-section .container {
    position: relative;
    z-index: 2;
}

.warsaw-culture-section .section-title h2,
.warsaw-culture-section .section-title p {
    color: white;
}

.warsaw-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.warsaw-culture-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.warsaw-culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.warsaw-culture-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.warsaw-culture-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.warsaw-culture-card.featured .warsaw-culture-image {
    height: 100%;
}

.warsaw-culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.warsaw-culture-card:hover .warsaw-culture-image img {
    transform: scale(1.05);
}

.warsaw-culture-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(88, 28, 135, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warsaw-culture-content {
    padding: 2rem;
}

.warsaw-culture-content h3 {
    color: #581c87;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.warsaw-culture-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.warsaw-culture-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.warsaw-culture-details span {
    background: rgba(88, 28, 135, 0.1);
    color: #581c87;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(88, 28, 135, 0.2);
}

.warsaw-culture-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.warsaw-culture-features span {
    background: rgba(88, 28, 135, 0.1);
    color: #581c87;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(88, 28, 135, 0.2);
}

/* Warsaw Cuisine Section */
.warsaw-cuisine-section {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.warsaw-cuisine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236ee7b7" fill-opacity="0.15"><circle cx="25" cy="25" r="12"/><circle cx="25" cy="25" r="6"/><circle cx="25" cy="25" r="3"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.warsaw-cuisine-section .container {
    position: relative;
    z-index: 2;
}

.warsaw-cuisine-section .section-title h2,
.warsaw-cuisine-section .section-title p {
    color: white;
}

.warsaw-cuisine-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.warsaw-cuisine-intro .intro-text h3 {
    color: #6ee7b7;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.warsaw-cuisine-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1fae5;
    margin-bottom: 1rem;
}

.warsaw-cuisine-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.warsaw-cuisine-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.warsaw-dishes-showcase h3,
.warsaw-restaurants-showcase h3 {
    color: #6ee7b7;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.warsaw-dishes-grid,
.warsaw-restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.warsaw-dish-card,
.warsaw-restaurant-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.warsaw-dish-card:hover,
.warsaw-restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.warsaw-restaurant-card.premium {
    border: 2px solid #6ee7b7;
}

.warsaw-dish-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.warsaw-dish-content h4,
.warsaw-restaurant-card h4 {
    color: #059669;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.warsaw-dish-content p,
.warsaw-restaurant-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.warsaw-restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.warsaw-restaurant-rating {
    font-size: 0.9rem;
}

.warsaw-dish-details,
.warsaw-restaurant-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.warsaw-dish-details span,
.warsaw-restaurant-details span {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

/* Warsaw Parks Section */
.warsaw-parks-section {
    background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.warsaw-parks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2386efac" fill-opacity="0.1"><circle cx="30" cy="30" r="15"/><circle cx="15" cy="15" r="8"/><circle cx="45" cy="45" r="8"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.warsaw-parks-section .container {
    position: relative;
    z-index: 2;
}

.warsaw-parks-section .section-title h2,
.warsaw-parks-section .section-title p {
    color: white;
}

.warsaw-parks-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.warsaw-parks-intro .intro-text h3 {
    color: #86efac;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.warsaw-parks-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #dcfce7;
    margin-bottom: 1rem;
}

.warsaw-parks-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.warsaw-parks-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.warsaw-parks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.warsaw-park-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.warsaw-park-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.warsaw-park-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.warsaw-park-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.warsaw-park-card.featured .warsaw-park-image {
    height: 100%;
}

.warsaw-park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.warsaw-park-card:hover .warsaw-park-image img {
    transform: scale(1.05);
}

.warsaw-park-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(22, 101, 52, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warsaw-park-content {
    padding: 2rem;
}

.warsaw-park-content h3 {
    color: #166534;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.warsaw-park-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.warsaw-park-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.warsaw-park-features span {
    background: rgba(22, 101, 52, 0.1);
    color: #166534;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(22, 101, 52, 0.2);
}

/* Warsaw Practical Section */
.warsaw-practical-section {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.warsaw-practical-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fca5a5" fill-opacity="0.1"><rect x="20" y="20" width="10" height="10" rx="2"/><circle cx="15" cy="15" r="3"/><circle cx="35" cy="35" r="3"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.warsaw-practical-section .container {
    position: relative;
    z-index: 2;
}

.warsaw-practical-section .section-title h2,
.warsaw-practical-section .section-title p {
    color: white;
}

.warsaw-practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.warsaw-practical-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.warsaw-practical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.warsaw-practical-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.warsaw-practical-content h4 {
    color: #991b1b;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.warsaw-practical-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.warsaw-practical-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.warsaw-practical-options span {
    background: rgba(153, 27, 27, 0.1);
    color: #991b1b;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(153, 27, 27, 0.2);
}

/* Responsive Design for Warsaw sections */
@media (max-width: 768px) {
    .modern-warsaw-intro,
    .warsaw-cuisine-intro,
    .warsaw-parks-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .warsaw-landmark-card.featured,
    .warsaw-culture-card.featured,
    .warsaw-park-card.featured {
        grid-template-columns: 1fr;
    }
    
    .warsaw-landmark-card.featured .warsaw-landmark-image,
    .warsaw-culture-card.featured .warsaw-culture-image,
    .warsaw-park-card.featured .warsaw-park-image {
        height: 250px;
    }
    
    .warsaw-landmarks-grid,
    .modern-warsaw-grid,
    .warsaw-culture-grid,
    .warsaw-dishes-grid,
    .warsaw-restaurants-grid,
    .warsaw-parks-grid,
    .warsaw-practical-grid {
        grid-template-columns: 1fr;
    }
}

/* Wrocław-specific styles */
.wroclaw-landmarks-section {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.wroclaw-landmarks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.1"><circle cx="40" cy="40" r="20"/><circle cx="20" cy="20" r="10"/><circle cx="60" cy="60" r="10"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.wroclaw-landmarks-section .container {
    position: relative;
    z-index: 2;
}

.wroclaw-landmarks-section .section-title h2,
.wroclaw-landmarks-section .section-title p {
    color: white;
}

.wroclaw-landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wroclaw-landmark-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.wroclaw-landmark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.wroclaw-landmark-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.wroclaw-landmark-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wroclaw-landmark-card.featured .wroclaw-landmark-image {
    height: 100%;
}

.wroclaw-landmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wroclaw-landmark-card:hover .wroclaw-landmark-image img {
    transform: scale(1.05);
}

.wroclaw-landmark-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(124, 45, 18, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wroclaw-landmark-content {
    padding: 2rem;
}

.wroclaw-landmark-content h3 {
    color: #7c2d12;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wroclaw-landmark-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wroclaw-landmark-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wroclaw-landmark-details span {
    background: rgba(124, 45, 18, 0.1);
    color: #7c2d12;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(124, 45, 18, 0.2);
}

/* Wrocław Bridges Section */
.wroclaw-bridges-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.wroclaw-bridges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2393c5fd" fill-opacity="0.1"><path d="M10 30 L50 30 M30 10 L30 50"/><circle cx="30" cy="30" r="15"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.wroclaw-bridges-section .container {
    position: relative;
    z-index: 2;
}

.wroclaw-bridges-section .section-title h2,
.wroclaw-bridges-section .section-title p {
    color: white;
}

.wroclaw-bridges-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.wroclaw-bridges-intro .intro-text h3 {
    color: #93c5fd;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.wroclaw-bridges-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #dbeafe;
    margin-bottom: 1rem;
}

.wroclaw-bridges-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wroclaw-bridges-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.wroclaw-bridges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wroclaw-bridge-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.wroclaw-bridge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.wroclaw-bridge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.wroclaw-bridge-content h4 {
    color: #0c4a6e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wroclaw-bridge-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wroclaw-bridge-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wroclaw-bridge-features span {
    background: rgba(12, 74, 110, 0.1);
    color: #0c4a6e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(12, 74, 110, 0.2);
}

/* Wrocław Culture Section */
.wroclaw-dwarfs-section {
    background: linear-gradient(135deg, #581c87 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.wroclaw-dwarfs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23c4b5fd" fill-opacity="0.1"><polygon points="35,10 45,30 25,30"/><circle cx="35" cy="45" r="12"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.wroclaw-dwarfs-section .container {
    position: relative;
    z-index: 2;
}

.wroclaw-dwarfs-section .section-title h2,
.wroclaw-dwarfs-section .section-title p {
    color: white;
}

.wroclaw-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.wroclaw-culture-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.wroclaw-culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.wroclaw-culture-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.wroclaw-culture-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wroclaw-culture-card.featured .wroclaw-culture-image {
    height: 100%;
}

.wroclaw-culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wroclaw-culture-card:hover .wroclaw-culture-image img {
    transform: scale(1.05);
}

.wroclaw-culture-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(88, 28, 135, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wroclaw-culture-content {
    padding: 2rem;
}

.wroclaw-culture-content h3 {
    color: #581c87;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wroclaw-culture-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wroclaw-culture-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.wroclaw-culture-details span {
    background: rgba(88, 28, 135, 0.1);
    color: #581c87;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(88, 28, 135, 0.2);
}

.wroclaw-culture-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wroclaw-culture-features span {
    background: rgba(88, 28, 135, 0.1);
    color: #581c87;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(88, 28, 135, 0.2);
}

/* Wrocław Cuisine Section */
.wroclaw-cuisine-section {
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.wroclaw-cuisine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fcd34d" fill-opacity="0.15"><circle cx="25" cy="25" r="15"/><circle cx="25" cy="25" r="8"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.wroclaw-cuisine-section .container {
    position: relative;
    z-index: 2;
}

.wroclaw-cuisine-section .section-title h2,
.wroclaw-cuisine-section .section-title p {
    color: white;
}

.wroclaw-cuisine-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.wroclaw-cuisine-intro .intro-text h3 {
    color: #fcd34d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.wroclaw-cuisine-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fef3c7;
    margin-bottom: 1rem;
}

.wroclaw-cuisine-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wroclaw-cuisine-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.wroclaw-dishes-showcase h3,
.wroclaw-restaurants-showcase h3 {
    color: #fcd34d;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.wroclaw-dishes-grid,
.wroclaw-restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.wroclaw-dish-card,
.wroclaw-restaurant-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.wroclaw-dish-card:hover,
.wroclaw-restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.wroclaw-restaurant-card.premium {
    border: 2px solid #fcd34d;
}

.wroclaw-dish-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.wroclaw-dish-content h4,
.wroclaw-restaurant-card h4 {
    color: #b45309;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wroclaw-dish-content p,
.wroclaw-restaurant-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wroclaw-restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.wroclaw-restaurant-rating {
    font-size: 0.9rem;
}

.wroclaw-dish-details,
.wroclaw-restaurant-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wroclaw-dish-details span,
.wroclaw-restaurant-details span {
    background: rgba(180, 83, 9, 0.1);
    color: #b45309;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(180, 83, 9, 0.2);
}

/* Wrocław Nature Section */
.wroclaw-nature-section {
    background: linear-gradient(135deg, #14532d 0%, #16a34a 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.wroclaw-nature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2386efac" fill-opacity="0.1"><circle cx="30" cy="30" r="20"/><circle cx="15" cy="15" r="10"/><circle cx="45" cy="45" r="10"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.wroclaw-nature-section .container {
    position: relative;
    z-index: 2;
}

.wroclaw-nature-section .section-title h2,
.wroclaw-nature-section .section-title p {
    color: white;
}

.wroclaw-nature-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.wroclaw-nature-intro .intro-text h3 {
    color: #86efac;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.wroclaw-nature-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #dcfce7;
    margin-bottom: 1rem;
}

.wroclaw-nature-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wroclaw-nature-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.wroclaw-nature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.wroclaw-nature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.wroclaw-nature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.wroclaw-nature-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.wroclaw-nature-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wroclaw-nature-card.featured .wroclaw-nature-image {
    height: 100%;
}

.wroclaw-nature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wroclaw-nature-card:hover .wroclaw-nature-image img {
    transform: scale(1.05);
}

.wroclaw-nature-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(20, 83, 45, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wroclaw-nature-content {
    padding: 2rem;
}

.wroclaw-nature-content h3 {
    color: #14532d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wroclaw-nature-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wroclaw-nature-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wroclaw-nature-features span {
    background: rgba(20, 83, 45, 0.1);
    color: #14532d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(20, 83, 45, 0.2);
}

/* Wrocław Practical Section */
.wroclaw-practical-section {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.wroclaw-practical-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fdba74" fill-opacity="0.1"><rect x="20" y="20" width="10" height="10" rx="2"/><circle cx="15" cy="15" r="3"/><circle cx="35" cy="35" r="3"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.wroclaw-practical-section .container {
    position: relative;
    z-index: 2;
}

.wroclaw-practical-section .section-title h2,
.wroclaw-practical-section .section-title p {
    color: white;
}

.wroclaw-practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wroclaw-practical-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.wroclaw-practical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.wroclaw-practical-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.wroclaw-practical-content h4 {
    color: #7c2d12;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wroclaw-practical-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wroclaw-practical-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wroclaw-practical-options span {
    background: rgba(124, 45, 18, 0.1);
    color: #7c2d12;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(124, 45, 18, 0.2);
}

/* Responsive Design for Wrocław sections */
@media (max-width: 768px) {
    .wroclaw-bridges-intro,
    .wroclaw-cuisine-intro,
    .wroclaw-nature-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wroclaw-landmark-card.featured,
    .wroclaw-culture-card.featured,
    .wroclaw-nature-card.featured {
        grid-template-columns: 1fr;
    }
    
    .wroclaw-landmark-card.featured .wroclaw-landmark-image,
    .wroclaw-culture-card.featured .wroclaw-culture-image,
    .wroclaw-nature-card.featured .wroclaw-nature-image {
        height: 250px;
    }
    
    .wroclaw-landmarks-grid,
    .wroclaw-bridges-grid,
    .wroclaw-culture-grid,
    .wroclaw-dishes-grid,
    .wroclaw-restaurants-grid,
    .wroclaw-nature-grid,
    .wroclaw-practical-grid {
        grid-template-columns: 1fr;
    }
}

/* Zakopane-specific styles */
.zakopane-trails-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.zakopane-trails-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2393c5fd" fill-opacity="0.1"><path d="M20 60 L40 20 L60 60 Z"/><path d="M10 50 L30 10 L50 50 Z"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.zakopane-trails-section .container {
    position: relative;
    z-index: 2;
}

.zakopane-trails-section .section-title h2,
.zakopane-trails-section .section-title p {
    color: white;
}

.zakopane-trails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zakopane-trail-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.zakopane-trail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.zakopane-trail-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.zakopane-trail-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.zakopane-trail-card.featured .zakopane-trail-image {
    height: 100%;
}

.zakopane-trail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zakopane-trail-card:hover .zakopane-trail-image img {
    transform: scale(1.05);
}

.zakopane-trail-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(30, 58, 138, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zakopane-trail-content {
    padding: 2rem;
}

.zakopane-trail-content h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zakopane-trail-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.zakopane-trail-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zakopane-trail-details span {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

/* Zakopane Winter Section */
.zakopane-winter-section {
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.zakopane-winter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e5e7eb" fill-opacity="0.1"><path d="M30 10 L35 25 L30 40 L25 25 Z"/><path d="M10 30 L25 25 L40 30 L25 35 Z"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.zakopane-winter-section .container {
    position: relative;
    z-index: 2;
}

.zakopane-winter-section .section-title h2,
.zakopane-winter-section .section-title p {
    color: white;
}

.zakopane-winter-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.zakopane-winter-intro .intro-text h3 {
    color: #e5e7eb;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.zakopane-winter-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.zakopane-winter-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zakopane-winter-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.zakopane-winter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zakopane-winter-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.zakopane-winter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.zakopane-winter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.zakopane-winter-content h4 {
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zakopane-winter-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.zakopane-winter-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zakopane-winter-features span {
    background: rgba(31, 41, 55, 0.1);
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(31, 41, 55, 0.2);
}

/* Zakopane Culture Section */
.zakopane-culture-section {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.zakopane-culture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.1"><circle cx="35" cy="35" r="20"/><path d="M35 15 L45 35 L35 55 L25 35 Z"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.zakopane-culture-section .container {
    position: relative;
    z-index: 2;
}

.zakopane-culture-section .section-title h2,
.zakopane-culture-section .section-title p {
    color: white;
}

.zakopane-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.zakopane-culture-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.zakopane-culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.zakopane-culture-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.zakopane-culture-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.zakopane-culture-card.featured .zakopane-culture-image {
    height: 100%;
}

.zakopane-culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zakopane-culture-card:hover .zakopane-culture-image img {
    transform: scale(1.05);
}

.zakopane-culture-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(124, 45, 18, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zakopane-culture-content {
    padding: 2rem;
}

.zakopane-culture-content h3 {
    color: #7c2d12;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zakopane-culture-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.zakopane-culture-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.zakopane-culture-details span {
    background: rgba(124, 45, 18, 0.1);
    color: #7c2d12;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(124, 45, 18, 0.2);
}

.zakopane-culture-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zakopane-culture-features span {
    background: rgba(124, 45, 18, 0.1);
    color: #7c2d12;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(124, 45, 18, 0.2);
}

/* Zakopane Cuisine Section */
.zakopane-cuisine-section {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.zakopane-cuisine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236ee7b7" fill-opacity="0.15"><circle cx="25" cy="25" r="12"/><circle cx="25" cy="25" r="6"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.zakopane-cuisine-section .container {
    position: relative;
    z-index: 2;
}

.zakopane-cuisine-section .section-title h2,
.zakopane-cuisine-section .section-title p {
    color: white;
}

.zakopane-cuisine-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.zakopane-cuisine-intro .intro-text h3 {
    color: #6ee7b7;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.zakopane-cuisine-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1fae5;
    margin-bottom: 1rem;
}

.zakopane-cuisine-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zakopane-cuisine-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.zakopane-dishes-showcase h3,
.zakopane-restaurants-showcase h3 {
    color: #6ee7b7;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.zakopane-dishes-grid,
.zakopane-restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.zakopane-dish-card,
.zakopane-restaurant-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.zakopane-dish-card:hover,
.zakopane-restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.zakopane-restaurant-card.premium {
    border: 2px solid #6ee7b7;
}

.zakopane-dish-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.zakopane-dish-content h4,
.zakopane-restaurant-card h4 {
    color: #065f46;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zakopane-dish-content p,
.zakopane-restaurant-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.zakopane-restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.zakopane-restaurant-rating {
    font-size: 0.9rem;
}

.zakopane-dish-details,
.zakopane-restaurant-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zakopane-dish-details span,
.zakopane-restaurant-details span {
    background: rgba(6, 95, 70, 0.1);
    color: #065f46;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(6, 95, 70, 0.2);
}

/* Zakopane Summer Section */
.zakopane-summer-section {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.zakopane-summer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2386efac" fill-opacity="0.1"><circle cx="30" cy="30" r="15"/><circle cx="15" cy="15" r="8"/><circle cx="45" cy="45" r="8"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.zakopane-summer-section .container {
    position: relative;
    z-index: 2;
}

.zakopane-summer-section .section-title h2,
.zakopane-summer-section .section-title p {
    color: white;
}

.zakopane-summer-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.zakopane-summer-intro .intro-text h3 {
    color: #86efac;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.zakopane-summer-intro .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #dcfce7;
    margin-bottom: 1rem;
}

.zakopane-summer-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zakopane-summer-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.zakopane-summer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.zakopane-summer-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.zakopane-summer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.zakopane-summer-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.zakopane-summer-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.zakopane-summer-card.featured .zakopane-summer-image {
    height: 100%;
}

.zakopane-summer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zakopane-summer-card:hover .zakopane-summer-image img {
    transform: scale(1.05);
}

.zakopane-summer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(21, 128, 61, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zakopane-summer-content {
    padding: 2rem;
}

.zakopane-summer-content h3 {
    color: #15803d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zakopane-summer-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.zakopane-summer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zakopane-summer-features span {
    background: rgba(21, 128, 61, 0.1);
    color: #15803d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(21, 128, 61, 0.2);
}

/* Zakopane Practical Section */
.zakopane-practical-section {
    background: linear-gradient(135deg, #92400e 0%, #f59e0b 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.zakopane-practical-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fcd34d" fill-opacity="0.1"><rect x="20" y="20" width="10" height="10" rx="2"/><circle cx="15" cy="15" r="3"/><circle cx="35" cy="35" r="3"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.zakopane-practical-section .container {
    position: relative;
    z-index: 2;
}

.zakopane-practical-section .section-title h2,
.zakopane-practical-section .section-title p {
    color: white;
}

.zakopane-practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zakopane-practical-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.zakopane-practical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.zakopane-practical-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.zakopane-practical-content h4 {
    color: #92400e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zakopane-practical-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.zakopane-practical-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zakopane-practical-options span {
    background: rgba(146, 64, 14, 0.1);
    color: #92400e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(146, 64, 14, 0.2);
}

/* Responsive Design for Zakopane sections */
@media (max-width: 768px) {
    .zakopane-winter-intro,
    .zakopane-cuisine-intro,
    .zakopane-summer-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .zakopane-trail-card.featured,
    .zakopane-culture-card.featured,
    .zakopane-summer-card.featured {
        grid-template-columns: 1fr;
    }
    
    .zakopane-trail-card.featured .zakopane-trail-image,
    .zakopane-culture-card.featured .zakopane-culture-image,
    .zakopane-summer-card.featured .zakopane-summer-image {
        height: 250px;
    }
    
    .zakopane-trails-grid,
    .zakopane-winter-grid,
    .zakopane-culture-grid,
    .zakopane-dishes-grid,
    .zakopane-restaurants-grid,
    .zakopane-summer-grid,
    .zakopane-practical-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Policy Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--secondary-color);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-btn-settings:hover {
    background: var(--bg-light);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.cookie-btn-decline:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background: var(--bg-white);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal-overlay.show .cookie-modal {
    transform: scale(1);
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cookie-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.cookie-category-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
    background-color: var(--primary-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .cookie-modal {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}
