
/* Base styles */
:root {
  --nova-blue-dark: #005f73;
  --nova-blue: #0a9396;
  --nova-blue-light: #94d2bd;
  --nova-green: #3c946d;
  --nova-green-dark: #2a6c4e;
  --nova-neutral: #f8f9fa;
  --nova-neutral-dark: #343a40;
  --text-dark: #212529;
  --text-light: #f8f9fa;
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--nova-blue-dark);
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

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

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

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--nova-neutral);
}

.hidden {
  display: none;
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--nova-blue-dark);
}

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

.main-nav li {
  margin-left: 1.5rem;
  position: relative;
}

.main-nav a {
  color: var(--nova-neutral-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:hover {
  color: var(--nova-blue);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 0.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
}

.social-book {
  display: flex;
  align-items: center;
}

.social-icon {
  display: flex;
  color: var(--nova-neutral-dark);
  margin-right: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--nova-blue);
}

.book-button {
  background-color: var(--nova-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: var(--transition);
}

.book-button:hover {
  background-color: var(--nova-green-dark);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--nova-neutral-dark);
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom right, rgba(0, 95, 115, 0.8), rgba(10, 147, 150, 0.6), rgba(148, 210, 189, 0.4));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1s ease;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.primary-button {
  background-color: var(--nova-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.primary-button:hover {
  background-color: var(--nova-green-dark);
}

.secondary-button {
  border: 2px solid white;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: var(--transition);
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  color: white;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.diplomas {
  background-color: var(--nova-blue-light);
  background-opacity: 0.1;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.diplomas ul {
  list-style: none;
}

.diplomas li {
  display: flex;
  margin-bottom: 0.5rem;
}

.diplomas li:before {
  content: "•";
  color: var(--nova-green);
  margin-right: 0.5rem;
}

.erickson-approach {
  background-color: var(--nova-neutral);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hypno-button {
  display: inline-block;
  background-color: var(--nova-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  transition: var(--transition);
}

.hypno-button:hover {
  background-color: var(--nova-blue-dark);
}

/* Applications Section */
.section-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
}

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

.application-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.application-icon {
  background-color: var(--nova-blue-light);
  color: var(--nova-blue-dark);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Self Hypnosis */
.self-hypnosis-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.self-hypnosis-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
}

.self-hypnosis-image:after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--nova-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.harmonia-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--nova-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  max-width: 100%;
}

.harmonia-button svg {
  margin-right: 0.5rem;
}

.harmonia-button:hover {
  background-color: var(--nova-green-dark);
}

.self-hypnosis-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background-color: var(--nova-neutral);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

/* Session Process */
.timeline {
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  height: 100%;
  width: 3px;
  background-color: var(--nova-blue);
}

.timeline-step {
  position: relative;
  padding-left: 6rem;
  margin-bottom: 3rem;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--nova-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Testimonials */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
}

.testimonial-content {
  margin-bottom: 1rem;
  font-style: italic;
}

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

.testimonial-stars {
  color: gold;
  letter-spacing: 2px;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

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

.faq-icon {
  font-weight: bold;
  font-size: 1.5rem;
}

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

.faq-item.active .faq-answer {
  padding: 1rem;
  border-top: 1px solid #eee;
}

/* Pricing Section */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background-color: var(--nova-neutral);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-header {
  background-color: var(--nova-blue-dark);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.pricing-header h3 {
  margin-bottom: 0.5rem;
}

.pricing-content {
  padding: 2rem;
}

.pricing-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-content li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.pricing-content li:before {
  content: "✓";
  color: var(--nova-green);
  margin-right: 0.5rem;
}

.pricing-highlight {
  background-color: var(--nova-blue);
  color: white;
  padding: 0.75rem;
  border-radius: 0.25rem;
  margin-top: 1rem;
  font-weight: 500;
}

.pricing-button {
  display: block;
  background-color: var(--nova-green);
  color: white;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: var(--transition);
  margin-top: 1.5rem;
}

.pricing-button:hover {
  background-color: var(--nova-green-dark);
}

.pricing-notes {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-note {
  background-color: white;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-note ul {
  list-style: none;
}

.pricing-note li {
  margin-bottom: 0.5rem;
}

.pricing-note li:before {
  content: "•";
  color: var(--nova-blue);
  margin-right: 0.5rem;
}

.mutuelle-note {
  background-color: var(--nova-blue-light);
  background-opacity: 0.2;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  color: var(--nova-blue-dark);
  font-weight: 500;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-details {
  margin: 1.5rem 0;
}

.contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.contact-item svg {
  color: var(--nova-blue);
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item p:first-of-type {
  font-weight: 500;
  color: #666;
}

.contact-item a {
  color: var(--nova-blue);
  transition: var(--transition);
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.contact-button svg {
  margin-right: 0.5rem;
}

.phone-button {
  background-color: var(--nova-blue);
  color: white;
}

.phone-button:hover {
  background-color: var(--nova-blue-dark);
}

.email-button {
  border: 2px solid var(--nova-blue);
  color: var(--nova-blue);
}

.email-button:hover {
  background-color: var(--nova-blue);
  color: white;
}

.contact-map {
  height: 300px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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

.footer h3 {
  font-family: 'Playfair Display', serif;
  border-bottom: 2px solid var(--nova-blue);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.footer p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-social a {
  display: inline-flex;
  color: white;
  margin-top: 0.5rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-social a:hover {
  opacity: 1;
}

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

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: white;
  text-decoration: underline;
}

.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: white;
}

.footer-appointment {
  margin-top: 1rem;
}

.footer-appointment a {
  display: inline-block;
  background-color: var(--nova-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: var(--transition);
}

.footer-appointment a:hover {
  background-color: var(--nova-green-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover, .footer-links a.active {
  color: white;
}

.footer-links span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Floating Button */
.floating-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--nova-green);
  color: white;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 50;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  transition: var(--transition);
}

.floating-button svg {
  margin-right: 0.5rem;
}

.floating-button:hover {
  background-color: var(--nova-green-dark);
  transform: translateY(-2px);
}

/* Scroll to Top Button */
#scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--nova-blue);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

#scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-to-top:hover {
  background-color: var(--nova-blue-dark);
}

/* Legal Section */
.legal-section {
  padding-top: 10rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  text-align: left;
  margin-top: 2rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-date {
  margin-top: 3rem;
  font-style: italic;
  color: #666;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .self-hypnosis-content {
    grid-template-columns: 1fr;
  }
  
  .timeline:before {
    left: 1.5rem;
  }
  
  .timeline-step {
    padding-left: 4rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav.active ul {
    flex-direction: column;
  }
  
  .main-nav.active li {
    margin: 0.5rem 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-left: 1rem;
    padding: 0.5rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .floating-button {
    right: 1rem;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  #scroll-to-top {
    left: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
