<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color: #ff8d4f;
  background-color: #333333;
}

#hero {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url('/background-hero.jpg');
  background-size: 100% 100%;
}

#content {
  padding: 2rem;
  background-color: #333333;
  display: none; 
  align-items: center;
  justify-content: center;
}


.arrow-button {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  margin: 20px auto;
  display: block;
}

.arrow-button::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-left: 3px solid #333333;
  border-bottom: 3px solid #333333;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -15px;
  animation: bounce 2s infinite;
}

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

.arrow-button:hover::after {
  border-color: #ffb38a;
}


.reveal {
  display: block !important;
  animation: fadeIn 0.5s ease-in;
}

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

a {
  text-decoration: none;
  color: #B5179E;
}
a:link { 
  text-decoration: none; 
} 
a:visited { 
  text-decoration: none; 
} 
a:hover {
  text-decoration: none;
  color: #F72585;
}
a:active { 
  text-decoration: none; 
}


body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  min-width: 320px;
  min-height: 100vh;

}

.section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #1a1a1a;
  border-radius: 8px;
  position: relative;
}

p {
  margin-left: 3%;
  margin-right: 3%;
  font-size: 1.5em;
}

.p {
  color: #ffb38a;
  margin-left: 3%;
  margin-right: 3%;
  font-size: 1.5em;
}

h1 {
  color: #ffb38a;
  font-size: 3.2em;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 0 3px #0a0a0a;
}

h2 {
  color: #ffb38a;
  font-size: 2em;
  line-height: normal;
  text-align: center;
  text-shadow: 0 0 3px #0a0a0a;
}

h3 {
  color: #ffb38a;
  font-size: 1.5em;
  line-height: normal;
  text-align: center;
  text-shadow: 0 0 3px #0a0a0a;
}

h4 {
  color: #ffb38a;
  margin-left: 3%;
  margin-right: 3%;
  font-size: 1.5em;
}

#content h2,
#content h3,
#content p,
#content ul {
  width: 100%;
  margin: 1rem 0;
}

#content ul {
  padding-left: 2rem;
}

#content li {
  margin: 0.5rem 0;
}

.competences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.competence-item {
  background: #444444;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.5em;
}

.realisations {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.button {
  background: #ff8d4f;
  color: #444444;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.5em;
  width: 66.66%;
}

.button:hover {
  background: #ffb38a;
  color: #666666;
}

.index-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 40px;
  background: #ff8d4f;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #444444;
  font-size: 24px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  z-index: 1000;
}

.index-button:hover {
  background: #ffb38a;
  color: #666666;
  transform: scale(1.05);
}

.passSanitaire {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: #444444; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  z-index: 9999;
}

.passwordBox {
  background: #333333;
  padding: 20px; 
  border-radius: 8px; 
  text-align: center;
}

.passwordButton {
  background: #444444;
  padding: 5px 15px; 
  cursor: pointer;
  color: #FFFFFF;
}

.passwordButton:hover {
  background: #333333;
  color: #faffdc;
}

.email-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  padding: 15px 35px;
  background-color: #ff8d4f;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255,141,79,0.3);
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  border: 2px solid transparent;
}

.email-button:hover {
  background-color: #ff7b35;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,141,79,0.4);
}

.email-button:active {
  transform: translateY(0);
}

/* Version mobile */
@media (max-width: 768px) {
  .email-button {
      padding: 12px 25px;
      font-size: 14px;
      bottom: 20px;
      left: 20px;
  }
}
/* Ajoutez Ã§a Ã&nbsp; la fin de votre fichier CSS existant */

.cv-download {
  position: absolute;
  right: 30px;
  top: 15%;
  background: #ff8d4f;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,141,79,0.25);
  overflow: hidden;
  text-decoration: none;
}

.cv-download span:first-child {
  position: absolute;
  white-space: nowrap;
  left: -100%;
  opacity: 0;
  transition: all 0.3s ease;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.cv-download span:last-child {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.cv-download:hover {
  width: 140px;
  background: #ff7b35;
  transform: translateX(-20px);
}

.cv-download:hover span:first-child {
  left: 15px;
  opacity: 1;
}

.cv-download:hover span:last-child {
  transform: translateX(40px);
}

@media (max-width: 768px) {
  .cv-download {
      right: 15px;
      top: 10%;
      width: 40px;
      height: 40px;
  }
  
  .cv-download:hover {
      width: 120px;
      transform: translateX(-10px);
  }
  
  .cv-download span:last-child {
      font-size: 20px;
  }
  
  .cv-download span:first-child {
      font-size: 12px;
  }
}

/* Style du lecteur musical */
.music-player {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

#music-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff8d4f;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
  box-shadow: 0 5px 15px rgba(255,141,79,0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#music-btn:hover {
  background: #ffb38a;
  transform: scale(1.1);
}

#music-btn.replay {
  background: #2ecc71 !important;
  animation: pulse 1.5s infinite;
}

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

@media (max-width: 768px) {
  .music-player {
      bottom: 20px;
      right: 20px;
  }
  #music-btn {
      width: 40px;
      height: 40px;
      font-size: 20px;
  }
}</pre></body></html>