@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

 

*,
::before,
::after

{box-sizing: border-box;
	padding: 0;
margin: 0;}

html {
   font-size: 100%;
    font-family: 'Roboto', sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

hr {width: 70%;}

body{background: #f4f4f4;}

/* Style the header */
.information {
 max-width: 100%;
	padding: 0;
	height: auto;
		
}
.information {
   ;text-align: center;font-size: 20px;padding: 15px;
  background: #0e273b;
  color: #75ac42; 
}

.information span {
   ;text-decoration:underline;
}


/* Page content */
.content {
  padding: 25px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 102px;
}



nav {position: fixed;
width: 100%;
display: flex;
align-items: center;
padding: 0px 25px;
background:#f1f1f1;
;z-index: 1000;}

.nav-icon{display: flex;
align-items: center;text-decoration: none;
margin-right: 20px;}

.nav-icon span {font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
font-size: 25px;
margin-left: 10px;
font-weight: 400;
color: #333;}

.nav-icon img{ width: 100px;height: 80px;min-width: 100px;}



.hamburger {display: none;}
.navlinks-container i {margin-left: 5px;}



.navlinks-container a {padding: 12px 0;
	margin:10px 15px 0px ;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	color: #000;
	display: inline-block;
	position:relative;
}
.navlinks-container  {
	margin-left: 70px;
}

.navbar-form {width: 30px;margin:0px 10px;
	font-size: 16px;}






.navlinks-container a:hover{ color: #3e8e41;transition: 0.3s;}
.nav-authentication{margin-left: auto;}

.sign-user{font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";color: #333;
font-size: 16px;
min-width: 90px;
padding: 10px 5px;
margin: 0 0px;
border-radius: 5px;
border: none;}




/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}



/* Dropdown Content (Hidden by Default) */
.dropdown-content {top: 100%;transition:0.3s ease-out ;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 237px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {margin: 0;
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #3e8e41;color: black;transition: 0.3s;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {color:  #3e8e41;}


        /* Style de la barre de recherche */
        
.search-container {margin-left: 100px;
  float: right;
}

 input[type=text] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
}

.search-container button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.topnav .search-container button:hover {
  background: #ccc;
}
     

        /* Style pour le logo */
        .logo {
            float: left;
            margin: 8px 16px;
        }

        /* Style pour l'icône de connexion */
        .login-icon {
            float: right;
            margin: 8px 16px;
            color: white;
            font-size: 20px;
        }







@media (max-width:900px) {
.navlinks-container  {
	margin-left: 0;
}


/* liste deroulant*/
 .dropdown-content {position: sticky;
top:0;
}


        
	
	/* Style the search box inside the navigation bar */

.search-container {margin:0px;
    float: none;
  }
  nput[type=text], .topnav .search-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=text] {
    border: 1px solid #ccc;  
  }
        /* Style pour le logo */
	
	nav {
		padding:15px 10px;
		pasition: relative;
	}
	

	.nav-icon{order: 2;
	margin:0;
	margin-left: auto;}
	
	.nav-icon span{font-size: 22px;}
	.nav-icon img {;height: auto}
	.main-navlinks{
		order: 1;
	}
	
	
	/* hamburgerToggler */
	.hamburger{
		width: 20px;
		height: 20px;
		cursor: pointer;
		border:none;
		display: flex;
		background:  #f1f1f1;
		align-items: center;
		position: relative;
		
	
	}
	
	.hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background: #333;
		position: absolute;
		pointer-events: none;
		transition: opacity 0.3s 0.15s ease-out;
	}
	.hamburger span:nth-child(1), 
	.hamburger span:nth-child(3) {
		transition: transform 0.3s ease-out;
	}
	
	.hamburger span:nth-child(1) {
		transform: translateY(7px);
	}
	
		.hamburger span:nth-child(3) {
			transform: translateY(-7px);
	}
	
	.hamburger.open span:nth-child(1){
		transform: translate(0) rotate(135deg);
	}
	.hamburger.open span:nth-child(2){
		opacity: 0;transition: opacity 0s ease-out;
	}
	.hamburger.open span:nth-child(3){
		transform: translate(0) rotate(-135deg);
	}
	
	
	
	.navlinks-container  {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		position: absolute;
		background:#f1f1f1;
		top: 100%;
		left: 0;
		height: 100vh;
		padding: 15px 50px 15px 20px;
		
		transform: translate(-100%); 
		transition: transform 0.3s ease-out;
		width: 100%;
	}
	.open{
		transform: translate(0%);}
	
	.navlinks-container a {
		font-size: 18px;
		margin: 10px 14px;
		padding: 5px;
	}
	

	
	  
	
	.nav-authentication {order: 3;
	margin-right:0px;}
	
	

}

@media (max-width:500px){
	.nav-icon img{width: 80px;}
	.nav-icon span {font-size: 20px;}
}


/* TITRE INSTALATION ELECTROMENAGER A TOULOUSE*/

.reparation-ectromenager-a-domecile-toulouse h1 {margin-top: 130px;text-align: center;font-size: clamp(20px,7vw,30px);color: #0e273b; 
	
}
@media (max-width:700px){
.reparation-ectromenager-a-domecile-toulouse h1 {margin-top: 150px;
	
}
}

.reparation-ectromenager-a-domecile-toulouse2 p {margin-top: 30px;text-align: center;font-size: clamp(20px,7vw,30px);color: #0e273b; 
	
}
@media (max-width:700px){
.reparation-ectromenager-a-domecile-toulouse2 p {margin-top: 30px;
	
}
}

/* Section hero */
.hero-section {
    background: url('images/planet-moove-Toulouse.png') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#f5c518; 
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
}

.hero-content p { text-shadow: 1px 0 0 #000, 1px 1px 0 #000, 0 1px 0 #000, -1px 1px 0 #000, -1px 0 0 #000, -1px -1px 0 #000, 0 -1px 0 #000, 1px -1px 0 #000;
    font-size: 1.5em;margin-bottom: 30px;
}
 .btn  {
    background-color: #f5c518;
    color: #0e273b;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
	
}

.btn:hover {
    background-color: #333;
    color: white;
}

@media (max-width:700px){
	.hero-section {
   
}
}


/* Section contenu */
.content-section {
    padding: 50px 20px;
}

.content-section h2, .content-section h3 {
    margin-bottom: 20px;
    color: #0e273b;
}


.content-section .promo-section {
    background-color: #f5f5f5;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.price {
    color: #f5c518;
    font-weight: bold;
}

.contact-section {
    background-color: #0e273b;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {color: white;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {color: #f7a71a;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 100px;
    resize: none;
}

button.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn:hover {
    background-color: #0056b3;
}

.success-message {
    color: green;
    text-align: center;
    margin-bottom: 20px;
}

.error-message {
    color: red;
    text-align: center;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #0e273b;
    color: white;
    text-align: center;
    padding: 20px;
}

/* prix image et texte en flex box */
.grand-pere {max-width: 100%;
padding-left: 20px;
padding-right: 20px;
margin:auto;
height: auto;}
.parent {height: auto;display: flex;justify-content:space-around;align-items: center;align-content: center ;width: 100%;margin:  60px auto 40px;background:#0e273b;border:1px solid #ffffff;}
.btnparent:hover {background-color:#75ac42; transition:0.3s ease;border: 1px solid;border: none;}
.enfant1 {margin: 20px;}
.enfant1 p {font-size: 18px;line-height: 1.4;color: #ffffff;padding:0 20px;margin-bottom: 6px;}
.enfant1 strong {color: #FFD691;}
.enfant1 i {font-size: 10px;color:#FF6E80;margin-right: 10px;}
.enfant2 img {max-width: 400px;height: auto; margin: 10px ;padding: 20px;min-width: 400px;min-height: 400px;object-fit: cover;border-radius: 50%;border: 1px solid #ffffff;}
.container1 {margin: 20px auto;border: 1px solid #ffffff;padding:15px;}

.parent h2 {
    margin-bottom: 20px;
    color: #ffffff;
}
.parent h3 {
    margin-bottom: 20px;
    color: #ffffff;
}
.parent ul {
   
    color: #ffffff;
}

@media only screen and (max-width: 760px){

	  .parent{height: 100%; display: flex; flex-direction: column;width:100%;margin: 60px auto 40px;}
	  .enfant1  {order: 1;width: 100%;}
	  .enfant2 {order: 0; }
	  .enfant1 p {;width: 100%;font-size: 13px;padding: 0 10px ;line-height: 1.4;margin-bottom: 6px;}
	  .enfant2 img {max-width: 300px;margin: 10px;;min-width: 280px;min-height: 300px;object-fit: cover;}
	.enfant1 span {font-size: 14px;}
	.container1 {margin: 15px;padding:10px;}
	.parent h2 {font-size: 13px;font-weight: bold;
   padding: 0 10px;
}
.parent h3 {font-size: 13px;
   padding: 0 10px ;font-weight: bold;
}
  }



/* Style de base pour la bannière numero de telephone */


.banner {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: center;
    background-color: #0e273b;
    color: #f7a71a;
    padding: 20px;margin-top: 50px;margin-bottom: 50px;
    text-align: center;
}

.banner p {
    flex: 1;
   font-size: 1.2rem;
    margin: 0;
}

.icon {
    font-size: 1.5rem;
    color: #3bbcf7;
}

.buttons-numero {
    display: flex;
    gap: 15px;
}



/* Style des boutons */
.buttons-numero .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #f7a71a;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

/* Animation hover */
.btn:hover {
    background-color: #fac700;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Adaptabilité mobile */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .buttons-numero {
        justify-content: center;
        margin-top: 10px;
    }

   .buttons-numero .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .banner p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}








/* Zones desservies - Styles */
.zones-desservies-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    color: #333;
}

.zones-desservies-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #0078d4; /* Couleur accent */
}

.zones-desservies-section p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.zone-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.zone {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #0078d4;
}

.zone p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.zone:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .zones-desservies-section h2 {
        font-size: 1.75rem;
    }

    .zones-desservies-section p {
        font-size: 0.95rem;
    }
}


