/* Custom CSS for WebAhli.id styling adaptation */

.ingredient-item {
    position: relative;
    touch-action: none; /* prevent scrolling on touch devices */
}

.drop-active {
    border-color: #007bff;
}

.drop-target {
    background-color: #e9ecef;
}

.can-drop {
    opacity: 0.7;
}

:root {
    --primary-color: #d64d20; /* Example from webahli.id logo */
    --secondary-color: #d414f7; /* Example from webahli.id logo */
    --text-color: #333;
    --bg-color: #f8f9fa;
    --dark-text-color: #f8f9fa;
    --dark-bg-color: #343a40;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Source Sans Pro', sans-serif; /* Example font */
    color: var(--text-color);
    background-color: var(--bg-color);
}

main {
    flex: 1;
}

/* Add more custom styles here based on webahli.id analysis */

/* Blog Post Content Styling */
.post-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.post-content h2, 
.post-content h3, 
.post-content h4, 
.post-content h5, 
.post-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content blockquote {
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
    background-color: #f8f9fa;
    font-style: italic;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1.5rem 0;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1582474214963-d34233a5e522?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    padding: 10rem 0;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}