/* LEYENDA COMENTARIOS
    -MAYÚSCULAS: pertenecen a un grupo.
    -minúsculas: pertececen a un grupo de MAYÚSCULAS */
/* TIPOGRAFÍA ASAP GOOGLE FONTS */
  @import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,300;0,500;0,700;0,900;1,300;1,500;1,700;1,900&display=swap');
/* RESET CSS */
*,
*::before,
*::after{
    box-sizing: border-box;
}
/* CUSTOM COLORS PROPERTIES */
:root{
    --negro-generico: #000000;
    --naranja: rgb(255, 149, 0);
    --gris-claro: #d6d4d4;
    --gris-medio: #7f7f7f;
}
/* ANIMACIÓN LOGO*/
.animate__animated {
    display: inline-block;
    margin-top: 0.3rem;
    margin-bottom: 0.3px;
    animation: bounce;
    animation-duration: 5s; 
  }
/* GENERALS CSS*/
body{
    font-family: 'Asap', sans-serif;
    background-color: var(--negro-generico);
}
a{
    font-size: .9rem;
    text-decoration: none;
}
h1{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--negro-generico);
    text-align: center;
}
h2{
    font-size: 1.3rem;
    font-weight: 700;
}
h3{
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    color: var(--negro-generico);
}
h3 a{
    font-size: 1.5rem;
}
p{
    font-size: 1rem;
    font-weight: 500;
}
span{
    font-style: italic;
    font-weight: 700;
}
/* MENÚ NAVEGACIÓN */
.navbar-toggler:focus {
    box-shadow: none; 
 }
