/* Critical CSS - Above the fold styles */
/* Deze CSS wordt inline geladen voor betere Core Web Vitals */

/* Reset en basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header critical styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 95px;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Hero section critical styles */
.lieve-tandarts-announcement {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 1.2rem 0;
  margin-top: 95px;
}

.home {
  background: linear-gradient(147deg, #f9fcff 0%, #dee4ea 74%);
  min-height: 90vh;
  padding-top: 2rem;
}

.home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.home h1 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home h2 {
  font-size: 2.2rem;
  color: #00b8b8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Utility klassen */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #00b8b8;
  color: white;
  border: 2px solid #00b8b8;
}

.btn-primary:hover {
  background: #00a0a0;
  transform: translateY(-2px);
}

/* Mobile first responsive */
@media (max-width: 768px) {
  .home h1 {
    font-size: 2.2rem;
  }
  
  .home h2 {
    font-size: 1.8rem;
  }
  
  .header {
    height: 80px;
  }
  
  .lieve-tandarts-announcement {
    margin-top: 80px;
  }
}
