/* assets/css/style.css - ZOPTYMALIZOWANY I KOMPLETNY */

/* ===============================================
   FONTY
   =============================================== */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/poppins-v24-latin-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/poppins-v24-latin-600.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/poppins-v24-latin-700.woff2') format('woff2');
  font-display: swap;
}

/* ===============================================
   ZMIENNE CSS
   =============================================== */
:root {
  --primary-color: #1976D2;
  --primary-dark: #1565C0;
  --primary-light: #BBDEFB;
  --secondary-color: #F57C00;
  --secondary-dark: #E65100;
  --accent-color: #0097A7;
  --success-color: #388E3C;

  --greek-blue: #1E88E5;
  --greek-cyan: #00BCD4;
  --greek-turquoise: #26C6DA;
  --sun-yellow: #FFB300;
  --sun-orange: #FF6F00;
  --sun-gold: #FFA726;

  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --text-lighter: #9E9E9E;

  --bg-white: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-lighter: #FAFAFA;
  --bg-blue-light: #E3F2FD;
  --bg-orange-light: #FFF3E0;

  --border-color: #E0E0E0;
  --border-color-dark: #BDBDBD;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --border-radius: 12px;
  --border-radius-sm: 8px;
  --max-width: 1200px;
}

/* ===============================================
   RESET
   =============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ===============================================
   MATERIAL ICONS
   =============================================== */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  transition: var(--transition);
}

/* ===============================================
   ANIMACJE
   =============================================== */
@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconSwing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(15deg);
  }

  75% {
    transform: rotate(-15deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes sunPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.95;
  }
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-white) !important;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--bg-white) !important;
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.bg-light {
  background: var(--bg-light);
}

.lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: inline-block;
  position: relative;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(2, 62, 138, 0.2));
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-icon svg circle {
  animation: sunPulse 3s ease-in-out infinite;
  transform-origin: center;
}

.logo a:hover .logo-icon {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(2, 62, 138, 0.35));
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: #023E8A;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #023E8A 0%, #0077B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-list a {
  padding: 10px 18px;
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-list a:hover {
  background: var(--bg-blue-light);
  color: var(--primary-color);
}

.nav-list a.active {
  background: var(--primary-color);
  color: var(--bg-white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-small {
  height: 50vh;
  min-height: 400px;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.75) 0%, rgba(245, 124, 0, 0.5) 100%);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg-white);
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-text .btn {
  animation: fadeInUp 1s ease-out 0.4s backwards;
  font-size: 1.1rem;
  padding: 16px 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   MAIN CONTENT
   =============================================== */
.main {
  margin-top: 72px;
}

.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  color: var(--text-dark);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.content-section h2 .section-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--greek-cyan), var(--greek-turquoise), var(--sun-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 8px rgba(0, 188, 212, 0.4));
  animation: iconPulse 4s ease-in-out infinite;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* ===============================================
   INTRO TEXT
   =============================================== */
.intro-text {
  background: linear-gradient(135deg, var(--bg-blue-light) 0%, var(--bg-white) 50%, var(--bg-orange-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.intro-text .lead {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 2;
  color: var(--text-medium);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 50px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--greek-turquoise);
  border-right: 5px solid var(--sun-gold);
  position: relative;
}

.modified-date {
  font-size: 0.875rem;
  color: var(--text-lighter);
  text-align: center;
  margin: 0 auto 35px;
  padding: 0;
  background: transparent;
  font-style: italic;
  font-weight: 400;
  opacity: 0.8;
}

.modified-date::before {
  content: "🕒 ";
  margin-right: 4px;
  font-style: normal;
  opacity: 0.6;
}

/* ===============================================
   TABLE OF CONTENTS
   =============================================== */
.toc-section {
  padding: 40px 0;
  background: var(--bg-light);
}

.toc-box {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--border-color);
}

.toc-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc ul {
  list-style: none;
}

.toc li {
  margin-bottom: 12px;
}

.toc a {
  display: block;
  padding: 12px 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.toc a:hover {
  background: var(--bg-blue-light);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  transform: translateX(8px);
}

/* ===============================================
   INFO CARDS
   =============================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.info-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--bg-blue-light);
}

.info-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--greek-turquoise), var(--sun-yellow), var(--greek-cyan));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(3px 3px 10px rgba(38, 198, 218, 0.4));
  animation: iconPulse 3.5s ease-in-out infinite;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.info-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===============================================
   FEATURES GRID
   =============================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.feature-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.feature-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===============================================
   ATTRACTIONS - POPRAWIONE DLA index.php
   =============================================== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.attraction-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.attraction-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--primary-light);
}

/* Featured attraction (grid column span) */
.attraction-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Obrazy w attraction-card */
.attraction-card .attraction-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.attraction-card.featured .attraction-image {
  height: 100%;
  min-height: 400px;
}

.attraction-card .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.1);
}

.attraction-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.attraction-card:not(.featured) {
  padding: 30px;
}

.attraction-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.attraction-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ===============================================
   ATTRACTION DETAIL - dla atrakcje-turystyczne.php
   =============================================== */
.attraction-detail {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.attraction-detail:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.attraction-detail-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
  padding: 30px 40px;
}

