/* 
 * nudeifyNL.love Stylesheet
 * Dutch-themed design with colors inspired by Dutch flag and culture
 * Dutch color palette: Red (#AE1C28), White (#FFFFFF), Blue (#21468B), Orange (#FF6600)
 */

/* Base Styles and Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px base for easy rem calculations */
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #21468B; /* Dutch blue */
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
}

h2 {
  font-size: 3.2rem;
  position: relative;
  margin-bottom: 2.5rem;
}

h2 span {
  color: #FF6600; /* Dutch orange */
}

h3 {
  font-size: 2.2rem;
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: #FF6600; /* Dutch orange */
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #d45500;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Dutch-inspired decorative elements */
.dutch-element {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.05;
  z-index: -1;
}

.top-right {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, #FF6600 20%, transparent 70%);
}

.bottom-left {
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, #21468B 20%, transparent 70%);
}

/* Header Styles */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.site-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #21468B; /* Dutch blue */
}

.site-title span {
  color: #FF6600; /* Dutch orange */
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #FF6600; /* Dutch orange */
}

.nav-cta {
  background-color: #FF6600; /* Dutch orange */
  color: #fff !important;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  background-color: #d45500;
  color: #fff !important;
}

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

.bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #21468B; /* Dutch blue */
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero-section {
  background-color: #f8f9fa;
  padding: 10rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: #555;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 102, 0, 0.1); /* Light Dutch orange */
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: #FF6600; /* Dutch orange */
}

.feature-icon {
  color: #FF6600; /* Dutch orange */
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.primary-btn {
  background-color: #FF6600; /* Dutch orange */
  color: #fff;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.7rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #FF6600; /* Dutch orange */
}

.primary-btn:hover {
  background-color: #d45500;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.secondary-btn {
  background-color: transparent;
  color: #21468B; /* Dutch blue */
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.7rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #21468B; /* Dutch blue */
}

.secondary-btn:hover {
  background-color: rgba(33, 70, 139, 0.1); /* Light Dutch blue */
  color: #21468B;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tulip-graphic {
  width: 240px;
  height: 240px;
  animation: float 6s ease-in-out infinite;
}

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

/* About Section */
.about-section {
  background-color: #fff;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-content p {
  margin-bottom: 2rem;
  color: #555;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.6rem;
  font-weight: 700;
  color: #21468B; /* Dutch blue */
  line-height: 1;
}

.stat-number .small {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0.5rem;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.windmill-pattern {
  position: relative;
}

.rotating-blades {
  animation: rotate 20s linear infinite;
  transform-origin: 100px 100px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Features Section */
.features-section {
  background-color: #f8f9fa;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.feature-card {
  background-color: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 102, 0, 0.1); /* Light Dutch orange */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

.features-cta {
  text-align: center;
  margin-top: 3rem;
}

/* How It Works Section */
.how-section {
  background-color: #fff;
  position: relative;
}

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

.step-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% + 20px);
  background-color: rgba(33, 70, 139, 0.2); /* Light Dutch blue */
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #21468B; /* Dutch blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-right: 2.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 1rem;
}

.step-content p {
  color: #666;
}

.how-cta {
  text-align: center;
  margin-top: 5rem;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #f8f9fa;
  position: relative;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #fff;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(255, 102, 0, 0.2); /* Light Dutch orange */
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 0.5;
}

.testimonial-text {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  margin-top: 2rem;
}

.author-name {
  font-weight: 600;
  font-size: 1.8rem;
  color: #21468B; /* Dutch blue */
}

.author-rating {
  color: #FF6600; /* Dutch orange */
  font-size: 1.6rem;
  margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
}

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

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #21468B; /* Dutch blue */
  transition: all 0.3s ease;
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 2rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #21468B 0%, #FF6600 100%);
  color: #fff;
  text-align: center;
  padding: 8rem 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .primary-btn {
  background-color: #fff;
  color: #21468B; /* Dutch blue */
  border-color: #fff;
}

.cta-section .primary-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
  background-color: #21468B; /* Dutch blue */
  color: rgba(255, 255, 255, 0.7);
  padding: 6rem 0 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.brand-info h3 {
  color: #fff;
  margin-top: 1.5rem;
}

.brand-info p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #FF6600; /* Dutch orange */
}

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

.copyright {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.keywords {
  font-size: 1.2rem;
  opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 56.25%; /* 9px base */
  }
  
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .hero-content,
  .about-content {
    max-width: 100%;
  }
  
  .hero-visual,
  .about-visual {
    justify-content: center;
    order: -1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 8rem 3rem 3rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .site-nav.active {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 2rem;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .testimonial-card {
    padding: 3rem 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%; /* 8px base */
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }
  
  .step-item {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .step-item:not(:last-child)::after {
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% - 60px);
    transform: translateX(0);
  }
}
