.rolling-text {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.rolling-text h1 {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
body.no-scroll-page {
  overflow: hidden !important;
  height: 100vh;
}

h1 {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  max-width: none;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: scroll-left 15s linear infinite;
  padding-left: 100%;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.media-links {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 400%;
}

.camera-zone {
  position: fixed;
  bottom: 500px;
  right: 20px;
  width: 550px;
  height: 400px;
  /*border: 2px solid black;*/
  /*border-radius: 10px;*/
  overflow: hidden;
  z-index: 9999;
  background: #000;
  mix-blend-mode: multiply;
}

#camera {
  width: 200%;
  height: 100%;
  margin-left: -55%;
  object-fit: fill;
  filter: grayscale(1000%) contrast(20000%) saturate(200%);
  /*transform: skewX(-10deg) scaleX(1.2);*/
  image-rendering: pixelated;
}

img {
  position: relative;
  left: 80px;
}

a {
  z-index: 10;
  margin-left: 40px;
}

p {
  z-index: 10;
  position: relative;
  white-space: nowrap;
}

.aigle {
  position: absolute;
  left: 1000px;
  top: 500px;
  transform: scaleX(-1);
}

.camera-gif {
  position: absolute;
  left: auto;
  right: 109px;
  top: auto;
  bottom: 100px;
  transform: scaleX(-1);
  mix-blend-mode: multiply;
  
  /* assure-toi que l’élément qui précède soit isolé pour que seul ton GIF blend */
  isolation: isolate;
}

body {
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  width: 100%;
}


.cd-player {
  position: relative;
  left: 650px;
  bottom: 190px;
  width: 300px;
  background: #c0c0c0;
  border: 2px outset #fff;
  color: black;
  padding: 8px;
  margin: 40px auto;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.5);
  font-family: "Iceland", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: large;

}

.title-bar {
  background: linear-gradient(to right, #000000, #000000);
  color: white;
  padding: 3px 8px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.win-controls {
  font-family: monospace;
  cursor: default;
}

.screen {
  background: black;
  color: #ff0000;
  font-family: monospace;
  font-size: 16px;
  text-align: center;
  padding: 5px;
  margin-bottom: 8px;
}

.controls {
  display: flex;
  justify-content: space-around;
  margin-bottom: 8px;
}

.btn {
  background: #e0e0e0;
  border: 2px outset #fff;
  padding: 4px 8px;
  font-size: 14px;
  cursor: pointer;
}

.btn:active {
  border: 2px inset #aaa;
}

.info {
  background: white;
  padding: 4px;
  border: 1px solid #999;
}

/* conteneur en position relative */
#windows-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
}

/* fenêtre de l'application */
.window {
  position: absolute;
  width: 300px;              /* ajustez selon vos images */
  border: 1px solid #aaa;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
  background: #fff;
  font-family: sans-serif;
  will-change: transform;       /* hint au navigateur : je vais bouger en transform */
  pointer-events: auto;
}

/* barre de titre */
.window .titlebar {
  display: flex;
  box-shadow: inset 0 0 10px #ffffffea;
  justify-content: space-between;
  align-items: center;
  background: #000000;
  color: #ff0000;
  padding: 4px 8px;
  pointer-events: auto;
  cursor: move;           /* ou move si vous implémentez le drag */

  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* bouton fermer */
.window .close-btn {
  cursor: pointer;
  pointer-events: auto;
  font-weight: bold;
}

/* image à l’intérieur de la fenêtre */
.window img {
  display: block;
  width:100%;
  height: auto;
 left: auto;
 pointer-events: none; 
}

.window, .window *, .window img {
  user-select: none !important;
  -webkit-user-drag: none !important;
         /* on rend l’image “invisible” aux events, tout passe dans la fenêtre */
}




.photoh1 {
  position: relative;
  margin: 1%;
  font-family: 'Comic Neue', serif;
  font-weight: bold;
  font-weight: 700;
  color: #ff0000;
  display: inline-block;              /* pour que le fond « colle » au texte */

  background-color: #000;
}

.house-link {
  position: fixed;    /* ou absolute si vous voulez par rapport à un parent positionné */
  top: 16px;          /* écarte de 16px du haut */
  right: 130px;        /* écarte de 16px de la droite */
  z-index: 999;       /* pour qu’elle soit au-dessus de tout */
}

.house-icon {
  width: 200px;       /* ou la taille que vous voulez */
  height: auto;
  cursor: pointer;
  display: block;     /* supprime le petit “espace” inline autour de l’image */
  transition: none;
  filter: none;

}

.house-link:hover .house-icon {
  transform: scale(1.1);
  filter:
    invert(1)
    /* contour fin */
    drop-shadow(0 0 4px rgba(255,255,255,0.8))
    /* halo plus large */
    drop-shadow(0 0 12px rgba(255,255,255,0.6));
    
}

.p-photo{
  color: #ff0000;
  font-size: 20px;
  font-family: 'Comic Neue', serif;
  font-weight: bold;
  font-weight: 700;
  background-color: #000;
    /* pour que le fond « colle » au texte */
  padding: 0.2em 0.4em;
  border-radius: 0.2em;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
.album-ico {
  /* on place la transition ici, pas dans :hover */
  
  transition: 
    transform 0.3s ease-in-out,
    filter    0.3s ease-in-out;
}

.album-ico:hover {
  transform: scale(1.1);
  filter:
    /* contour fin */
    drop-shadow(0 0 4px rgba(255, 0, 0, 0.8))
    /* halo plus large */
    drop-shadow(0 0 12px rgba(255, 0, 0, 0.6));
}

.banner-truc {
  display: block;        /* Évite les espaces blancs sous l’image */
  max-width: 20%;       /* Au plus 100% de la largeur du parent */
  height: auto;          /* Hauteur calculée pour garder le ratio */
  transition: none;
  filter: invert(0);
  
}
.banner-truc:hover {
  filter: 
  invert(1) contrast(20000%) saturate(200%);

}