/*
Theme Name: PPC Audit Landing
Description: Moderní WordPress šablona pro PPC audit
Version: 1.0
Author: Vojtěch Vais
*/

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Reset a základní styly */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

/* Utility třídy */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.hidden {
  display: none;
}

/* Animace */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scale-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3f4f6;
  z-index: 1000;
  padding: 16px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #00d37f;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #00d37f;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 211, 127, 0.2);
}

.btn-primary:hover {
  background: #00b86b;
  box-shadow: 0 4px 12px rgba(0, 211, 127, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1f2937;
  border: 2px solid #e5e7eb;
}

.btn-outline:hover {
  background: #f9fafb;
  border-color: #00d37f;
}

.btn-large {
  padding: 16px 48px;
  font-size: 18px;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: #6b7280;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.mobile-nav .nav-link {
  text-align: left;
}

/* Hero sekce */
.hero {
  padding: 160px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero .highlight {
  color: #00d37f;
}

.hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: #6b7280;
  max-width: 768px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* Sekce */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

/* Page */
.page {
  margin: 150px 0;
}

.page h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-center {
  align-items: center;
}

/* Karty */
.card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 211, 127, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #00d37f;
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

.card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Service sekce */
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-text h2 {
  margin-bottom: 32px;
}

.service-text p {
  margin-bottom: 32px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #00d37f;
  font-weight: 600;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 211, 127, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d37f;
  flex-shrink: 0;
}

.service-item-content h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.service-item-content p {
  color: #6b7280;
  font-size: 16px;
}

/* Chyby sekce */
.mistake-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.mistake-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mistake-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.mistake-text {
  font-weight: 500;
  color: #374151;
}

/* Formulář */
.form-section {
  padding: 80px 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.form-card a {
  color:#00b86b;
  text-decoration: none;
  font-weight: 700;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00d37f;
}

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

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 48px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 16px;
}

.footer-section h3 {
  font-size: 24px;
  font-weight: 700;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #00d37f;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  text-align: center;
  color: #9ca3af;
}

/* Responzivní design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav.active {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 24px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Ikony (jednoduché CSS ikony) */
.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.icon-check::before {
  content: "✓";
  color: #00d37f;
  font-weight: bold;
  font-size: 20px;
}

.icon-trending::before {
  content: "📈";
  font-size: 20px;
}

.icon-target::before {
  content: "🎯";
  font-size: 20px;
}

.icon-warning::before {
  content: "⚠️";
  font-size: 20px;
}

.icon-mail::before {
  content: "✉️";
  font-size: 16px;
}

.icon-phone::before {
  content: "📞";
  font-size: 16px;
}

.icon-menu::before {
  content: "☰";
  font-size: 20px;
}

.icon-close::before {
  content: "✕";
  font-size: 20px;
}
