body {
    background-color: rgb(255, 255, 255);
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar-color {
    background-color: rgb(166, 123, 91); /* Coffee-brown color */
}

.elegant-heading-home {
    text-align: center;
    color: rgb(84, 60, 49);
    margin-top: 40px;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(84, 60, 49, 0.2);
    display: inline-block;
    padding-bottom: 10px;
}

.elegant-heading {
    text-align: center;
    color: rgb(84, 60, 49);
    margin-top: 30px;
    font-size: 48px;
    line-height: 1.3;
}


.product-card {
    background-color: #e0d8d1;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 300px;     /*Set the fixed height for the card */
    overflow: hidden; /* Ensure hidden content does not affect size */
}
.product-card img {
    width: 200px;
    position: absolute;
    top: 30px;
    left: 20px;
}
.product-title {
    color: rgb(84, 60, 49);
    font-size: 32px;
    margin-left: 240px;
}
.product-description {
    color: #555;
    font-size: 18px;
    margin-left: 240px;
}
.additional-description {
    color: #555;
    font-size: 16px;
    margin-left: 240px;
    display: none; /* Initially hidden */
}
.product-card.expanded .additional-description {
    display: block; /* Shown when expanded */
}

.product-text {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

.btn-brown {
    background-color: rgb(84, 60, 49);
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: background-color 0.3s ease;
}
.btn-brown:hover {
    background-color: rgb(100, 70, 60);
}

.btn-buy {
    background-color: rgb(84, 60, 49);
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 160px;
    transition: background-color 0.3s ease;
}
.btn-buy:hover {
    background-color: rgb(100, 70, 60);
}

.btn-brown-product {
    background-color: rgb(166, 123, 91);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 30px;
    padding-right: 30px;
    border-style: none;
    color: #ffffff;
}

.btn-brown-product:hover {
    background-color: rgb(197, 159, 130);
    color: black;
}

.carousel-inner img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 8px;
}

#demo {
    max-width: 900px;
    margin: auto;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
}

.carousel-caption h3, .carousel-caption p {
    color: #ffffff;
    margin: 0;
}

.links {
    background-color: rgb(243, 243, 243);
    padding: 40px 0;
}

.links h5 {
    font-weight: bold;
    color: rgb(84, 60, 49);
    font-size: 18px;
}

.links p, .links a {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
}

.content-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
    line-height: 1.8;
}
.icon {
    color: rgb(166, 123, 91);
    font-size: 24px;
    margin-right: 10px;
}
.content-card h3 {
    color: rgb(84, 60, 49);
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}
.content-card p, .content-card ul {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}
.content-card ul {
    padding-left: 20px;
}
.content-card li {
    margin-bottom: 15px;
}

.content-card img{
    align-items: center;
}

th, td {
    padding: 15px;
    padding-right: 30px;
}

.footer {
    background-color: rgb(243, 243, 243);
    text-align: center;
}