/* ============================================
   SMAKI POLSKI - VINTAGE RETRO DESIGN
   Complete CSS Styles for All Pages
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2416;
  background-color: #f9f5f0;
  overflow-x: hidden;
}

/* VINTAGE RETRO TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Playfair Display', serif;
  font-weight: 700;
  color: #2c2416;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #3a2f23;
}

a {
  color: #8b4513;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #5c2e0a;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #3a2f23;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* VINTAGE RETRO BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 3px solid #8b4513;
  background-color: #f9f5f0;
  color: #8b4513;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 4px 4px 0px #d4a574;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: #8b4513;
  color: #f9f5f0;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #d4a574;
  text-decoration: none;
}

.btn-primary {
  background-color: #8b4513;
  color: #f9f5f0;
  border-color: #8b4513;
}

.btn-primary:hover {
  background-color: #5c2e0a;
  border-color: #5c2e0a;
}

.btn-secondary {
  background-color: #d4a574;
  color: #2c2416;
  border-color: #d4a574;
}

.btn-secondary:hover {
  background-color: #b88a5e;
  border-color: #b88a5e;
  color: #f9f5f0;
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #8b4513;
  color: #f9f5f0;
  border: 3px solid #5c2e0a;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px #d4a574;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #5c2e0a;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px #d4a574;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #f9f5f0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139,69,19,0.03) 10px, rgba(139,69,19,0.03) 20px);
  border-left: 5px solid #8b4513;
  box-shadow: -5px 0 20px rgba(0,0,0,0.3);
  z-index: 1002;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #8b4513;
  color: #f9f5f0;
  border: 3px solid #5c2e0a;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 2px 2px 0px #d4a574;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #5c2e0a;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  display: block;
  padding: 18px 20px;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  color: #2c2416;
  text-decoration: none;
  border-bottom: 2px dotted #d4a574;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background-color: #8b4513;
  color: #f9f5f0;
  padding-left: 30px;
  text-decoration: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #f4e5d3;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(139,69,19,0.05) 50px, rgba(139,69,19,0.05) 51px);
  border-bottom: 5px solid #8b4513;
  padding: 20px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  top: 0;
  z-index: 999;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 10px 16px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  font-weight: 600;
  color: #2c2416;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  color: #8b4513;
  border-bottom: 2px solid #8b4513;
  text-decoration: none;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* ============================================
   HERO SECTION - VINTAGE STYLE
   ============================================ */

.hero {
  background: linear-gradient(135deg, #d4a574 0%, #f4e5d3 100%);
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #f4e5d3 10px), repeating-linear-gradient(#d4a574, #f4e5d3);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px double #8b4513;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(139,69,19,0.03) 35px, rgba(139,69,19,0.03) 70px);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #2c2416;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #3a2f23;
  margin-bottom: 32px;
  font-style: italic;
  font-family: 'Georgia', serif;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-indicator {
  margin-top: 30px;
  padding: 15px 25px;
  background-color: rgba(249,245,240,0.9);
  border: 3px solid #8b4513;
  display: inline-block;
  box-shadow: 4px 4px 0px #d4a574;
}

.trust-indicator p {
  font-size: 16px;
  font-weight: 600;
  color: #2c2416;
  margin: 0;
}

/* ============================================
   PAGE HERO (INTERNAL PAGES)
   ============================================ */

.page-hero {
  background: linear-gradient(to right, #f4e5d3, #d4a574);
  padding: 60px 20px 40px;
  border-bottom: 5px solid #8b4513;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(139,69,19,0.04) 50px, rgba(139,69,19,0.04) 51px);
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #3a2f23;
}

.breadcrumbs a {
  color: #8b4513;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  font-size: 42px;
  color: #2c2416;
  margin-bottom: 16px;
}

.page-hero .hero-subtitle {
  font-size: 18px;
  color: #3a2f23;
  font-style: italic;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: #5c4a3a;
  font-style: italic;
}

/* ============================================
   SECTIONS - VINTAGE LAYOUT
   ============================================ */

section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 18px;
  color: #5c4a3a;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
  font-family: 'Georgia', serif;
}

/* ============================================
   RESTAURANT CARDS - VINTAGE STYLE
   ============================================ */

.restaurant-grid,
.services-grid,
.benefits-grid,
.routes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.restaurant-card,
.service-card,
.benefit-item,
.route-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background-color: #fff;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139,69,19,0.02) 10px, rgba(139,69,19,0.02) 20px);
  border: 4px solid #8b4513;
  padding: 30px;
  box-shadow: 6px 6px 0px #d4a574;
  transition: all 0.4s ease;
  margin-bottom: 20px;
  position: relative;
}

.restaurant-card:hover,
.service-card:hover,
.route-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px #d4a574;
}

