@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

body {
    background-color: #fdf6e3;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: #d35400;
    text-transform: uppercase;
    text-align: center;
}

.recette-title {
    text-align: left;
    border-bottom: 4px solid #e67e22;
    display: inline-block;
}

.container {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.recette-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.recette-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.btn-custom {
    background-color: #e67e22;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: #d35400;
    color: white;
}

.content-box {
    background: #fcfcfc;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #e67e22;
}

.sidebar {
    background-color: #fffaf0;
    border: 1px solid #ffeaa7;
}

h3 {
    color: #e67e22;
    margin-top: 30px;
}

h3::before { content: "🌴 "; }

.form-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}