/* TourRybnik Theme CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #9370db;
  --accent: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
}


footer p {
  color: white !important;
}
/* Navigation Styles */
nav {
  background: linear-gradient(135deg, var(--primary) 0%, #7c5cc9 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-container img {
  width: 45px !important;
  height: 45px !important;
  display: block !important;
  margin: 0 !important;
}

.brand-name {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  text-decoration: none !important;
}

nav ul {
  display: flex !important;
  gap: 2rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap;
}

nav ul::before,
nav ul::after,
nav ul li::before,
nav ul li::after {
  display: none !important;
  content: none !important;
}

nav ul li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

nav ul li a {
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  transition: opacity 0.3s ease;
  padding: 0.5rem 0 !important;
  display: block !important;
}

nav ul li a:hover {
  opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  nav .container {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
  }

  nav ul {
    display: none !important;
    width: 100%;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  nav ul.active {
    display: flex !important;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  nav ul li a {
    padding: 1rem !important;
    width: 100%;
  }
}

/* Hero Section */
.hero {
  position: relative !important;
  min-height: 600px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 4rem 1.5rem !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.hero::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(147, 112, 219, 0.85) 0%, rgba(124, 92, 201, 0.85) 100%) !important;
}

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

.hero h1 {
  font-size: 56px !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

.hero-text {
  font-size: 20px !important;
  color: var(--white) !important;
  margin-bottom: 2.5rem !important;
  line-height: 1.7 !important;
  max-width: 750px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px !important;
    padding: 3rem 1.5rem !important;
  }

  .hero h1 {
    font-size: 36px !important;
  }

  .hero-text {
    font-size: 18px !important;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
section {
  padding: 5rem 1.5rem;
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

/* Typography */
h1 {
  font-size: 48px !important;
  font-weight: 800 !important;
  color: var(--text-dark) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.2 !important;
}

h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin-bottom: 2rem !important;
  margin-top: 3rem !important;
  line-height: 1.3 !important;
}

h3 {
  font-size: 28px !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  margin-bottom: 1.5rem !important;
  margin-top: 2.5rem !important;
  line-height: 1.4 !important;
}

p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

strong {
  color: var(--primary);
  font-weight: 700;
}

/* Lists */
ul, ol {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none !important;
}

ul li, ol li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  list-style: none !important;
}

ul li::before {
  content: '✓' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  width: 28px !important;
  height: 28px !important;
  background: rgba(16, 185, 129, 0.1) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

ol {
  counter-reset: item;
}

ol li::before {
  content: counter(item) !important;
  counter-increment: item !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  width: 32px !important;
  height: 32px !important;
  background: rgba(16, 185, 129, 0.1) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Footer Lists Reset */
footer ul,
footer ol {
  list-style: none !important;
}

footer ul li,
footer ol li {
  padding-left: 0 !important;
  margin-bottom: 0.75rem !important;
}

footer ul li::before,
footer ol li::before,
footer ul li::after,
footer ol li::after {
  display: none !important;
  content: none !important;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}

.card h3 {
  margin-top: 0 !important;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

picture {
  display: block;
  margin: 2rem 0;
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 600px;
}

thead {
  background: linear-gradient(135deg, var(--primary) 0%, #7c5cc9 100%);
}

thead th {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  padding: 1.25rem;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

tbody tr:hover {
  background-color: rgba(147, 112, 219, 0.05);
}

tbody td {
  padding: 1.25rem;
  font-size: 17px;
  color: var(--text-dark);
}

/* Conversion Buttons */
.cta-button {
  display: inline-block !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 1rem 3rem !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  text-align: center !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.cta-button:hover {
  background: #0d9668 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

.cta-button:active {
  transform: translateY(0) !important;
}

/* Material Icons */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  color: var(--accent);
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white) !important;
  font-size: 22px !important;
  margin-bottom: 1.5rem !important;
  margin-top: 0 !important;
}

.footer-section ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-section ul li {
  margin-bottom: 0.75rem !important;
  padding-left: 0 !important;
}

.footer-section ul li::before,
.footer-section ul li::after {
  display: none !important;
  content: none !important;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  section {
    padding: 3rem 1.5rem;
  }

  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 32px !important;
  }

  h3 {
    font-size: 24px !important;
  }

  .card {
    padding: 1.5rem;
  }

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

  .cta-button {
    width: 100%;
    display: block !important;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 22px !important;
  }

  p, ul li, ol li {
    font-size: 17px;
  }
}
