.topnav input[type=text] {
  float: right;
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 17px;
}
/*------------------------------------ Home page --------------------------------------------------------*/

/*------------------ Sesrch bar -----------------------*/
#Search_input {
  width: 600px;
  height: 50px;
  border: 2px solid black;
  border-radius: 50px;
  background: linear-gradient(270deg, rgba(145,71,255,0.7), rgba(235,4,0,0.7), rgba(255,200,0,0.7));
  background-size: 600% 600%;
  padding-left: 30px;
  font-size: 17px;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#Search_btn{
	width: 55px;
	height:  55px;
	border: 2px solid black;
    border-radius: 50px 50px /  50px 50px;
	
}
#Search_btn:hover {
	border: 2px solid grey;
	box-shadow: 0px 0px 10px grey;
	transform: scale(1.1);
	cursor: pointer;
	transition-duration: 500ms;
}



/* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
@media screen and (max-width: 600px) {
  .topnav a, .topnav input[type=text] {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=text] {
    border: 1px solid #ccc;
  }
}

/* Create a top navigation bar with a black background color  */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}


/*Projects page Jpan travel*/
.container {
  text-align: center; /* centre le contenu dans le conteneur */
  margin-bottom: 100px;
}

.image {
  display: inline-block; /* évite que le <a> prenne toute la largeur */
  height: 533px;
  width: 415px;
  border-radius: 25% 10%;
  box-shadow: 2px 5px 5px grey;
  transition: transform 0.3s ease;
}


.image:hover {
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 10px 5px 5px grey;
}

/*banner voyage*/
html, body {
  margin: 0;
  padding: 0;
  text-align: center;
}

.banner_top {
  background-position: center;
}

/*Text sous la banner*/
.wellcomme {
	margin-top: -4px;
	border-top: 20px solid grey;
	padding-top: 0px;
	margin-bottom: 100px;
	
	Text-align: center;
}

.Page_Voyage{
	background: linear-gradient(to top, rgba(254, 162, 1, 0.8), rgba(45, 85, 0, 0.7));
	
}

.footer{
	margin-top: 0px;
	border: 3px solid grey;
	background-color: grey;
	color: white;
	text-align: center;
	padding: 20px;
	position: relative;
}

/*Page Twitch de Skymaw*/
.Social_Net {
	padding: 10px;
	height: 40px;
	width: 40px;
}

.live {
	margin-top: 100px;
	margin-bottom: 100px;
	
}

.Networks {
	margin-top: 200px;
	margin-bottom: 0px
	
}

.Thanks {
	font-size: 10px;
}

p {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  font-family: "Times New Roman", serif;
}

.Photo_Profile {
	border-radius: 50% ;
	margin-top: 10px;
	border: 2px solid white;
}
.Logo_Profile {
	border-radius: 30% ;
	margin-top: 0px;
	height: 30px;
	width: 30px;
}

.About {
	margin-top: 70px;
	margin-bottom: 70px;
	margin-left: 50px;
	margin-right: 50px;
	padding-top: 5px;
	padding-bottom: 140px;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 5px grey;
	border-radius: 25px;
}

.Twitch_Elements {
	padding-top: 140px;
	padding-bottom: 140px;
	margin-left: 50px;
	margin-right: 50px;
	background-color: rgba(255, 0, 0, 0.6);
	border-radius: 25px;
	box-shadow: 0 0 10px red;
}

.Twitch_page {
	background: linear-gradient(270deg, rgba(145,71,255,0.7), rgba(235,4,0,0.7), rgba(255,200,0,0.7));
	font-size: 17px;
	animation: gradientMove 120s ease infinite;
	background-size: 600% 600%;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/*------------------------------------------------- FAQ ----------------------------------------------------------------------------*/

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
  
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}





.networks { margin: 40px auto 80px; }
.networks-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 18px;
  justify-items: center;
}

.tilt-card{
  width: 180px; height: 220px;
  text-decoration: none;
  perspective: 1000px;         /* scène 3D */
}

.tilt-inner{
  position: relative;
  width: 100%; height: 100%;
  border-radius: 16px;
  background: #111;            /* fond carte */
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transform-style: preserve-3d;
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}

.tilt-inner img{
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px;
  object-fit: contain;
  transform: translateZ(24px);  /* léger relief du logo */
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.45));
}

.tilt-inner .label{
  position: absolute; left: 12px; bottom: 12px;
  font: 12px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #eaeaea;
  opacity: .9;
  transform: translateZ(12px);
}

.tilt-inner .glare{
  pointer-events: none;
  position: absolute; inset: 0;
  background: radial-gradient(400px at 50% 0%, rgba(255,255,255,.28), transparent 45%);
  opacity: 0; transition: opacity .15s ease;
}

.tilt-card:hover .tilt-inner{ box-shadow: 0 50px 80px rgba(0,0,0,0.45); }
.tilt-card:hover .glare{ opacity: 1; }

/* Responsive */
@media (max-width: 640px){
  .networks-grid{ grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .tilt-card{ width: 120px; height: 160px; }
  .tilt-inner img{ width: 56px; height: 56px; }
}



