/* ── CITY CAT HOTEL — STATIC SITE ───────────────────────────────────────────
   Preserving the original look & feel: Cooper Black display, Quicksand body,
   warm off-white backgrounds, charcoal text, navy accents.
   ─────────────────────────────────────────────────────────────────────────── */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────────────────── */
:root {
  --color-bg:        #fdfaf6;
  --color-bg-alt:    #f5f0e8;
  --color-bg-dark:   #1e2330;
  --color-text:      #1e2330;
  --color-text-mid:  #4a4a5a;
  --color-text-light:#7a7a8a;
  --color-accent:    #c8773a;
  --color-accent-dk: #a35e27;
  --color-white:     #ffffff;
  --color-border:    #e8e0d4;

  --font-display: 'Cooper Black', 'Cooper Std Black', serif;
  --font-body:    'Quicksand', 'Trebuchet MS', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(30,35,48,0.08);
  --shadow-md:  0 6px 24px rgba(30,35,48,0.12);
  --shadow-lg:  0 16px 48px rgba(30,35,48,0.16);

  --transition: 0.25s ease;

  --max-width: 1200px;
  --gutter:    clamp(1rem, 5vw, 2rem);
}

/* ── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p  { color: var(--color-text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.two-col.reverse .col-text { order: 2; }
.two-col.reverse .col-image { order: 1; }

.col-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
  transform: translateY(-2px);
}

.link-arrow {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: color var(--transition);
}
.link-arrow:hover { color: var(--color-accent-dk); }

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.logo img { height: 48px; width: auto; }

.main-nav { flex: 1; }

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-mid);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-text);
  background: var(--color-bg-alt);
}

.header-phone {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent);
  white-space: nowrap;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--color-accent-dk); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .btn-outline {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.hero .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-text);
}

/* ── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--color-bg-dark);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.trust-icon { font-size: 1.3rem; }

/* ── ABOUT INTRO ────────────────────────────────────────────────────────── */
.about-intro { background: var(--color-bg); }

.about-intro .col-text h2 { margin-bottom: 1rem; }
.about-intro .col-text p  { margin-bottom: 1rem; }
.about-intro .col-text .btn { margin-top: 0.5rem; }

/* ── SERVICES ───────────────────────────────────────────────────────────── */
.services-section { background: var(--color-bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.section-cta { text-align: center; }

/* ── REVIEWS ────────────────────────────────────────────────────────────── */
.reviews-section { background: var(--color-bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}

.review-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--color-text-mid);
}

.review-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.review-source {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.2rem;
}

/* ── ZAUVIJEK DOM ────────────────────────────────────────────────────────── */
.zauvijek-section { background: var(--color-bg-alt); }
.zauvijek-section .col-text h2 { margin-bottom: 1rem; }
.zauvijek-section .col-text p  { margin-bottom: 0.75rem; }

.partners-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem;
}

.partner-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.partner-logos img {
  height: 36px;
  width: auto;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.partner-logos a:hover img { opacity: 1; }

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.contact-section { background: var(--color-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item span {
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--color-accent); }
.contact-item em { font-weight: 400; color: var(--color-text-light); }

.contact-map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe { display: block; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-bg-dark);
  padding: 3rem 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 0.75rem; }
.footer-brand p   { font-size: 0.9rem; }

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.footer-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.footer-contact a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--color-white); }

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
}

.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content .container > * {
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow      { animation-delay: 0.1s; }
.hero h1           { animation-delay: 0.2s; }
.hero-sub          { animation-delay: 0.3s; }
.hero-lead         { animation-delay: 0.4s; }
.hero-cta          { animation-delay: 0.5s; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col          { grid-template-columns: 1fr; }
  .two-col.reverse .col-text  { order: 1; }
  .two-col.reverse .col-image { order: 2; }
  .contact-grid     { grid-template-columns: 1fr; }
  .contact-map      { height: 300px; }
  .footer-inner     { grid-template-columns: 1fr; text-align: center; }
  .footer-contact   { align-items: center; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem var(--gutter);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav a { display: block; padding: 0.6rem 0.85rem; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .trust-grid { gap: 1rem; }
  .trust-item { font-size: 0.82rem; }
}
