/*
Theme Name: Sydney Child
Theme URI: http://athemes.com/theme/sydney
Author: aThemes
Author URI: http://athemes.com
Template: sydney
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sydney
*/

/* --- Recipe Archive Styling --- */
.recipe-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
	border: #acacac solid 1px;
    padding: 15px;
}

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

.recipe-thumb-container img {
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-thumb-container img {
    transform: scale(1.05);
}

/* --- Single Recipe Styling --- */
/* Hero Image */
.recipe-hero img {
    border-radius: 8px;
}

/* Meta Data Box */
.recipe-meta-box {
    background-color: #f9f9f9; /* Very light gray */
}

.meta-item {
    flex: 1;
    min-width: 80px;
}

/* Ingredients Checkbox */
.recipe-ingredients .form-check-input {
    border-color: #d32f2f;
    cursor: pointer;
}

.recipe-ingredients .form-check-input:checked {
    background-color: #d32f2f;
    border-color: #d32f2f;
}

.recipe-ingredients li {
    border-bottom: 1px dashed #ddd;
}

.recipe-ingredients li:last-child {
    border-bottom: none;
}

/* Instructions */
.recipe-steps p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

/* Typography Tweaks for Sydney */
.section-title {
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Responsive Sidebar spacing */
@media (max-width: 767px) {
    #secondary {
        margin-top: 40px;
    }
    .meta-item {
        border: none !important; /* Remove borders on mobile for cleaner stack */
        margin-bottom: 10px;
    }
}
/* Layout CHATGPT
.recipe-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
}

.recipe {
    display: block;
}

.recipe-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.recipe-hero {
    margin: 1rem 0;
}

.recipe-hero img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Description 
.recipe-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Badges 
.recipe-badges {
    margin: 0.5rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 999px;
    background: #f2f2f2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge.cuisine {
    background: #e3f2fd;
}

.badge.diet {
    background: #e8f5e9;
}

.badge.method {
    background: #fff3e0;
}

/* Meta (time + servings) 
.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
    color: #444;
}

.recipe-meta div {
    display: flex;
    ali
