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

:root {
  --bg-body: #f3f4ff;
  --bg-surface: #ffffff;
  --bg-soft: #f1f5f9;
  --border-soft: #d0e0ff;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --accent-2: #ec4899;
  --text-main: #0f172a;
  --text-muted: #64748b;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #e0f2fe, #f9fafb 42%, #eef2ff);
  color: var(--text-main);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.85));
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #f97316, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eff6ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

nav a {
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #0f172a;
}

nav a:hover {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
}

main {
  max-width: 1140px;
  margin: 0 auto 3.2rem;
  padding: 1.8rem 1.5rem 0;
}

.hero-travel {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid #dbeafe;
  background-image: url("/assets/img/hero-podroze.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 2.7rem;
  color: #ccc !important;
}

.hero-layer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2.4rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.02));
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.4fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}

.hero-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(248, 250, 252, 0.9);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-pill strong {
  color: var(--accent);
}

.hero-travel h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.hero-travel p {
  margin-bottom: 0.55rem;
  color: #ccc;
}

.hero-highlight {
  color: #0f172a;
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.9rem;
}

.hero-tags span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.3rem;
  border: 1px solid #dbeafe;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.hero-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.hero-card small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.hero-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.9rem;
}

.hero-card label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-card input,
.hero-card select,
.hero-card textarea {
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.7rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: var(--text-main);
  font: inherit;
}

.hero-card textarea {
  resize: vertical;
  min-height: 64px;
}

.hero-card button {
  grid-column: 1 / -1;
  justify-self: flex-start;
}

.section {
  margin-bottom: 2.8rem;
}

.section h1 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.section h2 {
  font-size: 1.3rem;
  margin: 0.9rem 0 0.55rem;
}

.section h3 {
  font-size: 1.02rem;
  margin: 0.8rem 0 0.4rem;
}

.section p {
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.section strong {
  color: var(--text-main);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--bg-surface);
  border-radius: 1.1rem;
  border: 1px solid var(--border-soft);
  padding: 1rem 1.1rem;
}

.card h3 {
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.9rem;
}

.card-accent {
  border-color: rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), #ffffff);
}

.badge {
  display: inline-flex;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--accent-soft);
  color: #1d4ed8;
  margin-bottom: 0.4rem;
}

ul, ol {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
}

li {
  margin-bottom: 0.25rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 1.9rem;
}

.content-layout img {
  border-radius: 1.3rem;
  border: 1px solid #dbeafe;
}

.content-layout aside {
  font-size: 0.84rem;
  color: var(--text-muted);
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

input,
textarea,
select {
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--text-main);
  font: inherit;
}

textarea {
  resize: vertical;
}

button {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #ec4899);
  color: #f9fafb;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

button:hover {
  filter: brightness(1.05);
}

footer {
  border-top: 1px solid #d1d5db;
  background: rgba(248, 250, 252, 0.95);
  padding: 1.6rem 1.5rem;
  margin-top: 2.5rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  color: #e5e7eb;
}

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

.cookie-banner button {
  border-radius: 999px;
  border: none;
  padding: 0.45rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background: #22c55e;
  color: #022c22;
  white-space: nowrap;
  font-size: 0.8rem;
  box-shadow: none;
}

.cookie-banner button:hover {
  filter: brightness(1.05);
}

@media (max-width: 900px) {
  .hero-layer {
    grid-template-columns: 1fr;
  }
  .hero-card form {
    grid-template-columns: 1fr;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  img {
    max-width: 300px;
    width: auto;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    justify-content: flex-start;
  }
  main {
    padding-inline: 1.2rem;
  }
  .hero-layer {
    padding: 2rem 1.6rem;
  }
  .cookie-banner-inner {
    align-items: flex-start;
  }
}