.attraction-detail-header h3 {
  font-size: 2rem;
  margin: 15px 0;
  color: var(--bg-white);
}

.attraction-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  margin-bottom: 10px;
}

.attraction-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 15px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.attraction-detail-content {
  padding: 40px;
}

.attraction-description {
  color: var(--text-medium);
  line-height: 1.8;
}

/* Obrazy w attraction-detail */
.attraction-detail .attraction-image {
  width: 100%;
  margin: 25px 0;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.attraction-detail .attraction-image img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.attraction-detail:hover .attraction-image img {
  transform: scale(1.05);
}

.attraction-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.attraction-image-grid picture {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.attraction-image-grid img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
}

.attraction-description h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin: 30px 0 15px;
  padding-left: 12px;
  border-left: 4px solid var(--primary-color);
}

.attraction-description ul.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.attraction-description ul.checklist li {
  padding: 12px 0 12px 35px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-medium);
  line-height: 1.7;
}

.attraction-description ul.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.attraction-nearby {
  background: var(--bg-lighter);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin-top: 25px;
}

.attraction-nearby h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  margin: 0 0 10px 0;
  padding: 0;
  border: none;
  font-size: 1.15rem;
}

/* ===============================================
   PRACTICAL GRID
   =============================================== */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.practical-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.practical-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.practical-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.practical-card ul {
  list-style: none;
}

.practical-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.practical-card li:last-child {
  border-bottom: none;
}

.practical-card strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* ===============================================
   FAQ & INFO BOXES
   =============================================== */
.faq-section {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

/* KONTYNUACJA style.css od .faq-item h3 */

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item strong {
  color: var(--primary-color);
  font-weight: 600;
}

.tip-box,
.warning-box {
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.tip-box {
    background-color: var(--primary-light); /* Używamy Twojej zmiennej jasnoniebieskiej */
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    margin: 25px 0;
}

.warning-box {
  background: var(--bg-orange-light);
  border-left: 4px solid var(--secondary-color);
}

.tip-box .material-symbols-outlined {
    font-size: 32px;
    color: var(--primary-dark);
    margin-right: 20px;
    flex-shrink: 0;
}

.warning-box .material-symbols-outlined {
  color: var(--secondary-color);
  font-size: 28px;
  flex-shrink: 0;
}

.tip-box strong,
.warning-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.tip-box p,
.warning-box p {
margin: 5px 0 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 40px 0;
  border: 2px solid var(--border-color);
  display: flex;
  gap: 20px;
}

.info-box .material-symbols-outlined {
  color: var(--accent-color);
  font-size: 36px;
  flex-shrink: 0;
}

.info-box h3 {
  color: var(--primary-color);
  margin: 0 0 15px 0;
  font-size: 1.4rem;
}

.info-box p {
  margin-bottom: 15px;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ===============================================
   CTA BOXES
   =============================================== */
.cta-box {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
  color: var(--bg-white) !important;
  padding: 50px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 60px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  color: var(--bg-white) !important;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  color: var(--bg-white) !important;
}

.cta-box .btn {
  background: var(--bg-white);
  color: var(--primary-color) !important;
  border-color: var(--bg-white);
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.cta-box .btn:hover {
  background: var(--bg-light);
  color: var(--primary-dark) !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #0D47A1);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section h2::after {
  background: var(--bg-white);
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn {
  min-width: 180px;
}

/* ===============================================
   TABELE
   =============================================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 0.95rem;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
  font-weight: 600;
}

.comparison-table th {
  border: none;
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
  white-space: nowrap;
}

.comparison-table td {
  border: 1px solid var(--border-color);
  padding: 14px;
  text-align: left;
  color: var(--text-light);
}

.comparison-table td strong {
  color: var(--text-dark);
  font-weight: 600;
}

.comparison-table tbody tr {
  transition: var(--transition-fast);
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--bg-lighter);
}

.comparison-table tbody tr:hover {
  background-color: var(--bg-blue-light);
  transform: scale(1.01);
  box-shadow: var(--shadow-sm);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 8px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

/* ===============================================
   SCROLL TO TOP
   =============================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--greek-turquoise), var(--sun-yellow), var(--greek-cyan));
  background-size: 200% 200%;
  color: var(--bg-white);
  border: 3px solid var(--bg-white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(38, 198, 218, 0.4);
  z-index: 999;
}

.scroll-top .material-symbols-outlined {
  font-size: 32px;
  font-weight: bold;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  animation: iconBounce 2.5s ease-in-out infinite;
}

.scroll-top:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 12px 32px rgba(255, 179, 0, 0.6);
  animation: iconRotate 1.5s linear infinite;
}

/* ===============================================
   ARTICLE STYLES
   =============================================== */
.content-article {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.content-article h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: left;
}

.content-article h2::after {
  display: none;
}

.content-article h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid var(--primary-color);
  line-height: 1.4;
}

.content-article p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.content-article strong {
  color: var(--text-dark);
  font-weight: 600;
}

.content-article .lead {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 25px;
  background: var(--bg-blue-light);
  border-left: 5px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
}

/* ===============================================
   VILLAGES & BEACHES
   =============================================== */
.villages-grid,
.beaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.village-card,
.beach-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.village-card:hover,
.beach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.village-card h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.village-subtitle {
  font-size: 1rem;
  color: var(--text-lighter);
  font-style: italic;
  margin-bottom: 20px;
}

/* ===============================================
   ROUTES (Transport)
   =============================================== */
.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.route-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.route-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.route-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.route-number {
  background: var(--bg-white);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.route-header h3 {
  flex: 1;
  margin: 0;
  font-size: 1.4rem;
  color: var(--bg-white);
}

.route-content {
  padding: 30px;
}

.route-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius-sm);
}

.route-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
}

/* ===============================================
   RESPONSIVE
   =============================================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--bg-white);
    transform: translateX(-100%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-list a {
    display: block;
    padding: 18px 20px;
    border-radius: 0;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-small {
    height: 40vh;
    min-height: 300px;
  }

  .content-section {
    padding: 50px 0;
  }

  .attraction-card.featured {
    grid-template-columns: 1fr;
  }

  .attraction-card.featured .attraction-image {
    min-height: 300px;
  }

  .cta-box {
    padding: 35px 25px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .content-section h2 {
    flex-direction: column;
    gap: 10px;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
  }

  .comparison-table tr {
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    background: var(--bg-white);
    overflow: hidden;
  }

  .comparison-table td {
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
    position: relative;
    padding-left: 50%;
  }

  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
  }

  .comparison-table td:first-child {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    padding: 15px;
    padding-left: 15px;
  }

  .comparison-table td:first-child::before {
    content: none;
  }

  .intro-text .lead {
    padding: 30px 25px;
    font-size: 0.95rem;
  }

  .content-article {
    padding: 25px 20px;
  }

  .tip-box,
  .warning-box,
  .info-box {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {

  .info-grid,
  .features-grid,
  .attractions-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .comparison-table td {
    font-size: 0.9rem;
    padding: 10px 12px;
    padding-left: 45%;
  }

  .attraction-card .attraction-image,
  .attraction-card.featured .attraction-image {
    height: 200px;
    min-height: 200px;
  }
}

/* ===============================================
   KLASY POMOCNICZE DLA ANIMACJI
   =============================================== */
.aos-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===============================================
   HIGHLIGHT BOX
   =============================================== */
.highlight-box {
  background: var(--bg-blue-light);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--accent-color);
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.highlight-box .material-symbols-outlined {
  color: var(--accent-color);
  font-size: 28px;
  flex-shrink: 0;
}

.highlight-box p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.7;
}

.highlight-box a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.highlight-box a:hover {
  color: var(--primary-dark);
}

/* ===============================================
   NOTE BOX
   =============================================== */
.note-box {
  background: var(--bg-orange-light);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--secondary-color);
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.note-box .material-symbols-outlined {
  color: var(--secondary-color);
  font-size: 28px;
  flex-shrink: 0;
}

.note-box p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.7;
}

