.prata-regular {
    font-family: "Prata", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  nav {
    background-color: #ffffff;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border:1px solid black;
    font-family: "Prata", serif;
  }

  nav a {
    color: #000000;
    text-decoration: none;
    margin:  25px;

  }

  nav a:hover {
    text-decoration: underline;
  }

  .company-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-right:auto;
    color: black;
  }

  .contact-us {
    margin-left: auto;
    border: 2px solid black; /* Added border to the button */
    padding: 1%;
  }
  /* slider */
  #slider-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

#slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    color: #ffffff; /* Text color */
}

img {
    width: 99.9%;
    height: auto;
    border: 1px solid #000000; /* Added border to each image */
}

.slide-content {
    position: absolute;
    top: 90%;
    left:10%;
    transform: translate(-50%, -50%);
}

.slide-content h1 {
    margin-bottom: 10px;
    font-size: 24px; /* Adjust the font size as needed */
}

.slide-button {
    padding: 10px 20px;
    background-color: #4286f400; /* Button background color */
    color: #000000; /* Button text color */
    text-decoration: none;
    border: 2px solid black; /* Added border to the button */
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
}
/*slider end*/

/*Gallery*/
#gallery {
    border: 1px solid #000000;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
   
    border-radius: 5px;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
#product-list {
    border: 1px solid #000000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.product {
    box-sizing: border-box;
    width: 300px;
    margin: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #080808;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.product img {
    max-width: 100%;
    height: auto;
}

.product-title {
    font-size: 18px;
    margin: 10px 0;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    
}

.buy-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #db349b00;
    color: #000000;
    text-decoration: none;
    
    border:1px solid black;
    transition: background-color 0.3s ease;
}


/*Image */
.buy-button:hover {
    background-color: #2980b9;
}

.section-container {
    border:1px solid black;
    display: flex;
    max-width: 100%;
  
}

.image-container {
    flex: 1;
    overflow: hidden;
    padding: 1%;
}

.image-container img {
    width: 100%;
    height: auto;
  
}

.description-container {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
  
    text-align: center; 
}
.footer {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 20px;
    bottom: 0;
    width: 99.%;
    border: 1px solid black;
}

.footer a {
    color: #000000;
    text-decoration: none;
    margin: 0 15px;
}