/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    background-color: #FAF9F6;
    color: #333;
}

/* Header Navigation */
.navbar {
    border-bottom: 2px solid #f2f2f2;
}

.navbar-brand {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-link {
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #E57C23;
}

/* Buttons */
.btn-dark {
    background-color: #E57C23;
    border: none;
}

.btn-dark:hover {
    background-color: #CF6D17;
}

/* Recipe Cards */
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: bold;
}

.card-body {
    padding: 15px;
}

/* Footer */
footer {
    background: #f2f2f2;
    padding: 20px;
    font-size: 16px;
}