html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Hero Section */
.hero-section {
    background-color: #fff8f0;
    border: 1px solid #f0e0cc;
    padding: 2.5rem;
}

/* Recipe Cards */
.recipe-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.recipe-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px);
}

/* Recipe text (ingredients / instructions) */
.recipe-text {
    white-space: pre-wrap;
    font-size: 1.05rem;
    line-height: 1.75;
    font-family: inherit;
}

/* Navbar tweaks */
.navbar-dark .nav-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}
