/* red B20100 
    brown #452425
*/

body {
    background-color: rgb(255, 255, 255);
    color: #452425;
    
}
main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
h1 {
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
}
h1,h2 {
    text-decoration: underline;
    font-weight: bold;
}
h1 {
    text-decoration: none;
    color: black;
    z-index: 100;
    margin-bottom: 2rem;
    font-weight: 700;
}
/* HERO
----------------------------------------------- */
.hero {
    padding: 20vh 3vw 20vh 3vw;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    background-image: url(/images/hero1redo.webp);
    background-position: top-center;
    background-size: cover;
    color: black;
    position: relative;
    
    button {
        margin-top: 3rem;
        background-color: hsla(175 100% 100% / 0.20);
        border: solid black  1px;
        color: black;
        border-radius: 0.4rem;
        z-index: 10;
    }
}


.button-list {
    display: flex;
    /* flex-direction: column; */
    
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    button {
        padding: 0.7rem;
    }

    }
.cta-hero {
    /* transform: translateX(-100%); */
}
.second-button {
    /* transform: translateX(100%); */
}
.cta-hero, .second-button {
    transition: transform 1.2s ease-in-out;
}
.cta-hero.show, .second-button.show {
    transform: translateX(0);
}


/* FAMILY BUSINESS
----------------------------------------------- */
.family-business {
    margin-top: -3rem;
   
}
.shop-close-up {
    /* margin-top: -3rem; */
    height: 15rem;
    object-fit: cover;
    object-position: center;
        width: 100%;

    
}

 /*  appliances
----------------------------------------------- */
.appliance-images {
    display: flex;
    flex-direction: column;
    gap: 4rem;

}
.card {
    display: flex;
    border: #232323 solid 2px;
    border-radius: 1rem;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
    .card-text {
        padding: 0 3rem;
        gap: 2rem
    }
    .card-image {
        max-height: 30vh;
        align-self: stretch;
        overflow: hidden;
        img {
            object-fit: cover;
            width: 100%;
        }
    }
}

.individual-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
/* 
----------------------------------------------- */
.standout-delivery {
     background-color: #232323;
    color: rgb(194, 194, 194);
}

.truck-kun.hidden {
    width: 20%;
    margin: auto;
    transform: translateX(-200%);
    transition: transform 600ms ease-in-out;

}
.truck-kun.show {
    transform: translateX(0);
}

@media screen and (min-width:1100px) {
  .foggy-glass-container {
    padding: 0 20vw;
   
    p {
        margin-bottom: 15vh;
    }
  }
    
    
    
    main {
        gap: 8rem;

    }
    .second-to-last-image {
        width: 50%;
        margin: auto;
        border-radius: 2rem;
    }
   
    .family-and-image {
        display: flex;
        justify-content: space-around;
        
        img {
            max-width: 40%;
            border-radius: 1.2rem;
        }
    }
    .appliance-images {
        flex-direction: row;
    .card {
        width: 30%;
    }
    .card-image {
        flex-grow: 1;
        img {
            object-fit: cover;
            height: 100%;
        }
    }
    
    
    
    
    
    }
    .appliances-examples {
        button {
            align-self: center;
            width: 100%;
            
        }
    }
    .standout-delivery {
        img {
            max-width: 10%;
        }
        button {
            margin-bottom: 10%;

        }
        
    }
    
}
.normal-container {
    a {
        align-self: center;
    }
}