/* custom.css - Custom styles for Vicipe */

/* Refined Hero Section with Gradient */
.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
}

/* Interactive Recipe Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none; /* Optional: Remove default card border for a cleaner look */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Modern Typography for Headings */
h1, h2, h3, h4, h5 {
    font-family: 'Lobster', cursive;
}

/* Fluid body padding */
body {
    padding-left: 15px;
    padding-right: 15px;
}



.comment-form-container {
    transition: all 0.3s ease;
}

.comment-form .input-group {
    border-radius: 20px;
    overflow: hidden;
}

.comment-form textarea {
    border-radius: 20px 0 0 20px;
    resize: none;
}

.comment-form button {
    border-radius: 0 20px 20px 0;
}