.note-box strong {
  color: var(--secondary-dark);
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* ===============================================
   SEASON COMPARISON (Transport page)
   =============================================== */
.season-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.season-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
}

.season-header {
  padding: 25px;
  text-align: center;
  color: var(--bg-white);
}

.season-header.season-high {
  background: linear-gradient(135deg, var(--sun-orange), var(--sun-gold));
}

.season-header.season-low {
  background: linear-gradient(135deg, var(--accent-color), var(--greek-cyan));
}

.season-header .material-symbols-outlined {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.season-header h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  color: var(--bg-white);
}

.season-date {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 600;
}

.season-content {
  padding: 30px;
}

.season-content h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.season-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.season-content li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
  line-height: 1.7;
}

.season-content li:last-child {
  border-bottom: none;
}

.season-note {
  background: var(--bg-orange-light);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--secondary-color);
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===============================================
   TICKET METHODS (Transport page)
   =============================================== */
.ticket-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.method-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.method-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.method-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.method-icon .material-symbols-outlined {
  font-size: 36px;
  color: var(--primary-color);
}

.method-card h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.method-card>p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.method-details {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin-top: 20px;
}

.method-details p {
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.method-details p:last-child {
  margin-bottom: 0;
}

/* ===============================================
   TIPS GRID
   =============================================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.tip-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.tip-icon {
  font-size: 3rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 15px;
}

.tip-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.tip-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ===============================================
   PRICING TIPS
   =============================================== */
.pricing-tips {
  background: var(--bg-blue-light);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-top: 30px;
  border-left: 5px solid var(--primary-color);
}

.pricing-tips h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.pricing-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-tips li {
  padding: 12px 0 12px 30px;
  color: var(--text-medium);
  line-height: 1.8;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.pricing-tips li:last-child {
  border-bottom: none;
}

.pricing-tips li::before {
  content: '💡';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* ===============================================
   ALTERNATIVES GRID
   =============================================== */
.alternatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.alternative-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.alternative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.alt-icon {
  font-size: 4rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 20px;
}

.alternative-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.alternative-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.alternative-card p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.alternative-card .btn {
  margin-top: 10px;
}

/* ===============================================
   ROUTE BADGES
   =============================================== */
.route-badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.route-badge-long {
  background: rgba(255, 193, 7, 0.3);
}

.route-badge-tourist {
  background: rgba(76, 175, 80, 0.3);
}

/* ===============================================
   BADGE VARIANTS (Attractions)
   =============================================== */
.badge-ancient {
  background: rgba(255, 193, 7, 0.3);
}

.badge-medieval {
  background: rgba(156, 39, 176, 0.3);
}

.badge-landmark {
  background: rgba(76, 175, 80, 0.3);
}

.badge-nature {
  background: rgba(0, 150, 136, 0.3);
}

.badge-beach {
  background: rgba(3, 169, 244, 0.3);
}

.badge-village {
  background: rgba(255, 152, 0, 0.3);
}

.badge-city {
  background: rgba(233, 30, 99, 0.3);
}

.badge-resort {
  background: rgba(103, 58, 183, 0.3);
}

/* ===============================================
   BEACHES
   =============================================== */
.beaches-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.beach-card {
  min-height: auto;
}

.beach-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent-color), var(--success-color));
  color: var(--bg-white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.beach-card h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.beach-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.beach-features span {
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* ===============================================
   NATURE ATTRACTION
   =============================================== */
.nature-attraction {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.nature-attraction .attraction-detail-header {
  background: linear-gradient(135deg, var(--accent-color), var(--success-color));
}

/* ===============================================
   FEATURED ATTRACTION
   =============================================== */
.featured-attraction {
  border: 3px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
}

/* ===============================================
   ROUTE STOPS
   =============================================== */
.route-stops {
  background: var(--bg-blue-light);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary-color);
}

.route-stops strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.route-stops p {
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Featured attraction - gradient header */
.featured-attraction .attraction-detail-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.featured-attraction .attraction-detail-header h3 {
  color: var(--bg-white) !important;
}

.featured-attraction .attraction-detail-header .attraction-badge {
  background: rgba(255, 255, 255, 0.25);
  color: var(--bg-white);
}

/* ===============================================
   ROUTE DESCRIPTION
   =============================================== */
.route-description {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* ===============================================
   SCHEDULE INFO
   =============================================== */
.schedule-info {
  max-width: 1000px;
  margin: 0 auto;
}

/* ===============================================
   TABLE RESPONSIVE
   =============================================== */
.table-responsive {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ===============================================
   VILLAGE CONTENT
   =============================================== */
.village-content .attraction-badge {
  background: linear-gradient(135deg, var(--secondary-color), var(--sun-gold));
  color: var(--bg-white);
  margin-bottom: 15px;
}

.village-card.featured {
  border: 3px solid var(--secondary-color);
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-lighter) 100%);
}

.village-content h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin: 25px 0 15px;
}

.village-content ul.checklist li::before {
  content: '🏛️';
  font-size: 1.1rem;
}

.village-card.featured ul.checklist li::before {
  content: '🌟';
}

/* ===============================================
   SOURCE INFO
   =============================================== */
.source-info {
  font-size: 0.9rem;
  color: var(--text-lighter);
  font-style: italic;
  padding: 15px;
  background: var(--bg-lighter);
  border-left: 3px solid var(--accent-color);
  border-radius: var(--border-radius-sm);
  margin: 20px 0;
}

/* ===============================================
   RESPONSIVE - DODATKOWE DOSTOSOWANIA
   =============================================== */
@media (max-width: 992px) {
  .season-comparison {
    grid-template-columns: 1fr;
  }

  .route-details {
    grid-template-columns: 1fr;
  }

  .villages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .route-header {
    padding: 20px;
  }

  .route-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .route-header h3 {
    font-size: 1.2rem;
  }

  .route-content {
    padding: 20px;
  }

  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .alternatives-grid {
    grid-template-columns: 1fr;
  }

  .ticket-methods {
    gap: 20px;
  }

  .method-card {
    padding: 25px 20px;
  }

  .attraction-detail-content {
    padding: 25px 20px;
  }

  .attraction-detail-header {
    padding: 25px 20px;
  }

  .attraction-detail-header h3 {
    font-size: 1.5rem;
  }

  .attraction-meta {
    flex-direction: column;
    gap: 12px;
  }

  .attraction-image-grid {
    grid-template-columns: 1fr;
  }

  .beaches-grid,
  .villages-grid {
    grid-template-columns: 1fr;
  }

  .village-card {
    padding: 25px 20px;
  }

  .modified-date {
    font-size: 0.85rem;
    padding: 10px 20px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .route-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-badge {
    align-self: flex-start;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .tip-icon {
    font-size: 2.5rem;
  }

  .method-icon {
    width: 60px;
    height: 60px;
  }

  .method-icon .material-symbols-outlined {
    font-size: 30px;
  }

  .attraction-detail-header h3 {
    font-size: 1.3rem;
  }

  .attraction-description h4 {
    font-size: 1.15rem;
    padding-left: 10px;
    border-left-width: 3px;
  }

  .beach-features {
    flex-direction: column;
  }

  .beach-features span {
    text-align: center;
  }

  .modified-date {
    font-size: 0.8rem;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .section-icon {
    font-size: 2.2rem !important;
  }

  .info-icon {
    font-size: 2.8rem !important;
  }

  .practical-icon {
    font-size: 1.6rem !important;
  }
}

/* ===============================================
   PRINT STYLES
   =============================================== */
@media print {

  .header,
  .hamburger,
  .scroll-top,
  .cta-section,
  .cta-box {
    display: none;
  }

  .hero {
    margin-top: 0;
    height: auto;
    min-height: auto;
  }

  .main {
    margin-top: 0;
  }

  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }

  a {
    text-decoration: underline;
  }
}

/* ===============================================
   ACCESSIBILITY
   =============================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===============================================
   KONIEC PLIKU style.css
   =============================================== */


/* ===============================================
   POLITYKA PRYWATNOŚCI - PRIVACY POLICY STYLES
   =============================================== */

.privacy-policy {
  max-width: 1000px;
}

/* Update Info Bar */
.update-info {
  background: var(--bg-blue-light);
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--primary-color);
}

.update-info .material-symbols-outlined {
  color: var(--primary-color);
  font-size: 24px;
}

/* Policy Sections */
.policy-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-align: left;
}

.policy-section h2::after {
  display: none;
}

.policy-section h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 0;
  border-left: none;
}

.policy-section h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ADO Box */
.ado-box {
  background: var(--bg-light);
  padding: 25px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary-color);
  margin: 20px 0;
}

.ado-box p {
  margin-bottom: 10px;
  line-height: 1.8;
}

.ado-box strong {
  color: var(--primary-color);
}

.ado-box a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Privacy Table */
.table-responsive {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  font-size: 0.9rem;
}

.privacy-table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
}

