
/* This is the Styling for the whole WebPage */

body {
    font-family: 'Georgia', serif;
    background-color: #242d36;
    color: #383737;
    margin: 0;
    padding-bottom: 60px; 
}
     /* Styling for the Header */ 
header {
    position: relative;
    background: linear-gradient(to right, #242d36, #fff); 
    padding: 10px; 
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    color: #90b0d8;
    text-align: center; 
}
    /* Styling for the Logo shape  */
.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 15%; 
    height: auto; 
    border-radius: 8px; 
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); 
}

.logo h1 {
    font-size: 2rem;
    margin: 0;
    color: #e1e7ef;
}

nav {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(-50%, -50%);
}
  /* Navigation bar styling  */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #232323;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #efeded;
}

/* Slideshow and Container Styling  */
.slideshow {
    display: flex;
    overflow: hidden; 
}

.slider-container {
    width: 100%; 
    display: flex; 
    transition: transform 0.5s ease-in-out; 
}

.slide {
    flex: 0 0 33.33%; 
    height: 400px; 
    background-size: cover;
}

.hero {
    background-color: #242d36;
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #efeded;
}

.hero p {
    font-size: 1.5rem;
    color: #efeded;
}

.featured-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: #efeded;
}

.product-card {
    width: 300px; 
    margin: 15px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
}

.price {
    font-weight: bold;
    color: #efeded;
}

.contact h2 {
    font-size: 2em;
    color: #efeded;
    margin-bottom: 20px; 
}

.contact p {
    color: #c98989;
}
   /* Contact Page Section Styling */

.contact {
    padding: 30px 0;
    text-align: center;
}

.contact-info {
    margin-top: 10px;
}

.contact-info p {
    font-size: 1em;
    margin: px 0;
}

.contact-info a {
    color: #aac4ec;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-info a:hover {
    color: #efeded; 
}


.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
     
/* Featured Products and their Cards Section Styling */
.featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    padding: 10px 50px; 
    color: #efeded;
    text-align: center; 
    border-radius: 20px; 
}

.product-card {
    width: 100%; 
    margin: 15px auto; 
    text-align: center;
}

.product-card img {
    width: 100%; 
    max-width: 100%; 
    height: auto; 
}


.product-card {
    width: 100%; 
    margin: 15px auto; 
    text-align: center;
}

/* Collaboration  Section Styling */
.collaboration {
    background-color: #242d36; 
    color: #b6cdff; 
    padding: 50px 0; 
}

.collaboration h2 {
    font-size: 2rem; 
    margin-bottom: 20px; 
}

.collaboration p {
    font-size: 1.2rem; 
    margin-bottom: 20px; 
}

.collaboration ul {
    list-style: none; 
    padding: 0; 
}

.collaboration li {
    margin-bottom: 10px; 
}

.collaboration a {
    color: #7badf7; 
    text-decoration: none; 
    transition: color 0.3s ease-in-out; 
}

.collaboration a:hover {
    color: #dfe6ff; 
}

  /* Styling for the footer  */

.footer {
    background-color: #242d36; 
    color: #b6cdff; 
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.8em; 
    border-top: 2px solid #90b0d8;
    
}



