/* 
   nudifyerFR.pw Styles
   French-inspired design with unique color scheme
*/

/* Import Google Fonts - Montserrat and Playfair Display are popular in French websites */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* French flag-inspired color palette */
  --blue: #002395;
  --white: #FFFFFF;
  --red: #ED2939;
  --navy: #001e50;
  --light-blue: #6b89c9;
  --dark-red: #b91c31;
  --gold: #d4af37;
  --dark: #222222;
  --gray: #888888;
  --light-gray: #F7F7F7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--navy);
}

/* Main Typography */
h1 {
  font-size: 2.7rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--red);
}

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

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

/* French-inspired decorative elements */
.section-decoration {
  position: relative;
  width: 100px;
  height: 3px;
  margin: 0 auto 40px;
  background: linear-gradient(to right, var(--blue), var(--white), var(--red));
}

.section-decoration:before,
.section-decoration:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: -3.5px;
  background: var(--gold);
}

.section-decoration:before {
  left: -5px;
}

.section-decoration:after {
  right: -5px;
}

/* Button Styles with French elegance */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover:before {
  left: 100%;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(237, 41, 57, 0.3);
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(237, 41, 57, 0.4);
}

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

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 35, 149, 0.3);
}

.btn-large {
  padding: 16px 34px;
  font-size: 0.9rem;
}

/* Header with French-inspired elegance */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

.logo svg {
  margin-right: 10px;
  height: 40px;
  width: auto;
}

.logo-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

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

.nav-list {
  display: flex;
  list-style: none;
}

.nav-link {
  margin: 0 20px;
  position: relative;
  font-weight: 500;
  color: var(--dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--red));
  transition: width 0.3s ease;
}

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

.nav-cta {
  margin-left: 20px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy);
  margin: 3px 0;
  transition: all 0.3s ease;
}

/* Hero Section with French aesthetic */
.hero {
  padding: 180px 0 100px;
  background-color: #f7f7f7;
  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='%23002395' fill-opacity='0.05'%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");
  position: relative;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 35, 149, 0.05) 0%, rgba(237, 41, 57, 0.05) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
}

.hero-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--white) 50%, var(--red) 100%);
}

.hero-description {
  font-size: 1.2rem;
  margin: 40px auto 30px;
  color: var(--dark);
  max-width: 700px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Features Section with French-inspired minimalist design */
.features {
  padding: 90px 0;
  background-color: var(--white);
  position: relative;
}

.features:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(to right, var(--blue), var(--white), var(--red));
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 2.5rem;
}

.section-subtitle {
  color: var(--gray);
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  font-weight: 300;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature-card {
  flex: 0 0 calc(33.333% - 40px);
  background: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--blue) 0%, var(--red) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover:before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--navy);
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-card:hover .feature-icon {
  background: var(--light-blue);
  color: var(--white);
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.feature-description {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Process Section with French elegance */
.process {
  padding: 90px 0;
  background-color: var(--light-gray);
  position: relative;
}

.process-steps {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 30px 0;
}

.process-steps:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--blue), var(--red));
}

.step {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
}

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

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

.step-number {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 35, 149, 0.3);
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.step:nth-child(even) .step-content {
  text-align: right;
  padding-left: 0;
  padding-right: 70px;
}

.step:nth-child(odd) .step-content {
  text-align: left;
  padding-right: 0;
  padding-left: 70px;
}

.step-content {
  flex: 0 0 calc(50% - 40px);
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-title {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 1.3rem;
}

.step-description {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Call to Action with French-inspired gradient */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.1;
}

.cta:after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.1;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

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

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.cta-btn {
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(237, 41, 57, 0.3);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 15px 35px rgba(237, 41, 57, 0.4);
}

/* FAQ Section with French-inspired styling */
.faq {
  padding: 90px 0;
  background: var(--white);
}

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

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
  color: var(--navy);
}

.faq-toggle {
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  background: var(--light-gray);
  transition: all 0.3s ease;
}

.faq-toggle:before,
.faq-toggle:after {
  content: '';
  position: absolute;
  background: var(--blue);
  transition: all 0.3s ease;
}

.faq-toggle:before {
  width: 12px;
  height: 2px;
  top: 10px;
  left: 5px;
}

.faq-toggle:after {
  width: 2px;
  height: 12px;
  top: 5px;
  left: 10px;
}

.faq-item.active .faq-toggle:after {
  opacity: 0;
}

.faq-item.active .faq-toggle {
  background: var(--light-blue);
}

.faq-item.active .faq-toggle:before,
.faq-item.active .faq-toggle:after {
  background: var(--white);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-answer-inner {
  padding-bottom: 25px;
}

.faq-item.active .faq-question {
  background: var(--light-gray);
  border-left-color: var(--blue);
}

.faq-item.active .faq-answer {
  opacity: 1;
}

/* Footer with French design elements */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
}

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

.footer-info {
  margin-bottom: 20px;
}

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

.footer-logo-text {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 15px;
  font-family: 'Playfair Display', serif;
}

.footer-description {
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-heading {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--white), var(--red));
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 20px;
}

.footer-links a:hover:before {
  background: var(--white);
  opacity: 1;
}

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

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.9rem;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .features-container {
    gap: 30px;
  }
  
  .feature-card {
    flex: 0 0 calc(50% - 30px);
  }
  
  .process-steps:before {
    left: 40px;
  }
  
  .step {
    flex-direction: row !important;
  }
  
  .step-number {
    left: 40px;
    transform: translateX(0);
  }
  
  .step-content {
    flex: 0 0 calc(100% - 120px);
    margin-left: auto;
    text-align: left !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 40px 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .nav-link {
    margin: 15px 0;
    font-size: 1.1rem;
  }
  
  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .feature-card {
    flex: 0 0 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 130px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 1.9rem;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .process-steps:before {
    left: 30px;
  }
  
  .step-number {
    left: 30px;
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  
  .step-content {
    padding: 20px !important;
  }
}