.privacy-table th {
  padding: 15px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.privacy-table td {
  padding: 15px 12px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
  line-height: 1.7;
}

.privacy-table tbody tr:hover {
  background: var(--bg-lighter);
}

.privacy-table td strong {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Note Box */
.note-box {
  background: var(--bg-orange-light);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--secondary-color);
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.note-box .material-symbols-outlined {
  color: var(--secondary-color);
  font-size: 28px;
  flex-shrink: 0;
}

.note-box p {
  margin: 0;
  color: var(--text-medium);
}

.note-box strong {
  color: var(--secondary-dark);
}

/* Highlight Box */
.highlight-box {
  background: var(--bg-blue-light);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--accent-color);
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.highlight-box .material-symbols-outlined {
  color: var(--accent-color);
  font-size: 28px;
  flex-shrink: 0;
}

.highlight-box p {
  margin: 0;
  color: var(--text-medium);
}

.highlight-box a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* Cookies Grid */
.cookies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.cookie-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--border-radius);
  border: 2px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.cookie-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.cookie-icon {
  font-size: 3rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 15px;
}

.cookie-card h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cookie-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.right-item {
  background: var(--bg-light);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.right-item:hover {
  background: var(--bg-blue-light);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.right-item .material-symbols-outlined {
  color: var(--primary-color);
  font-size: 24px;
  flex-shrink: 0;
}

.right-item strong {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Security Box */
.security-box {
  background: linear-gradient(135deg, var(--bg-blue-light), var(--bg-lighter));
  padding: 30px;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-light);
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 25px 0;
}

.security-icon {
  font-size: 4rem;
  color: var(--success-color);
  flex-shrink: 0;
}

.security-box h3 {
  margin: 0 0 10px 0;
  padding: 0;
  color: var(--text-dark);
}

.security-box p {
  margin-bottom: 10px;
  color: var(--text-medium);
}

.ssl-info {
  background: var(--bg-white);
  padding: 10px 15px;
  border-radius: var(--border-radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--success-color);
  margin-top: 15px;
}

/* Contact Box */
.contact-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 25px 0;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item .material-symbols-outlined {
  color: var(--primary-color);
  font-size: 32px;
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.contact-item a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Summary Box */
.summary-box {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-top: 40px;
}

.summary-box h3 {
  color: var(--bg-white);
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1.5rem;
}

.summary-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-box li {
  padding: 10px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-box li:last-child {
  border-bottom: none;
}

/* Responsive dla tabeli */
@media (max-width: 768px) {
  .privacy-table thead {
    display: none;
  }

  .privacy-table,
  .privacy-table tbody,
  .privacy-table tr,
  .privacy-table td {
    display: block;
  }

  .privacy-table tr {
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
  }

  .privacy-table td {
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
    position: relative;
    padding-left: 50%;
  }

  .privacy-table td:last-child {
    border-bottom: none;
  }

  .privacy-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 12px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
  }

  .privacy-table td:first-child {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    font-weight: 700;
    text-align: center;
    padding: 15px;
    padding-left: 15px;
  }

  .privacy-table td:first-child::before {
    content: none;
  }

  .security-box {
    flex-direction: column;
    text-align: center;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .cookies-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .privacy-table td {
    font-size: 0.85rem;
    padding: 10px 12px;
    padding-left: 45%;
  }

  .privacy-table td::before {
    font-size: 0.8rem;
    left: 12px;
  }

  .security-icon {
    font-size: 3rem;
  }

  .note-box,
  .highlight-box {
    flex-direction: column;
    text-align: center;
  }

  .summary-box {
    padding: 20px;
  }

  .summary-box li {
    font-size: 0.95rem;
  }
}

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

/* Hero mniejszy dla podstron */
.hero-small {
  height: 50vh;
  min-height: 400px;
}

/* Sekcja intro */
.about-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.expertise-card {
  background: var(--bg-white);
  padding: 35px 25px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.expertise-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.expertise-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.expertise-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 50px;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 30px;
  transition: var(--transition);
  border-left: 5px solid var(--primary-color);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.team-card:nth-child(2) {
  border-left-color: var(--secondary-color);
}

.team-card:nth-child(3) {
  border-left-color: var(--accent-color);
}

/* Avatar */
.team-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.avatar-placeholder .material-symbols-outlined {
  font-size: 60px;
  color: var(--primary-color);
}

/* Team Content */
.team-content {
  flex: 1;
}

.team-content h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-style: italic;
}

.team-quote {
  background: var(--bg-blue-light);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-medium);
  border-radius: var(--border-radius-sm);
  position: relative;
}

.team-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 50px;
  color: var(--primary-light);
  font-family: Georgia, serif;
}

/* Team Details */
.team-details h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 25px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-details p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.team-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.team-details li {
  padding: 8px 0 8px 25px;
  color: var(--text-light);
  position: relative;
  line-height: 1.7;
}

.team-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Fun Fact */
.team-fun-fact {
  background: linear-gradient(135deg, var(--bg-orange-light), var(--bg-light));
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin-top: 25px;
  border: 2px dashed var(--secondary-color);
}

.team-fun-fact strong {
  color: var(--secondary-color);
  font-size: 1.05rem;
}

/* Transparency Section */
.transparency-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.policy-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.policy-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.policy-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.policy-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Contact Info */
.contact-info {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: var(--border-radius-sm);
  margin: 30px 0;
  backdrop-filter: blur(10px);
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--bg-white);
  font-weight: 600;
  text-decoration: underline;
}

.contact-info a:hover {
  color: var(--primary-light);
}

.thanks-note {
  margin-top: 30px;
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-small {
    height: 40vh;
    min-height: 300px;
  }

  .team-card {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .avatar-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .avatar-placeholder .material-symbols-outlined {
    font-size: 50px;
  }

  .team-content h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .team-role {
    text-align: center;
  }

  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .expertise-card {
    padding: 25px 15px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .team-card {
    padding: 25px 15px;
  }

  .team-details h4 {
    font-size: 1rem;
  }

  .expertise-icon {
    font-size: 2.5rem;
  }

  .expertise-card h3 {
    font-size: 1.5rem;
  }
}

/* adsense "REKLAMA" */
.ad-container {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--greek-turquoise);
  border-right: 5px solid var(--sun-gold);
  position: relative;
}

.ad-label {
  font-size: 0.8em;
  color: #666;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.adsense-wrapper {
  width: 100%;
  display: block;
  min-height: 250px;
  overflow: hidden;
  text-align: center;
}

/* Kontener mapy plaże*/
.map-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.map-header {
  background: linear-gradient(135deg, #1976D2, #0097A7);
  color: white;
  padding: 30px;
  border-radius: 12px 12px 0 0;
  text-align: center;
}

.map-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.map-header p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Mapa */
#beachMap {
  width: 100%;
  height: 600px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Niestandardowe popupy */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.beach-popup {
  min-width: 200px;
}

.beach-popup h3 {
  color: #1976D2;
  font-size: 1.2rem;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #BBDEFB;
}

.beach-popup .description {
  color: #424242;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.beach-popup .features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.beach-popup .feature-tag {
  background: #E3F2FD;
  color: #1976D2;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Legenda */
.map-legend {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-legend h3 {
  color: #1976D2;
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #FAFAFA;
  border-radius: 8px;
  border-left: 3px solid #1976D2;
}

.legend-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.legend-icon.gold {
  background: #FFD700;
}

.legend-icon.silver {
  background: #C0C0C0;
}

.legend-icon.bronze {
  background: #CD7F32;
}

.legend-icon.blue {
  background: #1976D2;
  color: white;
}

.legend-text {
  flex: 1;
}

.legend-text strong {
  color: #212121;
  display: block;
  margin-bottom: 3px;
}

.legend-text span {
  color: #757575;
  font-size: 0.9rem;
}

/* Przyciski kontrolne */
.map-controls {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-controls button {
  padding: 12px 24px;
  background: #1976D2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-controls button:hover {
  background: #1565C0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* Responsywność */
@media (max-width: 768px) {
  #beachMap {
    height: 450px;
  }

  .map-header h2 {
    font-size: 1.5rem;
  }

  .map-header p {
    font-size: 1rem;
  }

  .legend-items {
    grid-template-columns: 1fr;
  }

  .map-controls {
    flex-direction: column;
  }

  .map-controls button {
    width: 100%;
  }
}
/* ===============================================
   IMAGE CAPTIONS - Podpisy zdjęć
   =============================================== */

/* Wyłączamy podwójne obramowanie gdy używamy figcaption */
.attraction-image figure.image-with-caption {
  margin: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.image-with-caption {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.image-with-caption:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.image-with-caption picture {
  display: block;
  width: 100%;
}

.image-with-caption img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.image-with-caption:hover img {
  transform: scale(1.02);
}

.image-caption {
  background: var(--bg-light);
  padding: 15px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  border-top: 3px solid var(--primary-color);
  margin: 0;
}

.image-caption strong {
  color: var(--text-dark);
  font-weight: 600;
  font-style: normal;
}

/* Wariant z ikoną */
.image-caption.with-icon {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.image-caption.with-icon::before {
  content: '📷';
  font-size: 1.2rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Wariant z lokalizacją */
.image-caption.with-location::before {
  content: '📍';
}

/* Wariant z datą */
.image-caption.with-date::before {
  content: '📅';
}

/* Wariant z gradientem */
.image-caption.gradient {
  background: linear-gradient(135deg, var(--bg-blue-light), var(--bg-orange-light));
  border-top-color: var(--greek-turquoise);
}

/* Wariant ciemny */
.image-caption.dark {
  background: var(--text-dark);
  color: var(--bg-white);
  border-top-color: var(--sun-gold);
}

.image-caption.dark strong {
  color: var(--sun-gold);
}

/* Responsive */
@media (max-width: 768px) {
  .image-caption {
    font-size: 0.85rem;
    padding: 12px 15px;
  }
}

/* ===============================================
   DROPDOWN NAVIGATION STYLES
   Dodaj to na końcu pliku style.css
   =============================================== */

/* Dropdown container */
.nav-dropdown {
  position: relative;
}

/* Dropdown toggle button */
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
}

.dropdown-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Animacja strzałki przy hover */
.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown menu - ukryte domyślnie */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 240px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  list-style: none;
  padding: 8px 0;
  margin-top: 8px;
  border: 2px solid var(--border-color);
}

/* Pokazanie menu przy hover */
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.nav-dropdown-menu li {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}

.nav-dropdown-menu li:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  border-radius: 0;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-blue-light);
  color: var(--primary-color);
  padding-left: 25px;
}

.nav-dropdown-menu a.active {
  background: var(--primary-color);
  color: var(--bg-white);
}

/* Podświetlenie aktywnego dropdown */
.nav-dropdown.active > .nav-dropdown-toggle {
  color: var(--primary-color);
  background: var(--bg-blue-light);
}

/* ===============================================
   MOBILE DROPDOWN STYLES
   =============================================== */

@media (max-width: 768px) {
  /* Menu rozwijane w pionie na mobile */
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 0;
    padding: 0;
    background: var(--bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  }

  /* Rozwinięte menu mobilne */
  .nav-dropdown.mobile-open .nav-dropdown-menu {
    max-height: 500px;
    padding: 8px 0;
  }

  /* Toggle button na mobile */
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 18px 20px;
  }

  /* Wcięcie dla linków w dropdown */
  .nav-dropdown-menu a {
    padding-left: 35px;
    font-size: 0.95rem;
  }

  .nav-dropdown-menu a:hover {
    padding-left: 40px;
  }

  /* Wyłączenie hover na mobile */
  .nav-dropdown:hover .nav-dropdown-menu {
    max-height: 0;
  }

  .nav-dropdown.mobile-open:hover .nav-dropdown-menu {
    max-height: 500px;
  }

  /* Animacja strzałki na mobile */
  .nav-dropdown.mobile-open .dropdown-icon {
    transform: rotate(180deg);
  }
}

/* ===============================================
   ACCESSIBILITY IMPROVEMENTS
   =============================================== */

/* Focus states dla dostępności */
.nav-dropdown-toggle:focus,
.nav-dropdown-menu a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Keyboard navigation */
.nav-dropdown-menu a:focus-visible {
  background: var(--bg-blue-light);
  color: var(--primary-color);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav-dropdown-menu {
    border: 3px solid var(--text-dark);
  }
  
  .nav-dropdown-menu a.active {
    border: 2px solid var(--bg-white);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-menu,
  .dropdown-icon {
    transition: none;
  }
}

/* ===============================================
   słowniczek medyczny
   =============================================== */
    .med-dictionary-wrapper {
        font-family: 'Poppins', sans-serif;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        border: 1px solid #eef2f6;
        overflow: hidden;
        margin: 20px 0;
    }

    .med-dict-header {
        background: #f8f9fa;
        padding: 20px;
        border-bottom: 2px solid #eee;
    }

    .med-dict-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 15px 0;
        color: #1976D2;
        font-size: 1.25rem;
    }

    .search-container {
        position: relative;
        width: 100%;
    }

    .search-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
        font-size: 20px;
    }

    #dictSearchInput {
        width: 100%;
        padding: 12px 12px 12px 40px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
    }

    #dictSearchInput:focus {
        outline: none;
        border-color: #1976D2;
        background: #fff;
    }

    .med-dict-table-container {
        max-height: 500px;
        overflow-y: auto;
    }

    .dictionary-table, #medicalDictTable {
        width: 100%;
        border-collapse: collapse;
    }

    #medicalDictTable th {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
        padding: 12px 15px;
        text-align: left;
        border-bottom: 2px solid #f1f1f1;
        font-size: 0.85rem;
        color: #999;
        text-transform: uppercase;
    }

    #medicalDictTable td {
        padding: 12px 15px;
        border-bottom: 1px solid #f1f1f1;
        font-size: 0.95rem;
    }

    .category-row td {
        background: #f1f5f9;
        font-weight: bold;
        color: #475569;
        font-size: 0.8rem !important;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .greek-font {
        font-weight: 600;
        color: #1976D2;
    }

    .phonetic {
        color: #d32f2f;
        font-style: italic;
    }

    /* Pasek przewijania */
    .med-dict-table-container::-webkit-scrollbar {
        width: 6px;
    }
    .med-dict-table-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    .med-dict-table-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    @media (max-width: 600px) {
        #medicalDictTable td {
            padding: 10px;
            font-size: 0.85rem;
        }
    }
