/*!**************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/Hero/Hero.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --accent: #4a90e2;            /* bleu VAM */
  --font-dark: #1a1a1a;
  --grey: #666;
  --light-bg: #f0f1ff;
  --radius: 12px;
}

/* -------- STRUCTURE -------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 6%;
  background: var(--light-bg);
  min-height: 100vh;
  gap: 4rem;
}

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

.hero-image img { width: 100%; max-width: 720px; }

/* -------- TITRES -------- */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--font-dark);
  margin-bottom: 1.5rem;
}
.highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.25rem;
  color: var(--grey);
  margin-bottom: 2.5rem;
}

/* -------- FORMULAIRE -------- */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.waitlist-form input {
  padding: 1rem 1.25rem;
  border: 2px solid #dbe1ff;
  border-radius: var(--radius);
  font-size: 1rem;
  width: 100%;
}

.cta {
  padding: 1rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.offer {
  font-size: 1rem;
  color: #1a1a1a;
  margin-top: 1rem;
  display: block;
  text-align: left;
}

/* -------- STORES -------- */
.store-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--grey);
}

.store-badge {
  width: 30px;          
  opacity: 0.65;
  transition: opacity 0.2s;
}
.store-badge:hover { opacity: 1; }

/* -------- MOCKUP -------- */
.phone-mockup {
  transform: perspective(900px) rotateY(-14deg);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.15));
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; }
  .phone-mockup { transform: none; max-width: 320px; }
}

/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/Community/Community.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
.community {
  padding: 4rem 2rem;
  background-color: white;
  /* min-height: 100vh; */
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.community-left {
  flex: 1 1;
  padding-right: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.community-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
}

.download-app {
  padding: 1rem 2.5rem;
  background-color: #1a1a1a;
  color: white;
  border: none;
  border-radius: 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.download-app:hover {
  transform: translateY(-2px);
}

.community-right {
  flex: 1.5 1;
  display: flex;
  flex-direction: column;
}

.experience-tag {
  text-align: right;
  margin-bottom: 2rem;
}

.experience-tag h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.experience-tag p {
  font-style: italic;
  color: #666;
}

.community-stats {
  margin: 4rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.community-avatars {
  height: 80px;
}

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

.destination-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 3/2;
}

.destination-card:hover {
  /* transform: translateY(-5px); */
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-info {
  transform: scale(1.05);
}

.destination-info h3 {
  font-size: 1.2rem;
}

.explore-button {
  padding: 0.5rem 1rem;
  background-color: white;
  color: #1a1a1a;
  border: none;
  border-radius: 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.explore-button:hover {
  transform: translateY(-2px);
}

/* Media queries pour la responsivité */
@media (max-width: 1024px) {
  .community {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .community-left {
    padding-right: 0;
    margin-bottom: 3rem;
    max-width: 600px;
  }
  
  .community-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .experience-tag {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .community-stats {
    margin: 2rem 0;
  }
  
  .destinations-grid {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .community-title {
    font-size: 2.5rem;
  }
  
  .community-description {
    font-size: 1rem;
  }
  
  .destination-info h3 {
    font-size: 1rem;
  }
  
  .explore-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
} 
/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/Features/Features.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
.features {
  padding: 4rem 0rem;
  background-color: white;
  min-height: 70vh;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.features-header h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: #1a1a1a;
}

.features-tag {
  text-align: right;
}

.features-tag p {
  color: #666;
  margin-bottom: 0.5rem;
}

.features-tag h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.features-tag .subtext {
  font-size: 0.9rem;
  color: #999;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  background-color: #f8f9ff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon img {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Media queries pour la responsivité */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .features-tag {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .features-header h2 {
    font-size: 2.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
} 
/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/About/About.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
.about-section {
  background-color: #ffffff;
  padding: 6rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 5rem;
}

.about-header h2 {
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.about-intro {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-section {
  margin-bottom: 5rem;
}

.team-section h3 {
  font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
}

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

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #f8f9ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h4 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.values-section {
  margin-top: 5rem;
}

.values-section h3 {
  font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #f8f9ff;
  transition: transform 0.3s ease;
}

.value-item.last-value {
  grid-column: 3;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h4 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.value-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Media queries pour la responsivité */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .value-item.last-value {
    grid-column: 1 / span 2;
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1rem;
  }
  
  .about-header h2 {
    font-size: 2.5rem;
  }
  
  .team-section h3,
  .values-section h3 {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .member-image {
    width: 120px;
    height: 120px;
  }
  
  .value-item.last-value {
    grid-column: 1;
    max-width: 100%;
  }
} 
/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/Footer/Footer.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.footer {
  background-color: #f8f9ff;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 64px;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  color: #1a1a1a;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-column a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #1a1a1a;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link img {
  width: 20px;
  height: 20px;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-info p {
  color: #666;
  font-size: 0.9rem;
}

.app-badges {
  display: flex;
  gap: 1rem;
}

.app-badges img {
  height: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-info {
    flex-direction: column;
    gap: 1rem;
  }
} 
/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/Loader/Loader.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.5s ease-in-out;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  animation: pulse 2s ease-in-out infinite;
}

.loader-progress-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-progress-circle {
  fill: none;
  stroke: #333;
  stroke-width: 7;
}

.loader-progress-circle-progress {
  fill: none;
  stroke: #efaf47;
  stroke-width: 7;
  transform-origin: center;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 0.1s ease;
}

.loader-text {
  margin-top: 20px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Animation de sortie */
.loader-container.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
} 
/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/App.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f1ff;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s ease-in-out;
}

.app.hidden {
  opacity: 0;
  pointer-events: none;
}

button {
  font-family: inherit;
} 
