/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Exacte kleuren van het BreckxIT logo */
  --logo-teal-dark: #2d4a5c; /* Donkere teal van de B en cirkel */
  --logo-teal-bright: #4fd1c7; /* Heldere teal van de lijn en accenten */
  --logo-yellow: #f6c052; /* Warm geel/oranje van "it" */
  --logo-white: #ffffff; /* Wit van achtergrond */
  --logo-gray: #f8f9fa; /* Licht grijs voor backgrounds */

  /* Afgeleide kleuren voor harmonie */
  --text-dark: #2d4a5c; /* Hoofdtekst in logo teal */
  --text-medium: #4a5568; /* Medium tekst */
  --text-light: #718096; /* Lichte tekst */
  --background-light: #f8fffe; /* Zeer licht teal tint */
  --accent-primary: #4fd1c7; /* Primaire accent kleur */
  --accent-secondary: #f6c052; /* Secundaire accent kleur */
  --success-green: #48bb78; /* Voor success states */
  --accent-orange: #f97316; /* Oranje voor CTA buttons */
  --primary-dark: #1e293b; /* Donker slate voor hoofdtekst */
  --background-main: #ffffff; /* Schoon wit */
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 10px 20px;
  box-shadow: 0 2px 20px rgba(45, 74, 92, 0.1);
  border-bottom: 1px solid var(--logo-teal-bright);
}

.logo {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(45, 74, 92, 0.1));
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--background-main);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/images/cover.jpeg") center/cover;
  opacity: 0.3;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--logo-teal-dark);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ffffff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--accent-orange);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  border: 2px solid transparent;
}

.cta-button:hover {
  background: #ea580c;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--background-light);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--logo-teal-dark);
  position: relative;
  font-weight: 700;
}

.services h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    45deg,
    var(--logo-teal-bright),
    var(--logo-yellow)
  );
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--logo-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 74, 92, 0.08);
  border: 1px solid rgba(79, 209, 199, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--logo-teal-bright),
    var(--logo-yellow)
  );
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--logo-teal-dark);
  font-weight: 600;
}

.service-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--logo-teal-dark);
  color: var(--logo-white);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      var(--logo-teal-bright) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, var(--logo-yellow) 0%, transparent 50%);
  opacity: 0.1;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(79, 209, 199, 0.2);
  border: 2px solid var(--logo-yellow);
  border-radius: 50%;
  line-height: 56px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  color: var(--logo-yellow);
}

.feature-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--logo-teal-bright);
}

.feature-item p {
  opacity: 0.9;
}

/* Contact CTA Section */
.contact-cta {
  padding: 100px 0;
  background: var(--logo-teal-dark);
  color: var(--logo-white);
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--logo-teal-bright);
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--logo-gray);
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  min-width: 150px;
}

.contact-btn.email {
  background: var(--logo-teal-bright);
  color: var(--logo-teal-dark);
  box-shadow: 0 4px 15px rgba(79, 209, 199, 0.3);
}

.contact-btn.phone {
  background: transparent;
  color: var(--logo-teal-bright);
  border: 2px solid var(--logo-teal-bright);
}

.contact-btn.phone:hover {
  background: var(--logo-teal-bright);
  color: var(--logo-teal-dark);
}

/* Footer */
.footer {
  background: var(--logo-teal-dark);
  color: var(--logo-white);
  padding: 50px 20px 20px;
  text-align: center;
  border-top: 1px solid var(--logo-teal-bright);
}

.footer .heading {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--logo-yellow);
}

.footer .content {
  font-weight: 300;
  margin-bottom: 5px;
  opacity: 0.8;
}

.footer .content.link {
  color: var(--logo-teal-bright);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .content.link:hover {
  color: var(--logo-yellow);
}

.footer .links {
  margin: 30px 0;
}

.footer .links a {
  color: var(--logo-teal-bright);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--logo-teal-bright);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.footer .links a:hover {
  background: var(--logo-teal-bright);
  color: var(--logo-teal-dark);
}

.footer .copy-text {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(79, 209, 199, 0.3);
}

/* Terms Page Styling */
.body.terms {
  padding: 120px 50px 50px;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

.body.terms h1 {
  color: var(--logo-teal-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.body.terms h3 {
  color: var(--logo-teal-bright);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.body.terms p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .services h2,
  .features h2,
  .contact-cta h2 {
    font-size: 2rem;
  }

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

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

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .body.terms {
    padding: 120px 20px 50px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .logo {
    width: 120px;
  }

  .service-card {
    padding: 30px 20px;
  }
}/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .services h2,
  .features h2,
  .contact-cta h2 {
    font-size: 2rem;
  }

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

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

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .body.terms {
    padding: 120px 20px 50px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .logo {
    width: 120px;
  }

  .service-card {
    padding: 30px 20px;
  }
}