/* Celujemy konkretnie w Twoje listy w artykule */
.checklist {
    list-style-type: disc;      /* Przywraca kropki, jeśli zniknęły */
    list-style-position: outside; /* Kropka zostaje na zewnątrz, tekst się wyrównuje */
    padding-left: 1.5rem;       /* Kluczowe: tworzy miejsce na kropki */
    margin-bottom: 1.5rem;      /* Odstęp całej listy od następnego elementu */
}

.checklist li {
    margin-bottom: 0.8rem;      /* Odstęp między punktami - dodaje "oddechu" */
    line-height: 1.6;           /* Poprawia czytelność długiego tekstu */
    padding-left: 0.5rem;       /* Lekki odstęp tekstu od samej kropki */
}

/* Opcjonalnie: Styl dla pogrubionych nagłówków wewnątrz listy */
.checklist li strong {
    color: #2c3e50;             /* Ciemniejszy kolor dla kontrastu */
    display: inline-block;      /* Pomaga w lepszym pozycjonowaniu */
}


.tip-image-container {
    margin: 15px 0 5px 0;
    text-align: center;
}

.tip-inline-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 3px solid #fff; /* Efekt ramki zdjęcia */
}

.tip-image-container figcaption {
    font-size: 0.85rem;
    font-style: italic;
    color: #666;
    margin-top: 8px;
}

