/* MouseWork.nl - Static Site Stylesheet */
/* Colors: Primary #23aae1, Dark Slate #384a56, Headings #535b7c, Body #959baf */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');

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

:root {
  --primary: #23aae1;
  --primary-dark: #1a8fc0;
  --dark-slate: #384a56;
  --heading: #535b7c;
  --body-text: #959baf;
  --footer-bg: #2d3940;
  --light-bg: #f8fbfe;
  --white: #ffffff;
  --border: rgba(51,51,51,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', 'Source Sans Pro', sans-serif;
  color: #666;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 1px 5px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img { height: 45px; width: auto; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a, .main-nav .nav-parent > span {
  color: var(--dark-slate);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 15px;
  transition: color 0.3s;
  cursor: pointer;
  display: inline-block;
}
.main-nav a:hover, .main-nav .nav-parent:hover > span { color: var(--primary); }

.nav-parent { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 4px;
  min-width: 200px;
  z-index: 100;
}
.nav-parent:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  text-transform: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}
.nav-dropdown a:hover { background: #f8f9fa; }

.nav-cta {
  background: linear-gradient(243deg, var(--primary) 0%, var(--primary) 100%);
  color: var(--white) !important;
  border-radius: 26px;
  padding: 10px 24px !important;
  margin-left: 10px;
}
.nav-cta:hover { opacity: 0.9; color: var(--white) !important; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark-slate);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, var(--primary) 0%, var(--dark-slate) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-blend-mode: overlay;
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  color: var(--white);
  font-size: 96px;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1;
}
.hero .hero-subtitle {
  color: var(--white);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}
.hero .hero-subtitle strong { color: var(--dark-slate); font-weight: 800; }
.hero-video {
  max-width: 700px;
  margin: 40px auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 30px 30px 0px rgba(34,56,101,0.1);
}
.hero-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; }
.section-light { background: var(--light-bg); }
.section-white { background: var(--white); }

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-text h2 { color: var(--heading); }
.feature-text p { color: var(--body-text); font-size: 16px; }
.feature-image { flex: 1; }
.feature-image img {
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0px 10px 30px 0px rgba(34,56,101,0.09);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 26px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ===== USPs ===== */
.usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.usp-item h3 { color: var(--heading); margin-top: 15px; }
.usp-item p { color: var(--body-text); font-size: 14px; }
.usp-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-icon svg { width: 36px; height: 36px; fill: var(--white); stroke: var(--white); }

/* ===== QUOTE ===== */
.quote-section {
  background: var(--light-bg);
  padding: 80px 20px;
  text-align: center;
}
.quote-section h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--heading);
  line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: center;
}
.testimonial-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f9;
}
.testimonial-icon svg { width: 30px; height: 30px; }
.testimonial-card p { color: #666; font-size: 14px; font-style: italic; }
.testimonial-author { color: var(--heading); font-weight: 700; font-size: 13px; margin-top: 12px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--light-bg);
  padding: 50px 20px;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-inner h2 { margin: 0; color: var(--heading); }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: var(--white); padding: 50px 20px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.footer-col h4 { color: var(--primary); font-size: 16px; margin-bottom: 15px; }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.7); font-size: 14px; display: block; line-height: 2; }