.navbar-toggler {
     border: none; 
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='gray' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler-icon:hover{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF8000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.Logo-secundario{
    width: 70%;
}
/* PRESENTACIÓN LOGO PRINCIPAL */
#logo{
    background-color: #000;
    background-image: url("../img/Fondo-logo-negre.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 55vh;
}
/* SERVICIOS */
#servicios{
    background-color: var(--negro-generico);
    background-image: url("../img/fons_serveis_bn.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.card-footer{
    border-top: none;
    background-color: transparent;
}
.card{
    border: 0;
}
.trabajamos{
    padding-top: 40px;
    color: var(--negro-generico);
}
.trabajamos a{
    color: var(--negro-generico);
}
.trabajamos a:hover{
    color: var(--naranja);
    text-shadow: 1px 1px 2px black;
}
.btn, .btn-dark{
    background: var(--gris-medio);
    color: white;
    border: none;
}
.btn-dark:hover{
    color: var(--naranja);
}
li a.nav-link:hover{
    color: var(--naranja);
}
/* CARRUSELS GALERIES */
.carousel-item{
    overflow: hidden;
}
.carousel-item p {
    font-size: 1rem;
    color: var(--naranja);
    text-align: center;
    margin-bottom: 30px;
    margin-top: 15px;
}
.carousel-item a{
    font-size: 1rem;
    color: var(--naranja);
    text-align: center;
    margin-bottom: 30px;
    margin-top: 15px;
}
.carousel-item b{
    color:#fff;
}
.carousel-indicators {
    bottom: -75px;
}
.carousel-indicators [data-bs-target]{
    background-color: var(--naranja);
    margin-bottom: 15px;
}
/* FORMULARI CONTACTE */
.container_form{
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}
.politica{
    margin-top: 1rem;
    font-size: .8rem;
}
p.politica{
    color: #fff;
    font-size: .8rem;
    text-align:justify;
    hyphens: auto;
    letter-spacing: 0.09em;
}
.politica b{
    color: var(--gris-medio);
    font-size: .9rem;
    letter-spacing:0.02em;
}
.politica a{
    font-style: italic;
    color: var(--gris-medio);
    font-size: .9rem;
    letter-spacing:0.02em;
}
.politica a:hover{
    color: var(--naranja);
}
/* EESTILS FORMULARI */
.form-control{
    padding: 10px;
    border: none;
    transition: box-shadow 0.3s ease;
}
#telefono-error, #nombre-error, #correo-error, #comentario-error, #politica-error{
    color: var(--naranja);
    font-size: .9rem;
}
label{
    color: #fff;
    font-size: 1.2rem;
}
input, textarea{
    outline: 1.5px solid var(--naranja);
}
textarea{
    padding: 500px;
}
input[type="checkbox"]:checked {
    border: none;
    background-color: var(--naranja);
}
.form_destacat{
    color: var(--naranja);
}
.form-control:focus, input[type="checkbox"]:checked {
    box-shadow: 0 0 20px var(--naranja);
}
/* FOOTER */
footer{
    background-color: #000;
    color:var(--gris-medio);
    height: 15vh;
}
footer ul li a{
    color:var(--gris-medio);
    border-bottom: none;
}
footer ul li a:hover{
    color: var(--naranja);
    text-decoration: none;
}
footer ul li:not(:last-child)::after{
    content: " · ";
    font-size: 1.2rem;
    padding-left: .5rem;
    color: var(--naranja);
}
footer p{
    font-size: .9rem;
}
/* MEDIA RESPONSIVE IMPLOSIONART WEB */
@media(min-width: 668px){
    #logo{
        height: 90vh;
    }
    .container_foto{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 70px;
        padding-bottom: 100px;   
    }
    h1{
        font-size: 2rem;
    }
    .carousel-inner {
        position: relative;
        width: 567px;
        overflow: hidden;
    }
    .container_form{
        width: 50%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    a{
        font-size: 1rem;
    }
    h2{
        font-size: 1.5rem;
    }
    h3 a{
        font-size: 1.8rem;
    }
    p{
        font-size: 1.2rem;
    }
    footer p{
        font-size: 1rem;
    }
}
@media(min-width: 1000px){
    .container_form{
        width: 80%;
    }
}
@media(min-width: 1200px){
    .container_form{
        width: 40%;
    }
}
/* POLÍTICA DE COOKIES */
.container_cookies {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}  

.container_cookies h1{
    color: var(--naranja);
    font-weight: 900;
    margin-top: 30px;
    text-align: left;
}
.container_cookies h2, a{
    color: var(--gris-medio);
}
.container_cookies a{
    font-size: 1rem;
    font-weight: 700;
}
a:hover{
    color: var(--naranja);
} 
.container_cookies p,
.container_cookies ul {
    color: white;
    text-align: justify;
    hyphens: auto;
    font-size: 1rem;
}
/* Cambiar el color del punto (bullet)*/
.container_cookies ul li {
    list-style: none;
    padding-left: 20px; 
    position: relative;
}
/* Cambiar el color de los bordes de la tabla */
#miTabla {
    border: 2px solid var(--naranja);
}
#miTabla td,
#miTabla th {
    color: black;
}
.container_cookies ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px; 
    height: 5px;
    background-color: var(--naranja); 
    border-radius: 50%;
}
@media(min-width: 668px){
    .container_cookies{
        width: 70%;
    }
}
@media(min-width: 900px){
    .container_cookies{
        width: 60%;
    }
}
@media(min-width: 1200px){
    .container_cookies{
        width: 50%;
    }
    .container_cookies dt, 
    .container_cookies li{
        font-size: 1rem;
    }
}
/* AVISO LEGAL Y POLITICA DE PRIVACIDAD*/
.container_cookies dt{
    color: var(--gris-medio);
    
}
/* SUBGALERIAS -> SOBRE IMPLOSIONART */
.container_implosionart {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.logo_implo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.textos_galerias h1{
    color: var(--naranja);
    text-align: left;
}
.textos_galerias h2{
    color: var(--naranja);
}
.textos_galerias h3{
    color: white;
    text-align: left;
}
.destacat_galerias{
    color: white;
}
.textos_galerias p{
    color: white;
    font-weight: 300;
    font-size: 1rem;
    text-align: justify;
    justify-content: left;
    hyphens: auto;
}
.textos_galerias span{
    color: var(--gris-medio);
}
/* responsive sobre implosionart */
@media (min-width: 1000px) {
    .container_implosionart {
        width: 90%;
        flex-direction: row;
        justify-content: center;
        align-items:start;
        text-align: left;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .logo_implo {
        margin-right: 40px;
        max-width: 500px;
    }
    .textos_galerias {
        max-width: 40%;
    }
}
/* SUBGALERIAS -> SOBRE MI */
.container_sobremi{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.container_sobremi>.textos_galerias span{
    color: var(--naranja);
}
.container_sobremi h3{
    color: var(--gris-medio);
}
.container_sobremi img{
    margin-top: 45px;
}
/* responsive sobre mi */
@media (min-width: 1000px) {
    .container_sobremi {
        
        flex-direction: row;
        justify-content: center;
        align-items:start;
        text-align: left;
        margin-top:50px;
        margin-bottom: 100px;
    }
    .logo_implo {
        margin-right: 40px;
        max-width: 500px;
    }
    .textos_galerias {
        max-width: 40%;
        margin-top: 36px;
    }
}
/* FEEDBACK */
.main_feedback{
    display: flex;
    justify-content: center;
}
.container_feedback{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 15px;
}
.container_feedback p{
    font-size: 1.3rem;
    hyphens: auto;
    color: var(--negro-generico);
    align-items: center;
    text-align: justify;
    background-color: var(--naranja);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 50px;
}
.container_feedback img{
    width: 130px;
}
.footer_feedback{
    display: flex;
    justify-content: center;
}
.container_feedback b{
    color: white;
}