/*  Home*/
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f6ff;
}

nav ol {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    background-color: rgb(219, 7, 134);
    overflow: hidden;
    /* display: flex; */
    
}

ol li {
    /* display: inline-block;  */
     float: left; 

} 

li a {
    color: white;
    text-decoration: none;
    padding: 15px;
     display: inline-block; 
    font-size: xx-large;
     transition: background-color 0.5s ease, color 0.5s ease; 
}

li a:hover {
    background-color: black;
    color: bisque;
    text-decoration: none;
}

.active {
    background-color: rgb(0, 163, 147);
}

.content {
    position: relative;
    /* width : 100%; */
    height: 800px;
    background-image: url(img/carousel-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 20px;
    margin-bottom: 90px;
}

.content:hover {
    background-image: url(img/carousel-1.jpg);
}

.hed {
    color: rgb(0, 163, 147);
    text-align: center;
    text-decoration: underline;
    margin-top: 10px;
    font-family:Arial, sans-serif;
    font-weight: bold;
}

.hed:hover {
    color: #333;
}
 



          /*About */

.header {
    background-image: url('img/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* box-sizing: border-box; */
    height: 60vh;
    display: flex;
    justify-content: center;/*left */
    align-items: center;/*up & down*/
    /* text-align: center; */
    /*center of the top*/
    color: white;
  
}


.header-content {
    background-color: rgba(0, 0, 0, 0.5); 
    /* Semi-transparent background for better text readability */
    padding: 20px;
    border-radius: 10px;
}

.header h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;

}

.header nav {
    margin-top: 10px;
}

.header nav a {
    text-decoration: none;
    color: white;
     margin: 10px;
}

.header nav a:hover {
    text-decoration: underline;
}

 .section {
    padding: 80px 50px;
    text-align: center;
    font-size: large;

}

.textBelow h3 {
    margin-bottom: 90px;
    font-size: 3rem;
    font-weight: bolder;
    color: #333;
    background-color: #ff69b4;
}

.contentt {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.about, .features {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background-color: white;
    padding: 30px 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 10px;
}
.about #test1, .features #test2 {
    background-color:rgb(0, 163, 147);
    margin-bottom: 25px;
    font-weight: bolder;
}
.about #year1, .features #year2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: lighter;
}

.about button, .features button {
    background-color:rgb(0, 163, 147);
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

ul li span {
    color: rgb(0, 163, 147);
    margin-right: 10px;
}
button:hover {
    background-color: #0097a7;
} 


/* open form tablets */
  @media (max-width: 768px) {
    .textBelow h3 {
        font-size: 20px;
    }

    .contentt {
        flex-direction: column;
        align-items: center;
    }

    .about, .features, .image {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .about h2, .features h2 {
        font-size: 20px;
    }

    .about p {
        font-size: 14px;
    }

    .features ul {
        font-size: 14px;
    }
} 

/* open form mobile phones */
@media (max-width: 480px) {
    .textBelow h3 {
        font-size: 18px;
    }

    .contentt {
        padding: 10px;
    }

    .about, .features, .image {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }

    .about h2, .features h2 {
        font-size: 18px;
    }

    .about p {
        font-size: 12px;
    }

    .features ul {
        font-size: 12px;
    }
} 

 

/* Product */

.product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    padding: 20px;
}

.product-item {
    /* display: flex; */
   /* width: 350px;
    height: 250px; */
    overflow: hidden;
    /* position: relative; */
    border: 15px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;

}

.product-item img {
    width: 100%;
    border-radius: 10px;

}

.product-item:hover img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

/* Price*/
      /* bootstrap */

/* Gallery */

/* Contact Us*/

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    margin-bottom: 100px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    justify-content: space-between;
    
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
    box-sizing: border-box; 
    font-family: Arial, sans-serif;
}

 
.contact-form textarea {
    resize: none;
    height: 150px;
} 

.contact-form button {
    width: 100%;
    padding: 15px;
    background-color: #ff69b4; ;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #f06292 ;

}
 


/*footer*/

.footer {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo h1 {
    font-size: 35px;
    color: #ff69b4;
    margin: 50px;
    font-weight: bold;
}


.footer-social a {
    color: rgb(0, 163, 147);
    font-size: 25px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff69b4; 
}

.footer-info {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.footer-info div {
    text-align: left;
    padding: 0 20px;
}

.footer-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 20px;
    color: #555;
}


@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-info div {
        padding: 10px 0;
    }
}