body {
    background-color: #f5f1eb;
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
}

/* ===== Navbar ===== */
.navbar-custom {
    background-color: #b8713c;
    padding: 1.2rem 0;
}

.navbar-custom .nav-link {
    color: white !important;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    border-bottom: 2px solid white;
}

/* ===== Page Headings ===== */
.main-title {
    color: #6b4e3d;
    font-weight: normal;
    text-align: center;
    margin-top: 2rem;
}

/* ===== Search Input ===== */
.search-input {
    border: 2px solid #b8713c;
    border-radius: 25px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 1rem;
    background-color: white;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b8713c;
}

/* ===== Recipe Cards ===== */
.recipe-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
/* ===== Recipe Title Styling ===== */
.recipe-title {
    color: #b8713c;
    font-size: 2rem; /* larger */

}


/* ===== Links ===== */
a {
    color: #b8713c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8c542c;
    text-decoration: none;
}

/* ===== Buttons ===== */
.btn-custom {
    background-color: #b8713c;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #8c542c;
}

/* ===== Containers ===== */
.container {
    max-width: 80%;
    margin: auto;
    padding-bottom: 3rem;
}

/* ===== Recipe cards ===== */
.recipecard {
    margin: 50px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
}
.recipecard div {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recipecard div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.tab-pane{
    text-align: left;
    margin-left: 7.5%;
    margin-right: 7.5%;
}
