:root{
  --bg:#05070a;
  --bg-soft:#0d1015;
  --accent:#e5a04f;
  --accent-soft:rgba(229,160,79,0.14);
  --text:#f7f7f7;
  --muted:#9aa2b3;
  --line:#262b35;
  --shadow-soft:0 18px 40px rgba(0,0,0,0.65);
  --radius-lg:22px;
  --radius-md:14px;
  --radius-pill:999px;
}

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

html,body{
  margin:0;
  padding:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text",system-ui,sans-serif;
  background:radial-gradient(circle at top,#111522 0,#05070a 55%);
  color:var(--text);
}

body{
  min-height:100vh;
}

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

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:100%;
  max-width:1080px;
  margin:0 auto;
  padding:0 18px;
}

/* Nav */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,7,10,0.96);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--line);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
}

.brand{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  letter-spacing:0.03em;
}

.brand-badge{
  width:180px;
  height:55px;
  background:url('../img/discover-krakow-logo-full.png') left center / auto 100% no-repeat;
  display:block;
  margin-right:12px;
}

.brand-badge::before{
  content:"";
}

.brand span.muted{
  font-weight:400;
  font-size:12px;
  color:var(--muted);
}

/* Nav links */
.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}

.nav-links a{
  padding:6px 10px;
  border-radius:999px;
  transition:background .18s ease,color .18s ease,transform .12s ease;
  color:var(--muted);
}

.nav-links a:hover,
.nav-links a.active{
  background:var(--accent-soft);
  color:var(--text);
  transform:translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle{
  display:none;
  border:none;
  background:none;
  color:var(--text);
  font-size:24px;           /* larger burger icon */
  padding:6px 10px;         /* bigger touch target */
  cursor:pointer;
}

/* Mobile nav */
@media(max-width:720px){
  .nav-links{
    display:none;
  }

  /* visible when JS adds .nav-open */
  .nav-links.nav-open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:64px;
    left:0;
    right:0;
    background:rgba(5,7,10,0.98);
    padding:14px 18px 16px;
    gap:12px;
    border-bottom:1px solid var(--line);
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
}

/* Hero */
.hero{
  padding:42px 0 32px;
}

.hero-inner{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);
  gap:28px;
  align-items:center;
}

@media(max-width:880px){
  .hero-inner{
    grid-template-columns:minmax(0,1fr);
  }
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--accent-soft);
  background:rgba(7,9,12,0.8);
  color:var(--muted);
  font-size:11px;
  letter-spacing:0.09em;
  text-transform:uppercase;
}

.hero-kicker span.dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:var(--accent);
}

.hero h1{
  font-size:36px;
  line-height:1.06;
  margin:14px 0 12px;
}

.hero h1 span.accent{
  color:var(--accent);
}

.hero-sub{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  max-width:540px;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  padding:10px 18px;
  border-radius:var(--radius-pill);
  border:1px solid transparent;
  cursor:pointer;
  background:transparent;
  color:var(--text);
  transition:background .18s ease,color .18s ease,box-shadow .18s ease,transform .12s ease,border-color .18s ease;
}

.btn-primary{
  background:linear-gradient(135deg,#e6ad5b,#e0843a);
  color:#1b1309;
  font-weight:600;
  box-shadow:var(--shadow-soft);
}
.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 26px 55px rgba(0,0,0,0.8);
}

.btn-ghost{
  border-color:var(--line);
  background:rgba(10,12,16,0.85);
  color:var(--muted);
}
.btn-ghost:hover{
  border-color:var(--accent-soft);
  background:rgba(15,18,24,0.95);
  color:var(--text);
}

.hero-meta{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:11px;
  color:var(--muted);
}
.hero-meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.pill{
  padding:4px 10px;
  border-radius:999px;
  background:rgba(10,13,18,0.9);
  border:1px solid var(--line);
}

/* Hero image card */
.hero-visual{
  border-radius:var(--radius-lg);
  background:radial-gradient(circle at top,#151927 0,#07090e 55%);
  border:1px solid rgba(255,255,255,0.02);
  box-shadow:var(--shadow-soft);
  padding:14px;
}
.hero-visual img{
  border-radius:18px;
  opacity:0.92;
}
.hero-visual-caption{
  margin-top:8px;
  font-size:11px;
  color:var(--muted);
}

/* Sections */
.section{
  padding:24px 0 16px;
}
.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:14px;
}
.section-title{
  font-size:20px;
  margin:0 0 4px;
}
.section-sub{
  margin:0;
  font-size:13px;
  color:var(--muted);
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:3px 9px;
  border-radius:999px;
  background:rgba(10,13,18,0.9);
  border:1px solid var(--line);
  font-size:11px;
  color:var(--muted);
}

/* Card grids */
.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
@media(max-width:920px){
  .cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:640px){
  .cards{
    grid-template-columns:minmax(0,1fr);
  }
}

