/* ================================================================
   Gabriela Paclíková – hlavní stylesheet
   ================================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --text: #e8e0d0;
  --text-muted: #a09880;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: padding 0.3s, background 0.3s;
}

nav.scrolled {
  padding: 12px 48px;
  background: rgba(17,17,17,0.97);
  border-bottom-color: rgba(201,168,76,0.25);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-paw {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.nav-logo:hover .nav-paw {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.7rem; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 60% 40%, #2a2010 0%, #111 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,0.04) 60px);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
  max-width: 780px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 36px auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-desc {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero-cta {
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-free {
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards;
}

.hero-free-badge {
  cursor: pointer;
  display: inline-block;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.1em;
  padding: 18px 40px;
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
  transition: background 0.3s;
}

.hero-free-badge strong {
  font-size: 1.4rem;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-left: 14px;
}

.btn-outline:hover { background: rgba(201,168,76,0.1); }

@media (max-width: 700px) {
  .btn-outline { margin-left: 0; margin-top: 14px; }
}

/* ── LOCATION STRIP ── */
.location-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 28px 24px;
  text-align: center;
}

.location-strip p {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.location-strip span { color: var(--gold); font-weight: 700; }

/* ── SECTIONS ── */
section {
  padding: 100px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--text);
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--dark2);
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}

.service-card:hover {
  border-color: var(--gold);
  background: var(--dark3);
}

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(201,168,76,0.15);
  position: absolute;
  top: 20px;
  right: 28px;
  line-height: 1;
  font-weight: 700;
}

.service-icon { font-size: 1.8rem; margin-bottom: 20px; }

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── ABOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 700px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.about-visual { position: relative; }

.about-box {
  background: var(--dark2);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  padding: 0;
}

.about-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.highlight { color: var(--gold-light); font-style: italic; }

.about-qualification {
  font-size: 0.88rem;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-qualification .qual-label {
  color: var(--gold-light);
  font-style: italic;
}

.about-qualification .qual-university {
  font-size: 0.8rem;
  display: block;
}

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 700px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-free-badge {
  font-size: 0.95rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 18px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-detail a {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-detail a:hover { color: var(--gold); }

.contact-detail .icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  background: var(--dark2) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  color: var(--text) !important;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.contact-form textarea { min-height: 120px; }

.wpcf7-form .wpcf7-submit {
  background: var(--gold) !important;
  color: #111 !important;
  font-family: 'Source Sans 3', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 14px 36px !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.wpcf7-form .wpcf7-submit:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 36px 24px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

footer strong { color: var(--gold); }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 52px 48px;
  max-width: 480px;
  width: 90%;
  position: relative;
  animation: fadeUp 0.35s ease;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--gold); }

.modal-icon { font-size: 2.5rem; margin-bottom: 12px; }

.modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal h2 em { color: var(--gold-light); }

.modal > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.modal-form label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.modal-form input {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}

.modal-form input:focus { border-color: var(--gold); }
.modal-form input::placeholder { color: var(--text-muted); }

.modal-submit {
  margin-top: 8px;
  width: 100%;
  background: var(--gold);
  color: #111;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.modal-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.modal-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

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

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(32px);
}

.js-loaded .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── WP ADMIN BAR FIX ── */
.admin-bar nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}