/* Styl dla listy kontrolnej z ikonami */
.checklist-icons {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

.checklist-icons li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: left; /* Gwarantuje wyrównanie do lewej na mobilkach */
}

.checklist-icons li::before {
    /* Treść i Font */
    content: "check_circle"; /* Zmieniłem na pełne kółko, wygląda czyściej w poradnikach */
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    
    /* Wygląd */
    color: var(--primary-color);
    display: inline-block;
    
    /* KLUCZOWE POPRAWKI DLA WYRÓWNANIA */
    flex-shrink: 0;        /* Ikona nigdy nie zmieni rozmiaru, nawet przy długim tekście */
    margin-right: 12px;    /* Odstęp od tekstu */
    margin-top: 2px;       /* Precyzyjne wyrównanie góra-dół względem pierwszej linii tekstu */
    
    /* Reset i renderowanie */
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

/* Upewnij się, że rodzic (li) ma ten styl, aby ikona i tekst współpracowały */
.checklist-icons li {
    display: flex;
    align-items: flex-start; /* Ikona zawsze na górze, nawet przy kilku liniach tekstu */
    text-align: left;        /* Gwarantuje wyrównanie do lewej na mobilkach */
    margin-bottom: 10px;
}

/* Na urządzeniach mobilnych upewniamy się, że nie ma zbędnych marginesów */
@media (max-width: 768px) {
    .checklist-icons li {
        font-size: 0.95rem;
    }
}

/* Specjalna lista dla ostrzeżeń */
.checklist-warning {
    list-style: none;
    padding-left: 0; /* Resetujemy, bo flex załatwi margines */
    margin-top: 15px;
    margin-bottom: 0;
}

.checklist-warning li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: left;
}

.checklist-warning li::before {
    content: "warning"; /* Ikona ostrzeżenia z Material Symbols */
    font-family: 'Material Symbols Outlined';
    font-size: 18px;
    color: #d32f2f; /* Kolor czerwony/ostrzegawczy */
    margin-right: 12px;
    margin-top: 3px;
    display: inline-block;
    flex-shrink: 0; /* Zapobiega zgniataniu ikony */
}

/* Poprawka dla mobilnych, aby ikona i tekst miały oddech od krawędzi boxa */
@media (max-width: 768px) {
    .warning-box {
        padding-left: 15px;
    }
}

/* Lista tematyczna dla wiatru/pogody */
.checklist-wind {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

.checklist-wind li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: left;
}

.checklist-wind li::before {
    content: "airwave"; /* Ikona fali/wiatru z Material Symbols */
    font-family: 'Material Symbols Outlined';
    font-size: 18px;
    color: #1976D2; /* Twój kolor primary */
    margin-right: 12px;
    margin-top: 3px;
    display: inline-block;
    flex-shrink: 0;
}

/* Fix dla wszystkich list w warning-box na mobilkach */
@media (max-width: 768px) {
    .warning-box ul {
        padding-left: 0;
        margin-left: 0;
    }
}