.footer-col a:hover { color: var(--primary); }
.footer-logo { max-width: 200px; opacity: 0.9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }
.social-links { margin: 15px 0; display: flex; justify-content: center; gap: 12px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.social-links a:hover { background: var(--primary); }
.social-links svg { width: 16px; height: 16px; fill: var(--white); }
.payment-logos { max-width: 300px; margin: 15px auto; opacity: 0.6; }

/* ===== PAGE LAYOUTS ===== */
.page-header {
  background: linear-gradient(180deg, var(--primary) 0%, var(--dark-slate) 100%);
  padding: 50px 20px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin: 0; font-size: 2.2rem; }

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Blog layout with sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}
.blog-main h1 { font-size: 2rem; }
.blog-main h2 { font-size: 1.5rem; margin-top: 2rem; }
.blog-main h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.blog-main img {
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.blog-main ol, .blog-main ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-main li { margin-bottom: 0.5rem; }

/* Sidebar */
.sidebar { font-size: 14px; }
.sidebar-widget { margin-bottom: 30px; padding: 20px; background: #f8f9fa; border-radius: 8px; }
.sidebar-widget h4 { font-size: 15px; margin-bottom: 12px; color: var(--heading); }
.sidebar-widget ul { list-style: none; }
.sidebar-widget li { padding: 4px 0; border-bottom: 1px solid #eee; }
.sidebar-widget li:last-child { border-bottom: none; }
.sidebar-widget a { color: #666; font-size: 13px; }
.sidebar-widget a:hover { color: var(--primary); }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.faq-card {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.faq-card h3 { font-size: 1rem; color: var(--heading); margin-bottom: 10px; }
.faq-card p { color: #666; font-size: 14px; margin: 0; }

/* ===== INFO CARDS (blog/SEO pages) ===== */
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.info-card {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 25px;
  border-left: 4px solid var(--primary);
}
.info-card h3 { font-size: 1rem; color: var(--heading); margin-bottom: 8px; }
.info-card p { color: #666; font-size: 14px; margin: 0; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; margin: 30px 0; }
.form-row { display: flex; gap: 20px; margin-bottom: 15px; }
.form-group { flex: 1; }
.form-group label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 5px; color: var(--heading); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== PRODUCT PAGE ===== */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}
.product-gallery img {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.product-info .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading);
  margin: 15px 0;
}
.price-old { text-decoration: line-through; color: #999; font-size: 1.1rem; margin-right: 10px; }
.product-badge {
  display: inline-block;
  background: #e74c3c;
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-usps { margin: 20px 0; }
.product-usps li {
  list-style: none;
  padding: 6px 0;
  font-size: 14px;
  color: #333;
}
.product-usps li::before { content: '✓ '; color: #27ae60; font-weight: 700; }

/* ===== SHOP GRID ===== */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.shop-product {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.shop-product:hover { transform: translateY(-3px); }
.shop-product img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.shop-product-info { padding: 20px; text-align: center; }
.shop-product-info h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 15px 20px;
  font-size: 13px;
  color: #999;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; }

/* ===== LEGAL PAGES ===== */
.legal-content h2 { font-size: 1.3rem; margin-top: 2rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.4rem; }

/* ===== INTRO TEXT ===== */
.intro-text {
  font-size: 17px;
  color: var(--body-text);
  margin-bottom: 30px;
  line-height: 1.8;
}

/* ===== FAQ CONTACT CTA ===== */
.faq-contact {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 10px;
}
.faq-contact p {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 15px;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.contact-form-section h2 {
  margin-bottom: 20px;
}

/* ===== CAPTCHA ===== */
.captcha {
  max-width: 200px;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 44px; }
  .hero .hero-subtitle { font-size: 20px; }
  .hero { padding: 50px 20px; }

  .feature-row, .feature-row.reverse { flex-direction: column; gap: 30px; }
  .usps { grid-template-columns: 1fr; gap: 30px; }
  .testimonials { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; gap: 20px; text-align: center; }

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

  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { order: 2; }

  .product-layout { grid-template-columns: 1fr; }

  .form-row { flex-direction: column; gap: 15px; }

  /* Mobile navigation */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
  }
  .main-nav.active { display: flex; }
  .main-nav a, .main-nav .nav-parent > span {
    padding: 12px 20px;
    display: block;
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }
  .nav-parent:hover .nav-dropdown { display: block; }
  .nav-cta { margin: 10px 20px; text-align: center; }
  .menu-toggle { display: block; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero .hero-subtitle { font-size: 18px; }
}
