@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pangolin&family=Poppins&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-family: "Nunito", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
}

/* Header -------------------Header-------------------Header-------------------------Header----------------------- */
/* Header --------------Header--------------------------Header------------------------Header--------------------- */
/* Header ---------------Header---------------------------Header------------------------Header-------------------- */

header {
    position: fixed;
    width: 100%;
    height: 70px;
    z-index: 1000;
    top: 0;
    left: 0;
    background: rgb(232, 219, 219);
    box-shadow: 0 0 10px #422680;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #422680;
    color: #422680;
    font-size: 30px;
    padding: 3px;
}

.logo span {
    color: #f54952;
}

.logo img {
    width: 40px;
    margin-left: 10px;
    margin-right: 10px;
}

nav {
    display: flex;
    gap: 6em;
}

nav a {
    color: #422680;
    font-size: 18px;
    font-weight: 600;
}

header button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ae2d68;
    font-size: 17px;
    font-weight: 700;
    border: 1px solid #422680;
    border-radius: 10px;
    padding: 7px 20px;
    cursor: pointer;
    transition: 0.6s;
}

header button i {
    margin-right: 10px;
}

header button:hover {
    box-shadow: 0 0 4px black;
    background: rgb(218, 191, 191);
}

nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 1.5px;
    background: #422680;
    transition: 0.6s;
}

nav a:hover::after {
    width: 100%;
}

.menu {
    width: 45px;
    border: 2px solid #422680;
    color: gray;
    border-radius: 5px;
    position: absolute;
    right: 15px;
    height: 45px;
    display: none;
    cursor: pointer;
}

/* Home Section ---------------------------------------------------------------------------------------------------------- */
/* Home Section ---------------------------------------------------------------------------------------------------------- */
/* Home Section ---------------------------------------------------------------------------------------------------------- */

.home {
    background: rgb(226, 218, 218);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.home h1 {
    font-size: 40px;
    color: #422680;
    letter-spacing: 15px;
    text-transform: uppercase;
}

.home h1 .span1 {
    font-size: 60px;
    color: #f54952;
    letter-spacing: 30px;
    text-transform: uppercase;
}

.img2 {

    rotate: 10deg;
    height: 400px;
    cursor: pointer;
    transition: .5s;
}

.home img:hover {
    transform: scale(1.04);
}

/* Product Section ----------------------------------------------------------------------------------------------- */
/* Product Section ----------------------------------------------------------------------------------------------- */
/* Product Section ----------------------------------------------------------------------------------------------- */

.product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.heading {
    color: #422680;
    font-size: 30px;
}

.card-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2em;
    width: 100%;
    padding: 60px 5% 20px 5%;
}

.card-container>* {
    width: 30%;
}

.card img {
    height: 250px;
    transition: all .3s linear;
    cursor: pointer;
    filter: brightness(120%);
}

.card h3 {
    margin-top: 20px;
    color: #1d3557;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background: rgb(232, 219, 219);
    outline: .05rem solid gray;
    outline-offset: -0.5rem;
    transition: all .2s linear;
}

.card:hover {
    outline: .105rem solid #422680;
    outline-offset: 0;
}

.price {
    display: flex;
    gap: 0.5em;
}

.card i {
    color: #457b9d;
}

.card img:hover {
    transform: scale(1.1);
}

.card button {
    margin: 10px 0 20px 0;
    padding: 7px 20px;
    color: #f1faee;
    background: #ec9a9a;
    background: #f54952;
    cursor: pointer;
    font-weight: 700;
    border: none;
    transition: all .3s linear;
}

.card button:hover {
    background: #e63946;
    box-shadow: 0 0 5px black;
    transform: scale(1.1);
}

.card .stars {
    display: flex;
    gap: .6em;
    margin-bottom: 8px;
}

.card .price p {
    font-size: 18px;
    color: #ec9a9a;
    font-weight: 700;
}

.card .content {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 80vh;
    background: pink;
}

.card .content .photos {
    width: 70%;
}

.card .content .content-title {
    width: 30%;
}

.card .content>* {
    border: 1px solid red;
}

.card .content {
    display: flex;
    gap: 1em;
    padding: 10px;
    z-index: 900;
}

.card .content .photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    justify-content: space-evenly;
}

.card .content .photos .photos-title img {
    width: 100px;
    height: 90px;
    object-fit: cover;
}

.card .content img {
    width: 350px;
    height: 200px;
    object-fit: cover;
}

/* Testimonials ------------------------------------------------------------------------------------------------ */
/* Testimonials ------------------------------------------------------------------------------------------------ */
/* Testimonials ------------------------------------------------------------------------------------------------ */

.testimonials .heading {
    margin: 120px 0 40px 0;
    color: #1d3557;
    font-size: 33px;
}

.testimonials {
    display: flex;
    gap: 5em;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
    background: rgb(232, 219, 219);
}

.test-container {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 2em;
    width: 100%;
}

.test-container>* {
    position: relative;
    outline: 1px solid gray;
    outline-offset: -0.5rem;
    width: 25%;
    height: 250px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}

.testimonials img {
    width: 100px;
    border: 3px solid #422680be;
    padding: 2px;
    border-radius: 50%;
}

.test-container .test-card i {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #432680be;
    font-size: 40px;
    filter: brightness(75%);
}

.test-container .test-card:hover {
    transform: translateY(-15px);
}

.test-card p {
    width: 80%;
    text-align: center;
    font-size: 13px;
}

/* Section Contact ------------------------------------------------------------------------------------------- */
/* Section Contact ------------------------------------------------------------------------------------------- */
/* Section Contact ------------------------------------------------------------------------------------------- */

.contact {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5% 0;
}

.map {
    height: 450px;
    width: 50%;
    border: 1px solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen {
    height: 95%;
    width: 95%;
}

.contact-content {
    width: 25%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    gap: 1em;
    background: rgb(232, 219, 219);
}

.contact-content h4 {
    font-size: 20px;
}

.contact-content p {
    font-size: 14px;
    line-height: 0;
    margin-left: 20px;
}

/* Footer --------------Footer-------------Footer-------------Footer--------------Footer-----------Footer-------- */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: 40px;
    background: rgb(232, 219, 219);
}

footer span {
    color: orange;
    font-size: 16px;
}

footer div {
    font-size: 12px;
}

.icons{
    display: flex;
    gap:0.5rem;
    padding: 2px;
}

.icons > *{
    font-size: 16px;
    transition: 0.6s;
}

.icons > *:hover{
    transform: scale(1.2);
}

.fa-linkedin{
    color: #0A66C2;
}

.fa-square-facebook{
    color:#0866FF;
}

.fa-github{
    color:black;
}