.restaurant-card h3,
.service-card h3,
.route-card h3 {
  font-size: 24px;
  color: #2c2416;
  margin-bottom: 12px;
  border-bottom: 3px double #8b4513;
  padding-bottom: 10px;
}

.cuisine-badge,
.price-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #8b4513;
  color: #f9f5f0;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #5c2e0a;
}

.location {
  font-size: 14px;
  color: #5c4a3a;
  margin-bottom: 8px;
}

.rating {
  color: #d4a574;
  font-size: 18px;
  margin-bottom: 8px;
}

.price-range,
.price {
  font-size: 16px;
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 12px;
}

.restaurant-card p,
.service-card p,
.route-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.restaurant-card .btn,
.service-card .btn,
.route-card .btn {
  width: 100%;
  margin-top: 12px;
  padding: 12px 20px;
}

/* ============================================
   FEATURED RESTAURANTS SECTION
   ============================================ */

.featured-restaurants {
  background-color: #f9f5f0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139,69,19,0.03) 2px, rgba(139,69,19,0.03) 4px);
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.featured-restaurants h2 {
  text-align: center;
  margin-bottom: 16px;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(139,69,19,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.service-price {
  font-size: 22px;
  color: #8b4513;
  font-weight: 700;
  margin: 16px 0;
  padding: 10px;
  background-color: #f4e5d3;
  border: 2px dashed #8b4513;
  text-align: center;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  background: linear-gradient(to bottom, #f4e5d3, #f9f5f0);
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.benefit-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border: 3px solid #d4a574;
  box-shadow: 4px 4px 0px #8b4513;
  margin-bottom: 20px;
}

.benefit-item img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: sepia(0.4);
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* STATISTICS */
.statistics {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 3px double #8b4513;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 5px 5px 0px #d4a574;
  min-width: 150px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.stat-item p:last-child {
  font-size: 16px;
  color: #3a2f23;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS - VINTAGE STYLE
   ============================================ */

.testimonials {
  background-color: #fff;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(139,69,19,0.02) 35px, rgba(139,69,19,0.02) 70px);
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  max-width: 500px;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 30px;
  box-shadow: 6px 6px 0px #d4a574;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 72px;
  color: rgba(139,69,19,0.2);
  font-family: 'Georgia', serif;
  line-height: 1;
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: #2c2416;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 700;
  color: #2c2416;
  margin-bottom: 8px;
  font-size: 15px;
}

.testimonial-card .rating {
  font-size: 18px;
  color: #d4a574;
  margin: 0;
}

/* ============================================
   ROUTES & TRASY KULINARNE
   ============================================ */

.culinary-routes-preview,
.routes-overview {
  background-color: #f4e5d3;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(139,69,19,0.03) 50px, rgba(139,69,19,0.03) 51px);
}

.routes-overview h2 {
  text-align: center;
  margin-bottom: 30px;
}

.route-card {
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 30px;
  box-shadow: 6px 6px 0px #d4a574;
  margin-bottom: 20px;
}

.route-card h3 {
  font-size: 26px;
  color: #2c2416;
  margin-bottom: 15px;
  border-bottom: 3px double #8b4513;
  padding-bottom: 10px;
}

.duration {
  font-size: 14px;
  color: #5c4a3a;
  margin-bottom: 12px;
  font-weight: 600;
}

.route-price {
  font-size: 20px;
  color: #8b4513;
  font-weight: 700;
  margin: 16px 0;
}

/* ============================================
   LOYALTY PROGRAM
   ============================================ */

.loyalty-program-teaser {
  background: linear-gradient(135deg, #8b4513 0%, #d4a574 100%);
  color: #f9f5f0;
  text-align: center;
  padding: 60px 20px;
  border-top: 8px double #5c2e0a;
  border-bottom: 8px double #5c2e0a;
}

.loyalty-program-teaser h2 {
  color: #f9f5f0;
  margin-bottom: 16px;
}

.loyalty-program-teaser .section-subtitle {
  color: #f4e5d3;
}

.benefits-list {
  list-style: none;
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}



.benefits-list li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  background-color: rgba(249,245,240,0.15);
  border-left: 4px solid #f9f5f0;
  position: relative;
  color: #3a3a3a;
  font-size: 16px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #f4e5d3;
  font-weight: 700;
  font-size: 18px;
}

.price-highlight {
  font-size: 36px;
  font-weight: 700;
  color: #f9f5f0;
  margin: 24px 0;
  padding: 20px;
  background-color: rgba(0,0,0,0.2);
  border: 3px solid #f9f5f0;
  display: inline-block;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-final,
.cta-join,
.cta-booking,
.cta-contact {
  background: linear-gradient(to right, #8b4513, #d4a574);
  color: #f9f5f0;
  text-align: center;
  padding: 60px 20px;
  border-top: 8px double #5c2e0a;
  border-bottom: 8px double #5c2e0a;
}

.cta-final h2,
.cta-join h2,
.cta-booking h2,
.cta-contact h2 {
  color: #f9f5f0;
  margin-bottom: 16px;
}

.cta-final p,
.cta-join p,
.cta-booking p,
.cta-contact p {
  font-size: 18px;
  color: #f4e5d3;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER - VINTAGE STYLE
   ============================================ */

footer {
  background-color: #2c2416;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139,69,19,0.1) 10px, rgba(139,69,19,0.1) 20px);
  color: #f4e5d3;
  padding: 50px 20px 20px;
  border-top: 8px solid #8b4513;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) sepia(0.3) hue-rotate(-10deg);
}

.footer-brand p {
  color: #d4a574;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2 1 500px;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-column h4 {
  color: #f4e5d3;
  font-size: 18px;
  margin-bottom: 16px;
  border-bottom: 2px solid #8b4513;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  display: block;
  color: #d4a574;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #f4e5d3;
  padding-left: 8px;
  text-decoration: none;
}

.footer-column p {
  color: #d4a574;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 2px solid #8b4513;
}

.footer-bottom p {
  color: #d4a574;
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #d4a574;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #f4e5d3;
  text-decoration: underline;
}

/* ============================================
   RESTAURANTS LISTING PAGE
   ============================================ */

.restaurants-filter {
  background-color: #f9f5f0;
  padding: 30px 20px;
  border-bottom: 4px solid #8b4513;
}

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 3px solid #8b4513;
  padding: 12px 20px;
  box-shadow: 4px 4px 0px #d4a574;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: 'Georgia', serif;
  color: #2c2416;
  background-color: transparent;
}

.search-box img {
  width: 20px;
  height: 20px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-select,
.sort-select {
  padding: 12px 16px;
  border: 3px solid #8b4513;
  background-color: #fff;
  color: #2c2416;
  font-size: 15px;
  font-family: 'Georgia', serif;
  cursor: pointer;
  box-shadow: 3px 3px 0px #d4a574;
  transition: all 0.3s ease;
  flex: 1 1 200px;
}

.filter-select:hover,
.sort-select:hover {
  background-color: #f4e5d3;
}

.filter-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 2px dashed #d4a574;
}

.filter-results p {
  font-size: 16px;
  color: #2c2416;
  margin: 0;
}

.filter-results strong {
  color: #8b4513;
  font-weight: 700;
}

/* LISTING LAYOUT */
.restaurants-listing {
  background-color: #fff;
  padding: 40px 20px;
}

.listing-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.restaurants-main {
  flex: 3 1 600px;
}

.restaurant-card-full {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 6px 6px 0px #d4a574;
  transition: all 0.4s ease;
}

.restaurant-card-full:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #d4a574;
}

.restaurant-info {
  flex: 2 1 400px;
}

.restaurant-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 180px;
  align-items: stretch;
}

.restaurant-actions .btn {
  width: 100%;
  text-align: center;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.stars {
  color: #d4a574;
  font-size: 18px;
}

.reviews {
  font-size: 14px;
  color: #5c4a3a;
}

.price-indicator {
  font-size: 20px;
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 12px;
}

.description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #3a2f23;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.feature-tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: #d4a574;
  color: #2c2416;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid #8b4513;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SIDEBAR */
.sidebar {
  flex: 1 1 280px;
}

.sidebar-card {
  background-color: #f4e5d3;
  border: 3px solid #8b4513;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 4px 4px 0px #d4a574;
}

.sidebar-card h4 {
  font-size: 20px;
  color: #2c2416;
  margin-bottom: 12px;
  border-bottom: 2px solid #8b4513;
  padding-bottom: 8px;
}

.sidebar-card p {
  font-size: 14px;
  color: #3a2f23;
  margin-bottom: 16px;
}

.sidebar-card .btn {
  width: 100%;
  text-align: center;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 3px double #8b4513;
}

.page-btn {
  padding: 10px 18px;
  background-color: #fff;
  border: 3px solid #8b4513;
  color: #2c2416;
  font-size: 16px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px #d4a574;
}

.page-btn:hover {
  background-color: #8b4513;
  color: #f9f5f0;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px #d4a574;
}

.page-btn.active {
  background-color: #8b4513;
  color: #f9f5f0;
}

/* ============================================
   SERVICES DETAILED PAGE
   ============================================ */

.services-detailed {
  background-color: #fff;
  padding: 60px 20px;
}

.service-card-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 6px 6px 0px #d4a574;
}

.service-card-detailed img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.service-content {
  flex: 1 1 400px;
}

.service-content h3 {
  font-size: 28px;
  color: #2c2416;
  margin-bottom: 16px;
  border-bottom: 3px double #8b4513;
  padding-bottom: 10px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #3a2f23;
}

.service-content ul {
  margin-bottom: 20px;
}

.service-content ul li {
  padding-left: 10px;
  margin-bottom: 10px;
}

/* HOW IT WORKS */
.how-it-works {
  background: linear-gradient(to bottom, #f4e5d3, #f9f5f0);
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}

.step-item {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 5px 5px 0px #d4a574;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #8b4513;
  color: #f9f5f0;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Georgia', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid #5c2e0a;
}

.step-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 15px;
  color: #3a2f23;
}

/* ============================================
   TRASY KULINARNE - DETAILED
   ============================================ */

.city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 24px;
  background-color: #fff;
  border: 3px solid #8b4513;
  color: #2c2416;
  font-size: 16px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px #d4a574;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #8b4513;
  color: #f9f5f0;
}

.route-card-detailed {
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 35px;
  margin-bottom: 35px;
  box-shadow: 6px 6px 0px #d4a574;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px dashed #d4a574;
}

.route-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5c4a3a;
  font-weight: 600;
}

.route-meta img {
  width: 20px;
  height: 20px;
}

.route-highlights {
  list-style: none;
  margin: 20px 0;
  padding: 20px;
  background-color: #f4e5d3;
  border-left: 5px solid #8b4513;
}

.route-highlights li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  color: #2c2416;
  font-size: 15px;
}

.route-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: 700;
  font-size: 16px;
}

.group-info {
  font-size: 14px;
  color: #5c4a3a;
  margin-top: 12px;
  font-style: italic;
}

/* ROUTE FEATURES */
.route-features {
  background-color: #f9f5f0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139,69,19,0.02) 10px, rgba(139,69,19,0.02) 20px);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}

.feature-item {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 25px;
  background-color: #fff;
  border: 3px solid #d4a574;
  box-shadow: 4px 4px 0px #8b4513;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item img {
  width: 60px;
  height: 60px;
  filter: sepia(0.4);
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: #3a2f23;
}

/* ITINERARY TIMELINE */
.sample-itinerary {
  background-color: #fff;
  padding: 60px 20px;
}

.sample-itinerary .subtitle {
  text-align: center;
  font-size: 18px;
  color: #8b4513;
  margin-bottom: 40px;
  font-style: italic;
}

.itinerary-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 80px;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #8b4513;
  background-image: repeating-linear-gradient(0deg, #8b4513, #8b4513 10px, transparent 10px, transparent 20px);
}

.itinerary-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 35px;
  position: relative;
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: -59px;
  top: 5px;
  width: 18px;
  height: 18px;
  background-color: #8b4513;
  border: 4px solid #f9f5f0;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #8b4513;
}

.time {
  font-size: 16px;
  font-weight: 700;
  color: #8b4513;
  min-width: 80px;
  padding: 8px 12px;
  background-color: #f4e5d3;
  border: 2px solid #8b4513;
  text-align: center;
  position: absolute;
  left: -80px;
}

.itinerary-item .content {
  flex: 1;
  padding: 20px;
  background-color: #f9f5f0;
  border: 3px solid #d4a574;
  box-shadow: 4px 4px 0px #8b4513;
}

.itinerary-item h4 {
  font-size: 20px;
  color: #2c2416;
  margin-bottom: 10px;
}

.itinerary-item p {
  font-size: 15px;
  color: #3a2f23;
  margin: 0;
}

/* GUIDES SECTION */
.guides {
  background: linear-gradient(to bottom, #f4e5d3, #f9f5f0);
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.guide-card {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 30px;
  box-shadow: 6px 6px 0px #d4a574;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.guide-info h3 {
  font-size: 24px;
  color: #2c2416;
  margin-bottom: 8px;
}

.expertise {
  font-size: 15px;
  color: #8b4513;
  font-weight: 600;
  margin-bottom: 12px;
  font-style: italic;
}

.bio {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #3a2f23;
}

.languages {
  font-size: 14px;
  color: #5c4a3a;
  font-weight: 600;
  margin: 0;
}

/* ============================================
   PROGRAM LOJALNOŚCIOWY - MEMBERSHIP TIERS
   ============================================ */

.membership-tiers {
  background-color: #f9f5f0;
  padding: 60px 20px;
}

.tiers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.tier-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 35px;
  text-align: center;
  box-shadow: 6px 6px 0px #d4a574;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px #d4a574;
}

.tier-card.recommended {
  border-color: #8b4513;
  border-width: 6px;
  transform: scale(1.05);
}

.tier-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8b4513;
  color: #f9f5f0;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  border: 3px solid #5c2e0a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tier-card h3 {
  font-size: 32px;
  color: #2c2416;
  margin-bottom: 16px;
  border-bottom: 3px double #8b4513;
  padding-bottom: 12px;
}

.tier-price {
  font-size: 36px;
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}

.tier-features li {
  padding: 12px 12px 12px 35px;
  margin-bottom: 10px;
  background-color: #f9f5f0;
  border-left: 4px solid #d4a574;
  position: relative;
  font-size: 14px;
  color: #2c2416;
}

.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #8b4513;
  font-weight: 700;
}

.tier-card .btn {
  width: 100%;
}

/* PARTNER RESTAURANTS */
.partner-restaurants {
  background-color: #fff;
  padding: 60px 20px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 30px;
}

.partner-item {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 20px;
  background-color: #f9f5f0;
  border: 3px solid #d4a574;
  text-align: center;
  box-shadow: 4px 4px 0px #8b4513;
  margin-bottom: 20px;
}

.partner-item h4 {
  font-size: 18px;
  color: #2c2416;
  margin-bottom: 8px;
}

.partner-item .location {
  font-size: 14px;
  color: #5c4a3a;
  margin-bottom: 10px;
}

.partner-item .discount {
  font-size: 16px;
  color: #8b4513;
  font-weight: 700;
  padding: 8px;
  background-color: #f4e5d3;
  border: 2px dashed #8b4513;
  margin-top: 8px;
}

/* EXCLUSIVE EVENTS */
.exclusive-events {
  background: linear-gradient(to right, #f4e5d3, #f9f5f0);
  padding: 60px 20px;
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 30px;
  box-shadow: 5px 5px 0px #d4a574;
  position: relative;
}

.event-card h3 {
  font-size: 24px;
  color: #2c2416;
  margin-bottom: 12px;
}

.event-date,
.event-location {
  font-size: 14px;
  color: #5c4a3a;
  margin-bottom: 8px;
  font-weight: 600;
}

.event-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #3a2f23;
}

.event-card .badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #8b4513;
  color: #f9f5f0;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid #5c2e0a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   O NAS PAGE
   ============================================ */

.our-story {
  background-color: #fff;
  padding: 60px 20px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px #d4a574;
}

.founding {
  font-size: 18px;
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px dashed #d4a574;
}

.mission-highlight {
  font-size: 18px;
  font-style: italic;
  color: #2c2416;
  padding: 20px;
  background-color: #f4e5d3;
  border-left: 5px solid #8b4513;
  margin-top: 24px;
  font-weight: 600;
}

/* MISSION & VALUES */
.mission-values {
  background: linear-gradient(to bottom, #f4e5d3, #f9f5f0);
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.mission {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  font-style: italic;
  color: #2c2416;
  padding: 25px;
  background-color: rgba(255,255,255,0.7);
  border: 3px solid #d4a574;
  box-shadow: 5px 5px 0px #8b4513;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #fff;
  border: 3px solid #8b4513;
  padding: 30px;
  text-align: center;
  box-shadow: 5px 5px 0px #d4a574;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.value-card img {
  width: 70px;
  height: 70px;
  filter: sepia(0.4);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #3a2f23;
}

/* TEAM SECTION */
.team {
  background-color: #fff;
  padding: 60px 20px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  flex: 1 1 350px;
  max-width: 450px;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 30px;
  box-shadow: 6px 6px 0px #d4a574;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-info h3 {
  font-size: 26px;
  color: #2c2416;
  margin-bottom: 8px;
}

.role {
  font-size: 16px;
  color: #8b4513;
  font-weight: 600;
  margin-bottom: 12px;
  font-style: italic;
}

.member-info .bio {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #3a2f23;
}

.member-info .expertise {
  font-size: 14px;
  color: #5c4a3a;
  font-weight: 600;
  margin: 0;
}

/* WHAT WE DO */
.what-we-do {
  background: linear-gradient(135deg, #f4e5d3 0%, #f9f5f0 100%);
  padding: 60px 20px;
}

.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pillar-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 30px;
  text-align: center;
  box-shadow: 5px 5px 0px #d4a574;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.pillar-card img {
  width: 60px;
  height: 60px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: #3a2f23;
  margin-bottom: 16px;
}

.pillar-card a {
  color: #8b4513;
  font-weight: 600;
  text-decoration: underline;
}

/* ACHIEVEMENTS */
.achievements {
  background-color: #fff;
  padding: 60px 20px;
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 30px;
  text-align: center;
  box-shadow: 6px 6px 0px #d4a574;
  margin-bottom: 20px;
}

.stat-card .stat-number {
  font-size: 48px;
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.stat-label {
  font-size: 16px;
  color: #2c2416;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods {
  background-color: #f9f5f0;
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 35px;
  text-align: center;
  box-shadow: 6px 6px 0px #d4a574;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-card img {
  width: 60px;
  height: 60px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.contact-card h3 {
  font-size: 22px;
  color: #2c2416;
  margin-bottom: 12px;
}

.contact-value {
  font-size: 18px;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 10px;
}

.contact-value a {
  color: #8b4513;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-hours,
.response-time,
.office-hours {
  font-size: 14px;
  color: #5c4a3a;
  margin: 0;
}

/* CONTACT FORM */
.contact-form-section {
  background-color: #fff;
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-description {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f4e5d3;
  border: 3px solid #d4a574;
}

.form-description p {
  font-size: 16px;
  color: #3a2f23;
  margin: 0;
}

.form-container {
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 40px;
  box-shadow: 6px 6px 0px #d4a574;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2c2416;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 3px solid #8b4513;
  background-color: #fff;
  color: #2c2416;
  font-size: 15px;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #5c2e0a;
  background-color: #f4e5d3;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3a2f23;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  font-size: 13px;
  color: #5c4a3a;
  font-style: italic;
  margin-bottom: 20px;
}

.form-container .btn {
  width: 100%;
  font-size: 18px;
  padding: 16px;
}

/* CONSULTATION BOOKING */
.consultation-booking {
  background: linear-gradient(to right, #f4e5d3, #f9f5f0);
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.consultation-info {
  max-width: 600px;
  margin: 30px auto;
  padding: 25px;
  background-color: #fff;
  border: 3px solid #d4a574;
  box-shadow: 5px 5px 0px #8b4513;
}

.consultation-info .price {
  font-size: 28px;
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 20px;
}

.consultation-info ul {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.consultation-info li {
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
  font-size: 15px;
}

.consultation-info li::before {
  content: '✓';
  position: absolute;
  left: 8px;
  color: #8b4513;
  font-weight: 700;
}

/* LOCATION MAP */
.location-map {
  background-color: #fff;
  padding: 60px 20px;
}

.map-info {
  max-width: 900px;
  margin: 0 auto;
}

.map-placeholder {
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 40px;
  text-align: center;
  box-shadow: 6px 6px 0px #d4a574;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.map-placeholder p {
  font-size: 15px;
  color: #3a2f23;
  margin: 0;
  line-height: 1.6;
}

/* BUSINESS HOURS */
.business-hours {
  background: linear-gradient(to bottom, #f4e5d3, #f9f5f0);
  padding: 60px 20px;
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto 30px;
  width: 100%;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px #d4a574;
}

.hours-table tr {
  border-bottom: 2px solid #d4a574;
}

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

.hours-table td {
  padding: 16px 20px;
  font-size: 16px;
  color: #2c2416;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #2c2416;
  border-right: 3px solid #d4a574;
}

.hours-table td:last-child {
  text-align: right;
  color: #8b4513;
  font-weight: 600;
}

.special-notice {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #d4a574;
  text-align: center;
  font-size: 14px;
  color: #5c4a3a;
  font-style: italic;
}

/* ============================================
   LEGAL PAGES (Polityka, RODO, etc.)
   ============================================ */

.legal-content {
  background-color: #fff;
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 40px;
  box-shadow: 6px 6px 0px #d4a574;
}

.content-wrapper h2 {
  font-size: 28px;
  color: #2c2416;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px double #8b4513;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #3a2f23;
}

.content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-wrapper li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #3a2f23;
}

.content-wrapper a {
  color: #8b4513;
  font-weight: 600;
  text-decoration: underline;
}

/* USER RIGHTS SECTION */
.user-rights-section {
  background: linear-gradient(to bottom, #f4e5d3, #f9f5f0);
  padding: 60px 20px;
}

.rights-grid {
  display: flex;
  justify-content: center;
}

.right-card {
  flex: 1 1 100%;
  max-width: 800px;
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 35px;
  box-shadow: 6px 6px 0px #d4a574;
}

.right-card h3 {
  font-size: 24px;
  color: #2c2416;
  margin-bottom: 16px;
  border-bottom: 3px double #8b4513;
  padding-bottom: 10px;
}

.right-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #3a2f23;
}

/* COOKIE TYPES TABLE */
.cookie-types-table {
  background-color: #fff;
  padding: 60px 20px;
}

.cookies-table {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px #d4a574;
  border-collapse: collapse;
}

.cookies-table thead {
  background-color: #8b4513;
  color: #f9f5f0;
}

.cookies-table th {
  padding: 16px 12px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 3px solid #5c2e0a;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookies-table td {
  padding: 14px 12px;
  font-size: 14px;
  color: #2c2416;
  border-bottom: 2px solid #d4a574;
}

.cookies-table tbody tr:last-child td {
  border-bottom: none;
}

.cookies-table tbody tr:nth-child(even) {
  background-color: rgba(212,165,116,0.1);
}

/* COOKIE SETTINGS CTA */
.cookie-settings-cta {
  background: linear-gradient(to right, #f4e5d3, #f9f5f0);
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.btn-wrapper {
  margin: 30px 0;
}

.browser-settings {
  font-size: 16px;
  color: #2c2416;
  margin-top: 30px;
  margin-bottom: 16px;
  font-weight: 600;
}

.browser-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.browser-links li a {
  color: #8b4513;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

/* ACCEPTANCE SECTION */
.acceptance {
  background-color: #f4e5d3;
  padding: 50px 20px;
  text-align: center;
  border-top: 5px solid #8b4513;
}

.acceptance p {
  font-size: 15px;
  color: #3a2f23;
  margin-bottom: 10px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #8b4513 0%, #d4a574 100%);
  color: #f9f5f0;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 8px double #5c2e0a;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #f9f5f0;
  color: #8b4513;
  font-size: 72px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 6px solid #5c2e0a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.thank-you-hero h1 {
  color: #f9f5f0;
  font-size: 52px;
  margin-bottom: 16px;
}

.thank-you-hero .hero-subtitle {
  color: #f4e5d3;
  font-size: 20px;
}

/* CONFIRMATION MESSAGE */
.confirmation-message {
  background-color: #f9f5f0;
  padding: 60px 20px;
}

.message-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 35px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px #d4a574;
}

.message-content h2 {
  font-size: 32px;
  color: #2c2416;
  margin-bottom: 20px;
  border-bottom: 3px double #8b4513;
  padding-bottom: 12px;
}

.message-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #3a2f23;
}

.response-time {
  padding: 16px;
  background-color: #f4e5d3;
  border-left: 5px solid #8b4513;
  margin-top: 20px;
}

.response-time strong {
  color: #8b4513;
}

/* NEXT STEPS */
.next-steps {
  background-color: #fff;
  padding: 60px 20px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.action-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #f9f5f0;
  border: 4px solid #8b4513;
  padding: 30px;
  text-align: center;
  box-shadow: 6px 6px 0px #d4a574;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.action-card img {
  width: 70px;
  height: 70px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.action-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.action-card p {
  font-size: 14px;
  color: #3a2f23;
  margin-bottom: 16px;
}

.action-card .btn {
  width: 100%;
}

/* FEATURED CONTENT */
.featured-content {
  background: linear-gradient(to bottom, #f4e5d3, #f9f5f0);
  padding: 60px 20px;
  text-align: center;
}

.featured-restaurants {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.restaurant-preview {
  flex: 1 1 350px;
  max-width: 450px;
  background-color: #fff;
  border: 4px solid #8b4513;
  padding: 25px;
  box-shadow: 5px 5px 0px #d4a574;
  text-align: left;
  margin-bottom: 20px;
}

.restaurant-preview h4 {
  font-size: 24px;
  color: #2c2416;
  margin-bottom: 8px;
}

.restaurant-preview .location {
  font-size: 14px;
  color: #8b4513;
  font-weight: 600;
  margin-bottom: 12px;
}

.restaurant-preview p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #3a2f23;
}

.restaurant-preview .rating {
  font-size: 16px;
  color: #d4a574;
  margin: 0;
}

/* CONTACT ALTERNATIVE */
.contact-alternative {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.urgent-contact {
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  background-color: #f4e5d3;
  border: 4px solid #8b4513;
  box-shadow: 5px 5px 0px #d4a574;
}

.urgent-contact p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 16px;
  color: #2c2416;
}

.urgent-contact img {
  width: 24px;
  height: 24px;
}

.urgent-contact a {
  color: #8b4513;
  font-weight: 700;
  text-decoration: none;
}

.urgent-contact a:hover {
  text-decoration: underline;
}

.urgent-contact .hours {
  font-size: 14px;
  color: #5c4a3a;
  margin: 0;
  font-style: italic;
}

/* RETURN HOME */
.return-home {
  background: linear-gradient(to right, #f4e5d3, #f9f5f0);
  padding: 50px 20px;
  text-align: center;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2416;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139,69,19,0.1) 10px, rgba(139,69,19,0.1) 20px);
  border-top: 5px solid #8b4513;
  padding: 25px 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #f4e5d3;
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #d4a574;
}

.cookie-text a {
  color: #f4e5d3;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44,36,22,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #f9f5f0;
  border: 5px solid #8b4513;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #8b4513;
  color: #f9f5f0;
  border: 3px solid #5c2e0a;
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: #5c2e0a;
}

.modal-content h3 {
  font-size: 28px;
  color: #2c2416;
  margin-bottom: 20px;
  border-bottom: 3px double #8b4513;
  padding-bottom: 12px;
}

.cookie-category {
  padding: 20px;
  background-color: #fff;
  border: 3px solid #d4a574;
  margin-bottom: 20px;
}

.cookie-category h4 {
  font-size: 18px;
  color: #2c2416;
  margin-bottom: 10px;
}

.cookie-category p {
  font-size: 14px;
  color: #3a2f23;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 14px;
  color: #2c2416;
  font-weight: 600;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1 1 150px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Section padding */
  section {
    padding: 40px 15px;
  }
  
  /* Card layouts */
  .restaurant-card,
  .service-card,
  .benefit-item,
  .route-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Statistics */
  .statistics {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
  }
  
  /* Filter bar */
  .filter-bar {
    flex-direction: column;
  }
  
  .filters {
    flex-direction: column;
  }
  
  .filter-select,
  .sort-select {
    width: 100%;
  }
  
  /* Restaurant card full */
  .restaurant-card-full {
    flex-direction: column;
  }
  
  .restaurant-info,
  .restaurant-actions {
    flex: 1 1 100%;
  }
  
  /* Listing layout */
  .listing-layout {
    flex-direction: column;
  }
  
  .restaurants-main,
  .sidebar {
    flex: 1 1 100%;
  }
  
  /* Service card detailed */
  .service-card-detailed {
    flex-direction: column;
    padding: 25px;
  }
  
  /* Steps grid */
  .steps-grid {
    flex-direction: column;
  }
  
  .step-item {
    max-width: 100%;
  }
  
  /* City tabs */
  .city-tabs {
    flex-direction: column;
  }
  
  .tab-btn {
    width: 100%;
  }
  
  /* Route meta */
  .route-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Itinerary timeline */
  .itinerary-timeline {
    padding-left: 60px;
  }
  
  .itinerary-timeline::before {
    left: 20px;
  }
  
  .itinerary-item::before {
    left: -49px;
  }
  
  .time {
    left: -60px;
    font-size: 13px;
    padding: 6px 8px;
  }
  
  /* Guides grid */
  .guides-grid {
    flex-direction: column;
  }
  
  .guide-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Tiers grid */
  .tiers-grid {
    flex-direction: column;
  }
  
  .tier-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .tier-card.recommended {
    transform: scale(1);
  }
  
  /* Partners grid */
  .partners-grid {
    flex-direction: column;
  }
  
  .partner-item {
    max-width: 100%;
  }
  
  /* Contact grid */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Form container */
  .form-container {
    padding: 25px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text,
  .cookie-actions {
    flex: 1 1 100%;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-actions .btn {
    width: 100%;
  }
  
  /* Modal content */
  .modal-content {
    padding: 25px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions .btn {
    width: 100%;
  }
  
  /* Tables */
  .hours-table {
    font-size: 14px;
  }
  
  .hours-table td {
    padding: 12px 10px;
  }
  
  .cookies-table {
    font-size: 12px;
  }
  
  .cookies-table th,
  .cookies-table td {
    padding: 10px 8px;
  }
  
  /* Pagination */
  .pagination {
    gap: 6px;
  }
  
  .page-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .restaurant-card,
  .service-card,
  .benefit-item,
  .route-card {
    flex: 1 1 calc(50% - 15px);
  }
  
  .tier-card {
    flex: 1 1 calc(50% - 15px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 15px);
  }
}

/* Desktop enhancements */
@media (min-width: 1025px) {
  .hero h1 {
    font-size: 64px;
  }
  
  section {
    padding: 80px 20px;
  }
  
  .container {
    padding: 0 40px;
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  header,
  footer,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

/* Accessibility improvements */
.btn:focus,
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #8b4513;
  outline-offset: 2px;
}

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background-color: #8b4513;
  color: #f9f5f0;
}

::-moz-selection {
  background-color: #8b4513;
  color: #f9f5f0;
}

/* Loading animation for images */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

img[src=""] {
  opacity: 0;
}

/* END OF CSS */