/* Fonts */
body {
    font-family: "Lora", serif;
    background-color: #FAF9F6;
}


.contact-info {
    font-size: 12px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;

}

.contact-info-footer {
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.first-nav {
    background-color: #36454F;
    color: white;
}

.navbar-nav {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-nav :hover {
    color: grey;
    font-size: 16px;
}

.navbar-item {
    color: #fff;
}

.dropdown-item :hover {
    color: grey;
    animation-duration: 1s;
}

.nav-link :hover {
    color: grey;
}

.section {
    background-color: #E5E4E2; 
    color: #191970; 
    padding: 50px;
  }

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%; 
}

.text-end {
    display: flex;
    align-items: right;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links li :hover {
    color: grey;
    font-size: 16px;
}


.footer {
    background-color: #36454F; 
    color: #FAF9F6; 
    padding: 8px; 
}


.footer p {
    text-align: center;
}

.c-item {
    max-height: 600px; /* Set a maximum height for smaller screens */
}

.carousel-item img {
    width: 100%;
    height: auto; /* Allow the height to adjust according to the aspect ratio */
    object-fit: cover;
}

.image-fluid {
    max-height: 100%;
    object-fit: cover;
    width: auto;
    height: auto;    
}

.carousel-item {
    transition: opacity is ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.head-font {
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

.head-font-1 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.text-container {
    background-color: #C19A6B;
}

.text-container-1 {
    background-color: #fffdd0;
    color: black;
}

.header-container {
    background-color: #C0C0C0; 
}

.header-text {
    color: #191970;
}

.header-container-2 {
    background-color: #E5E4E2;
}

.content-container {
    margin: 15px;
}

.content-container-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn {
    background-color: #6495ED;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.company-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.company-logo {
    width: 150;
    height: 150;
}

.btn-product {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
}

.contact-section {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px; 
    background-color: #C19A6B; 
    color: black;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: black
}

.button:hover {
    background-color: black;
    color: #fff;
}

input[type="submit"] {
    background-color: #FAF9F6;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}

input[type="submit"]:hover {
    background-color: #343a40;
    color: #FAF9F6;  
}

.product-div {
    height: 100%;
}

.product-div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Add rounded corners */
    margin-bottom: 20px;
    box-sizing: border-box; /* Ensure padding and border are included in width */
}

.carousel-caption {
    font-size: 14px;
}

.rounded-div {
    border-radius: 10px; 
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
