/* 
* deepnudetelegramNL.site Stylesheet
* Thema: Paars-Blauw Dutch Telegram Style
* Geoptimaliseerd voor Nederlandse taal en responsive design
*/

:root {
  --primary: #8E24AA;       /* Paars */
  --primary-dark: #5C007A;
  --primary-light: #C158DC;
  --secondary: #1565C0;     /* Blauw */
  --secondary-dark: #003C8F;
  --secondary-light: #5E92F3;
  --telegram: #0088cc;      /* Telegram blauw */
  --telegram-dark: #006699;
  --accent: #FFAB00;        /* Accent geel */
  --text-dark: #212121;
  --text-light: #757575;
  --text-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-dark: #1A1A2E;
  --bg-gradient: linear-gradient(120deg, var(--primary), var(--secondary));
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--bg-white);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.7rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  position: relative;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

p {
  margin-bottom: 1.5rem;
}

.text-highlight {
  color: var(--primary);
  font-weight: 700;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 70px;
  height: 4px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  border: 2px solid transparent;
}

.btn-icon {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-telegram {
  background: var(--telegram);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-telegram:hover {
  background: var(--telegram-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 35px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 25px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
  opacity: 1;
  left: 0;
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

.menu-toggle.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(170deg, var(--bg-light) 60%, #f0e4f7 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%238E24AA' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20.83l2.83-2.83 1.41 1.41L1.41 22H0v-1.17zM0 3.07l2.83-2.83 1.41 1.41L1.41 4.24H0V3.07zm28.24 35.17l1.41-1.41 2.83 2.83V40h-1.41l-2.83-2.83zm-20 0l1.41-1.41 2.83 2.83V40h-1.41l-2.83-2.83zM20 31.66l1.41-1.41 2.83 2.83v1.41h-1.41l-2.83-2.83zm8.24-20l1.41-1.41 2.83 2.83v1.41h-1.41l-2.83-2.83zm-20 0l1.41-1.41 2.83 2.83v1.41h-1.41l-2.83-2.83zM20 13.9l1.41-1.41 2.83 2.83v1.41h-1.41l-2.83-2.83zm0-8.24l1.41-1.41 2.83 2.83V8.5h-1.41l-2.83-2.83zm8.24 36.14l1.41-1.41 2.83 2.83V40h-1.41l-2.83-2.83zm-20 0l1.41-1.41 2.83 2.83V40h-1.41l-2.83-2.83zM40 15.66V14.24l-2.83 2.83-1.41-1.41 2.83-2.83h-1.41v-1.41h1.41V8.5l-2.83 2.83-1.41-1.41L37.17 7H40V5.59h-1.41l-2.83 2.83-1.41-1.41L37.17 4H40V2.59h-1.41l-2.83 2.83-1.41-1.41L37.17 1.41 38.59 0H40v1.41l-2.83 2.83 1.41 1.41L40 4.24v1.41l-2.83 2.83 1.41 1.41L40 8.66V15.66zM20 35.66V34.24l-2.83 2.83-1.41-1.41 2.83-2.83h-1.41v-1.41h1.41v-2.83l-2.83 2.83-1.41-1.41L17.17 27H20v-1.41h-1.41l-2.83 2.83-1.41-1.41L17.17 24H20v-1.41h-1.41l-2.83 2.83-1.41-1.41L17.17 21.41 18.59 20H20v1.41l-2.83 2.83 1.41 1.41L20 24.24v1.41l-2.83 2.83 1.41 1.41L20 28.66V35.66zM0 16.24l2.83 2.83 1.41-1.41L1.41 14.83 2.83 13.41 0 16.24zm0-8l2.83 2.83 1.41-1.41L1.41 6.83 2.83 5.41 0 8.24zm0-8l2.83 2.83 1.41-1.41L1.41-1.17 2.83-2.59 0 .24zM17.17 40l1.41-1.41-2.83-2.83-1.41 1.41 2.83 2.83zm20 0l1.41-1.41-2.83-2.83-1.41 1.41 2.83 2.83zM8.24 31.66l1.41-1.41-2.83-2.83-1.41 1.41 2.83 2.83zm20 0l1.41-1.41-2.83-2.83-1.41 1.41 2.83 2.83zM8.24 13.9l1.41-1.41-2.83-2.83-1.41 1.41 2.83 2.83zm20 0l1.41-1.41-2.83-2.83-1.41 1.41 2.83 2.83zM8.24 5.66l1.41-1.41L6.83 1.41 5.41 2.83l2.83 2.83zm20 0l1.41-1.41-2.83-2.83-1.41 1.41 2.83 2.83z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
  display: inline-block;
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 10px;
  background-color: var(--primary-light);
  opacity: 0.3;
  z-index: -1;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  max-width: 450px;
  background: radial-gradient(circle at center, rgba(142, 36, 170, 0.1), rgba(255, 255, 255, 0));
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image svg {
  width: 100%;
  max-height: 300px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.feature-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.feature-description {
  margin-bottom: 25px;
  color: var(--text-light);
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(142, 36, 170, 0.05), transparent 70%);
  z-index: 1;
}

.steps-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ddd;
  z-index: -1;
}

.step {
  flex-basis: 33.333%;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  border: 5px solid var(--bg-white);
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--bg-white);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  position: relative;
  padding: 20px 10px;
  margin-bottom: 25px;
  font-style: italic;
  color: var(--text-light);
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 0;
  position: absolute;
}

.testimonial-content::before {
  top: 0;
  left: -10px;
}

.testimonial-content::after {
  bottom: -10px;
  right: -10px;
  transform: rotate(180deg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.author-title {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.faq-item {
  margin-bottom: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  transition: var(--transition);
  transform: rotate(0deg);
}

.faq-arrow svg {
  fill: var(--primary);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 25px 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--bg-gradient);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: var(--text-white);
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

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

.cta-btn {
  background: var(--text-white);
  color: var(--primary);
  border-color: var(--text-white);
}

.cta-btn:hover {
  background: transparent;
  color: var(--text-white);
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-shape-1 {
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
}

.cta-shape-2 {
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
}

.footer-logo-text {
  color: var(--text-white);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-about p {
  line-height: 1.8;
}

.footer-heading {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .feature {
    flex-direction: column !important;
    text-align: center;
  }
  
  .feature-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .steps {
    flex-direction: column;
    gap: 50px;
  }
  
  .steps::before {
    display: none;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 130px 0 80px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}
