/* Base Styles for undressaipornFR.love */
:root {
  /* Palette inspirée du drapeau français */
  --blue-primary: #0055A4;
  --blue-dark: #00337F;
  --red-primary: #EF4135;
  --red-dark: #CB2026;
  --white-primary: #FFFFFF;
  --white-off: #F5F5F5;
  --black: #1A1A1A;
  --grey-light: #EEEEEE;
  --grey-medium: #999999;
  --grey-dark: #666666;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --gradient-blue: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  --gradient-red: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--grey-dark);
}

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

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

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

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

.highlight {
  color: var(--red-primary);
}

.section-tag {
  display: inline-block;
  background: var(--red-primary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.primary-btn {
  background: var(--blue-primary);
  color: white;
  border: none;
}

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

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

.outline-btn:hover {
  background: var(--blue-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.large-btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Header & Navigation */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  margin-right: 0.75rem;
}

.desktop-nav {
  display: flex;
}

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

.desktop-nav li {
  margin-left: 1.5rem;
}

.desktop-nav a {
  color: var(--black);
  font-weight: 500;
  padding: 0.5rem;
}

.desktop-nav a:hover {
  color: var(--blue-primary);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* Header layout */
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,245,245,0.8) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 100%;
  top: 0;
  left: -25%;
  background: linear-gradient(135deg, rgba(0,85,164,0.05) 0%, rgba(239,65,53,0.05) 100%);
  transform: skewY(-5deg);
  z-index: -1;
}

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

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

.hero-visual {
  flex: 1;
  max-width: 500px;
  margin-left: 2rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--grey-dark);
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--grey-light);
  text-align: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--grey-light);
  position: relative;
}

.how-it-works::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: white;
  bottom: -50px;
  transform: skewY(3deg);
  z-index: -1;
}

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

.process-step {
  display: flex;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--blue-primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.step-content {
  flex-grow: 1;
}

.action-box {
  margin-top: 4rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  color: white;
  border-radius: 10px;
  text-align: center;
}

.action-box h3, .action-box p {
  color: white;
}

.action-box .primary-btn {
  background: white;
  color: var(--blue-primary);
  margin-top: 1rem;
}

.action-box .primary-btn:hover {
  background: var(--grey-light);
  color: var(--blue-dark);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--grey-light);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-toggle {
  font-size: 1.5rem;
  color: var(--blue-primary);
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin-bottom: 0;
}

/* Keywords Cloud */
.keywords-section {
  padding: 3rem 0;
  background-color: var(--grey-light);
}

.keywords-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.keyword {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 50px;
  color: var(--grey-dark);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.keyword:hover {
  color: var(--blue-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--black);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--grey-medium);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-icon {
  margin-right: 1rem;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 0;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--grey-medium);
}

.footer-links a:hover {
  color: var(--red-primary);
}

.footer-cta h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-cta p {
  color: var(--grey-medium);
  margin-bottom: 1.5rem;
}

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

.footer-bottom p {
  color: var(--grey-medium);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .hero-visual {
    margin-left: 0;
    margin-top: 3rem;
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .mobile-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: white;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
  }
  
  .mobile-menu.active {
    height: auto;
    padding: 1rem 0;
  }
  
  .mobile-menu ul {
    list-style: none;
  }
  
  .mobile-menu li {
    margin: 1rem 1.5rem;
  }
  
  .mobile-menu a {
    color: var(--black);
    font-size: 1.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