.card{
  border-radius:var(--radius-md);
  background:rgba(8,10,15,0.96);
  border:1px solid rgba(255,255,255,0.03);
  padding:14px 14px 12px;
  box-shadow:0 14px 28px rgba(0,0,0,0.7);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.card h3{
  margin:0;
  font-size:15px;
}
.card p{
  margin:0;
  font-size:12px;
  color:var(--muted);
}
.card-meta{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:11px;
  color:var(--muted);
}

/* Image cards for tours/history */
.card-image{
  border-radius:12px;
  overflow:hidden;
  margin:-4px -4px 8px;
  border:1px solid rgba(255,255,255,0.04);
}
.card-image img{
  width:100%;
  height:150px;
  object-fit:cover;
}

.card-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:8px;
}
.card-actions .btn{
  padding:7px 12px;
  font-size:12px;
}

/* Layout helpers */
.page{
  padding:20px 0 40px;
}
.lead{
  font-size:14px;
  color:var(--muted);
  max-width:680px;
}

/* Detail pages */
.detail-layout{
  display:grid;
  grid-template-columns:minmax(0,1.6fr) minmax(0,1fr);
  gap:24px;
}
@media(max-width:860px){
  .detail-layout{
    grid-template-columns:minmax(0,1fr);
  }
}
.detail-main h1{
  font-size:24px;
  margin:0 0 6px;
}
.detail-main h2{
  font-size:16px;
  margin:14px 0 6px;
}
.detail-main p{
  font-size:13px;
  color:var(--muted);
  margin:0 0 8px;
}
.detail-image{
  border-radius:18px;
  overflow:hidden;
  margin:8px 0 12px;
  border:1px solid rgba(255,255,255,0.04);
}
.detail-image img{
  width:100%;
  height:auto;
  display:block;
}
.detail-aside{
  border-radius:var(--radius-md);
  background:rgba(8,10,15,0.98);
  border:1px solid rgba(255,255,255,0.03);
  padding:14px 14px 12px;
  box-shadow:var(--shadow-soft);
}
.detail-aside h3{
  font-size:14px;
  margin:0 0 6px;
}
.detail-aside ul{
  margin:0 0 8px 18px;
  padding:0;
  font-size:12px;
  color:var(--muted);
}
.detail-aside li{
  margin-bottom:3px;
}

/* History grid layout */
.history-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
@media(max-width:920px){
  .history-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:640px){
  .history-grid{
    grid-template-columns:minmax(0,1fr);
  }
}

/* Contact form */
.form-card{
  border-radius:var(--radius-lg);
  background:rgba(8,10,15,0.98);
  border:1px solid rgba(255,255,255,0.03);
  padding:18px 18px 16px;
  box-shadow:var(--shadow-soft);
  max-width:760px;
}
.form-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.form-group{
  flex:1 1 220px;
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-bottom:10px;
}
label{
  font-size:12px;
  color:var(--muted);
}
input,select,textarea{
  background:#05070a;
  border-radius:10px;
  border:1px solid var(--line);
  padding:8px 10px;
  color:var(--text);
  font-size:14px;
  outline:none;
  font-family:inherit;
}
input:focus,
select:focus,
textarea:focus{
  border-color:var(--accent);
}
textarea{
  min-height:120px;
  resize:vertical;
}
.helper{
  font-size:11px;
  color:var(--muted);
}
.check-row{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:6px 0 10px;
}
.check-row input[type="checkbox"]{
  width:16px;
  height:16px;
  margin-top:2px;
}
.check-row label{
  font-size:12px;
}
.form-footer{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:10px;
}
.form-note{
  font-size:11px;
  color:var(--muted);
}

/* Footer */
footer{
  border-top:1px solid var(--line);
  padding:14px 0 18px;
  margin-top:10px;
  font-size:11px;
  color:var(--muted);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
@media(max-width:600px){
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Utility */
.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
}
.chip{
  font-size:11px;
  padding:3px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(10,13,18,0.9);
  color:var(--muted);
}
.small{
  font-size:12px;
}
strong{
  font-weight:600;
}


/* Hide plain text title next to logo; keep tagline */
.brand > span:nth-child(2){
  display:none;
}

/* Mobile logo sizing */
@media (max-width: 720px){
  .brand-badge{
    width:160px;
    height:48px;
    background-size:contain; /* never crops */
    background-position:left center;
  }
}



/* Currency switcher */
.currency-switcher{
  display:flex;
  align-items:center;
  margin-left:12px;
}

.currency-switcher select{
  background:#05070a;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--text);
  font-size:12px;
  padding:3px 8px;
  border-radius:999px;
}

/* Slightly smaller on very small screens, but still visible */
@media (max-width: 720px){
  .currency-switcher select{
    font-size:11px;
    padding:3px 6px;
  }
}
/* WhatsApp link under contact form */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #25D366;
  text-decoration: none;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

/* WhatsApp PNG icon */
.wa-logo {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: inline-block;
}


