/* King Production - Modern Static Site CSS */
/* Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-light: #ff6b6b;
  --text: #333;
  --text-light: #666;
  --bg: #fff;
  --bg-alt: #f8f9fa;
  --border: #e0e0e0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

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

a:hover {
  color: var(--accent-light);
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li { margin-bottom: 0.5rem; }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* Header */
header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.logo:hover {
  color: var(--accent-light);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

nav a {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--accent-light);
  border-bottom-color: var(--accent-light);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.65) 100%),
              url('../../images/daniel-schludi-l8cvrt3Hpec-unsplash.webp') center/cover no-repeat;
  color: #fff;
  padding: 8rem 0;
  text-align: center;
  position: relative;
}

.hero-home {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.55) 0%, rgba(22, 33, 62, 0.6) 100%),
              url('../../images/matt-botsford-OKLqGsCT8qs-unsplash.webp') center/cover no-repeat;
  padding: 12rem 0;
}

.hero-demos {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.65) 100%),
              url('../../images/thomas-le-bPD4U-mqC44-unsplash.webp') center/cover no-repeat;
  padding: 10rem 0;
}

.hero-services {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.65) 100%),
              url('../../images/daniel-schludi-l8cvrt3Hpec-unsplash.webp') center/cover no-repeat;
  padding: 10rem 0;
}

.hero-about {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.65) 100%),
              url('../../images/michal-czyz-KPj62w4uEkM-unsplash.webp') center/cover no-repeat;
  padding: 10rem 0;
}

.hero-contact {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.65) 100%),
              url('../../images/contact.webp') center/cover no-repeat;
  padding: 10rem 0;
}

.hero-clients {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.65) 100%),
              url('../../images/paul-esch-laurent-YU-OA2TvQRQ-unsplash.webp') center/cover no-repeat;
  padding: 10rem 0;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.hero-cta:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.content-main {
  min-width: 0;
}

.sidebar {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 8px;
  height: fit-content;
}

.sidebar h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Cards */
.card {
  background: var(--bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-3px);
}

.card h3 {
  color: var(--accent);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.service-card-content {
  padding: 1.5rem;
  text-align: center;
}

.service-card-content h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.service-card-content p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Featured image section */
.featured-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 2rem 0;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Audio Player */
.demo-card {
  background: var(--bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.demo-card h3 {
  margin-bottom: 0.5rem;
}

.demo-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

audio {
  width: 100%;
  margin-top: 0.5rem;
}

.download-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* Testimonial */
.testimonial {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.testimonial-author {
  font-style: normal;
  font-weight: 600;
  margin-top: 1rem;
  color: var(--text-light);
}

/* Client List */
.client-category {
  margin-bottom: 2.5rem;
}

.client-category h3 {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn:hover {
  background: var(--accent-light);
  color: #fff;
}

/* Contact Info */
.contact-info {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

footer p {
  margin: 0;
  opacity: 0.8;
}

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

/* Responsive */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero h1 { font-size: 2.25rem; }
  .hero { padding: 4rem 0; }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
  }

  nav ul.active {
    display: flex;
  }

  nav li {
    margin: 0;
  }

  nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .menu-toggle {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
}
