* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9, #a5d6a7);
    background-attachment: fixed;
    color: #1a2a1a;
    padding-top: 90px;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 187, 106, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(46, 125, 50, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
}

.logo {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #1b5e20, #43a047, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo i {
    color: #2e7d32;
    margin-right: 8px;
    -webkit-text-fill-color: #2e7d32;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1a2a1a;
    font-weight: 500;
    position: relative;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    transition: .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #2e7d32;
}

#dark {
    background: rgba(46, 125, 50, 0.08);
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #1a2a1a;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dark:hover {
    background: rgba(46, 125, 50, 0.2);
    color: #2e7d32;
    transform: rotate(30deg) scale(1.05);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.dark {
    background: #0d1a0d;
    color: #d8e8d0;
}

.dark body {
    background: linear-gradient(135deg, #0d1a0d, #1a2f1a, #0d1a0d);
}

.dark body::before {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 187, 106, 0.08) 0%, transparent 50%);
}

.dark header {
    background: rgba(13, 26, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46, 125, 50, 0.12);
}

.dark .nav-links a {
    color: #d8e8d0;
}

.dark .nav-links a:hover {
    color: #66bb6a;
}

.dark #dark {
    color: #d8e8d0;
    background: rgba(102, 187, 106, 0.08);
}

.dark #dark:hover {
    background: rgba(102, 187, 106, 0.2);
    color: #66bb6a;
}

.dark footer {
    background: #080f08;
}


.resep-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 1;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 40px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.25);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-back:hover::before {
    left: 100%;
}

.btn-back:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateX(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.35);
}

.btn-back i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-back:hover i {
    transform: translateX(-5px);
}

.resep-header-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 45px 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.resep-header-split::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.06), transparent 70%);
    border-radius: 50%;
    animation: floatBg 8s ease-in-out infinite alternate;
}

@keyframes floatBg {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 20px) scale(1.1); }
}

.resep-header-split::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 187, 106, 0.04), transparent 70%);
    border-radius: 50%;
    animation: floatBg2 10s ease-in-out infinite alternate;
}

@keyframes floatBg2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -20px) scale(1.15); }
}

.resep-header-left {
    position: relative;
    z-index: 1;
}

.resep-header-left .emoji-badge {
    font-size: 60px;
    display: inline-block;
    margin-bottom: 10px;
    animation: floatEmoji 3.5s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(46, 125, 50, 0.15));
}

@keyframes floatEmoji {
    0%, 100% { 
        transform: translateY(0px) rotate(-3deg) scale(1); 
    }
    50% { 
        transform: translateY(-14px) rotate(3deg) scale(1.05); 
    }
}

.resep-header-left h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a2a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.resep-header-left h1 .highlight-green {
    background: linear-gradient(135deg, #1b5e20, #43a047, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.resep-header-left h1 .highlight-green::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    border-radius: 10px;
    opacity: 0.2;
}

.resep-header-left .subtitle-green {
    font-size: 16px;
    color: #6a8a6a;
    margin-bottom: 18px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.resep-header-left .divider-green {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a, #a5d6a7);
    border-radius: 10px;
    margin-bottom: 20px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.resep-meta {
    display: flex;
    gap: 15px;
    color: #4a6a4a;
    font-size: 15px;
    flex-wrap: wrap;
}

.resep-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    font-weight: 500;
    border: 1px solid rgba(46, 125, 50, 0.06);
    transition: all 0.3s ease;
}

.resep-meta span:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.08);
    border-color: rgba(46, 125, 50, 0.15);
}

.resep-meta i {
    color: #2e7d32;
    font-size: 16px;
}

.resep-meta .meta-category-green {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
}

.resep-meta .meta-category-green i {
    color: white;
}

.resep-meta .meta-rating-green {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-color: #a5d6a7;
}

.resep-meta .meta-rating-green i {
    color: #f5a623;
}

.resep-header-right {
    position: relative;
    z-index: 1;
}

.resep-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.resep-image-card:hover {
    transform: scale(1.02) rotate(-1.5deg);
    box-shadow: 0 25px 60px rgba(46, 125, 50, 0.15);
}

.resep-image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.resep-image-card:hover img {
    transform: scale(1.05);
}

.resep-image-card .image-badge-green {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.resep-image-card .image-badge-green i {
    font-size: 12px;
}


.resep-info-badge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.resep-info-badge .badge-item-green {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 22px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(46, 125, 50, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.resep-info-badge .badge-item-green:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.resep-info-badge .badge-item-green i {
    font-size: 32px;
    color: #2e7d32;
    display: block;
    margin-bottom: 10px;
}

.resep-info-badge .badge-item-green .label-green {
    font-size: 12px;
    color: #6a8a6a;
    display: block;
    font-weight: 300;
}

.resep-info-badge .badge-item-green .value-green {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a1a;
}


.resep-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 10px;
}

.resep-ingredients {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(46, 125, 50, 0.06);
    position: sticky;
    top: 100px;
    height: fit-content;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.resep-ingredients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a, #a5d6a7);
}

.resep-ingredients:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(46, 125, 50, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.resep-ingredients h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a1a;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(46, 125, 50, 0.15);
}

.resep-ingredients h3 i {
    color: #2e7d32;
    font-size: 24px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.08);
}

.resep-ingredients .total-items-green {
    font-size: 13px;
    color: #6a8a6a;
    font-weight: 400;
    margin-left: auto;
    background: rgba(46, 125, 50, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
}

.resep-ingredients ul {
    list-style: none;
    padding: 0;
}

.resep-ingredients ul li {
    padding: 14px 0 14px 10px;
    border-bottom: 1px solid rgba(46, 125, 50, 0.06);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #1a3a1a;
    transition: all 0.4s ease;
    border-radius: 10px;
    cursor: default;
}

.resep-ingredients ul li:hover {
    background: rgba(46, 125, 50, 0.04);
    padding-left: 18px;
    transform: translateX(5px);
}

.resep-ingredients ul li::before {
    content: "✓";
    color: #2e7d32;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.08);
}

.resep-ingredients ul li:hover::before {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.2);
}

.resep-ingredients ul li:last-child {
    border-bottom: none;
}

.resep-steps {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px 35px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(46, 125, 50, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.resep-steps::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.03), transparent 70%);
    border-radius: 50%;
}

.resep-steps:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(46, 125, 50, 0.06);
    background: rgba(255, 255, 255, 0.9);
}

.resep-steps h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a1a;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(46, 125, 50, 0.15);
}

.resep-steps h3 i {
    color: #2e7d32;
    font-size: 24px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.08);
}

.resep-steps ol {
    padding: 0;
    list-style: none;
    counter-reset: step-counter;
    position: relative;
    z-index: 1;
}

.resep-steps ol li {
    padding: 18px 20px 18px 65px;
    border-bottom: 1px solid rgba(46, 125, 50, 0.06);
    line-height: 1.7;
    font-size: 15px;
    color: #1a3a1a;
    position: relative;
    border-radius: 14px;
    transition: all 0.4s ease;
    margin-bottom: 5px;
    counter-increment: step-counter;
}

.resep-steps ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.25);
    transition: all 0.4s ease;
}

.resep-steps ol li:hover {
    background: rgba(46, 125, 50, 0.04);
    transform: translateX(8px);
    border-radius: 14px;
}

.resep-steps ol li:hover::before {
    transform: translateY(-50%) scale(1.15) rotate(-10deg);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.35);
}

.resep-steps ol li:last-child {
    border-bottom: none;
}

.resep-tips {
    margin-top: 30px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.8), rgba(241, 248, 233, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border-left: 6px solid #2e7d32;
    box-shadow: 0 4px 25px rgba(46, 125, 50, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.resep-tips::before {
    content: '🥗';
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 50px;
    opacity: 0.06;
}

.resep-tips:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.12);
}

.resep-tips h4 {
    color: #2e7d32;
    margin-bottom: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.resep-tips h4 i {
    font-size: 22px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    color: #2e7d32;
}

.resep-tips p {
    color: #3a5a3a;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    padding-left: 10px;
}


.dark .resep-header-split {
    background: rgba(17, 31, 17, 0.85);
    backdrop-filter: blur(20px);
    border-color: rgba(46, 125, 50, 0.12);
}

.dark .resep-header-left h1 {
    color: #d8e8d0;
}

.dark .resep-header-left .subtitle-green {
    color: #7a9a7a;
}

.dark .resep-meta span {
    background: rgba(26, 47, 26, 0.7);
    color: #b0c8b0;
    border-color: rgba(46, 125, 50, 0.08);
}

.dark .resep-meta .meta-category-green {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
}

.dark .resep-meta .meta-rating-green {
    background: rgba(46, 125, 50, 0.15);
    border-color: rgba(46, 125, 50, 0.15);
}

.dark .resep-image-card .image-badge-green {
    background: rgba(0, 0, 0, 0.7);
}

.dark .resep-ingredients {
    background: rgba(17, 31, 17, 0.85);
    backdrop-filter: blur(15px);
    border-color: rgba(46, 125, 50, 0.08);
}

.dark .resep-ingredients h3 {
    color: #d8e8d0;
    border-bottom-color: rgba(46, 125, 50, 0.12);
}

.dark .resep-ingredients h3 i {
    background: rgba(46, 125, 50, 0.15);
    color: #66bb6a;
}

.dark .resep-ingredients .total-items-green {
    background: rgba(46, 125, 50, 0.12);
    color: #7a9a7a;
}

.dark .resep-ingredients ul li {
    color: #b0c8b0;
    border-bottom-color: rgba(255,255,255,0.03);
}

.dark .resep-ingredients ul li:hover {
    background: rgba(46, 125, 50, 0.05);
}

.dark .resep-ingredients ul li::before {
    background: rgba(46, 125, 50, 0.15);
    color: #66bb6a;
}

.dark .resep-ingredients ul li:hover::before {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
}

.dark .resep-steps {
    background: rgba(17, 31, 17, 0.85);
    backdrop-filter: blur(15px);
    border-color: rgba(46, 125, 50, 0.08);
}

.dark .resep-steps h3 {
    color: #d8e8d0;
    border-bottom-color: rgba(46, 125, 50, 0.12);
}

.dark .resep-steps h3 i {
    background: rgba(46, 125, 50, 0.15);
    color: #66bb6a;
}

.dark .resep-steps ol li {
    color: #b0c8b0;
    border-bottom-color: rgba(255,255,255,0.03);
}

.dark .resep-steps ol li:hover {
    background: rgba(46, 125, 50, 0.05);
}

.dark .resep-tips {
    background: linear-gradient(135deg, rgba(17, 31, 17, 0.8), rgba(26, 47, 26, 0.8));
}

.dark .resep-tips h4 {
    color: #66bb6a;
}

.dark .resep-tips p {
    color: #b0c8b0;
}

.dark .resep-tips h4 i {
    background: rgba(26, 47, 26, 0.7);
    color: #66bb6a;
}

.dark .resep-info-badge .badge-item-green {
    background: rgba(17, 31, 17, 0.85);
    backdrop-filter: blur(15px);
    border-color: rgba(46, 125, 50, 0.08);
}

.dark .resep-info-badge .badge-item-green .value-green {
    color: #d8e8d0;
}

.dark .resep-info-badge .badge-item-green .label-green {
    color: #7a9a7a;
}

footer {
    background: rgba(13, 26, 13, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 60px 8% 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(46, 125, 50, 0.08);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 992px) {
    .resep-header-split {
        grid-template-columns: 1fr 0.9fr;
        gap: 30px;
        padding: 30px 30px;
    }
    
    .resep-header-left h1 {
        font-size: 34px;
    }
    
    .resep-image-card img {
        height: 200px;
    }
}

@media(max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 26px;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: .4s cubic-bezier(0.22, 1, 0.36, 1);
        gap: 25px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    .dark .nav-links {
        background: rgba(17, 31, 17, 0.95);
    }

    .resep-header-split {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .resep-header-left h1 {
        font-size: 28px;
    }
    
    .resep-header-left .emoji-badge {
        font-size: 45px;
    }
    
    .resep-image-card img {
        height: 180px;
    }
    
    .resep-image-card .image-badge-green {
        font-size: 11px;
        padding: 5px 12px;
        bottom: 10px;
        left: 10px;
    }
    
    .resep-header-left .divider-green {
        width: 60px;
    }
    
    .resep-meta {
        gap: 10px;
    }
    
    .resep-meta span {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .resep-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .resep-ingredients {
        position: static;
    }
    
    .resep-steps {
        padding: 25px 20px;
    }
    
    .resep-steps ol li {
        padding: 15px 15px 15px 55px;
        font-size: 14px;
    }
    
    .resep-steps ol li::before {
        width: 34px;
        height: 34px;
        font-size: 13px;
        left: 6px;
    }
    
    .resep-ingredients {
        padding: 25px 20px;
    }
    
    .resep-ingredients ul li {
        font-size: 14px;
        padding: 12px 0 12px 10px;
    }
    
    .resep-ingredients ul li::before {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .btn-back {
        padding: 12px 28px;
        font-size: 14px;
        margin-bottom: 25px;
        width: 100%;
        justify-content: center;
    }
    
    .resep-tips {
        padding: 20px;
    }
    
    .resep-tips p {
        font-size: 14px;
    }
    
    .resep-info-badge {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media(max-width: 480px) {
    header {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .resep-header-left h1 {
        font-size: 24px;
    }
    
    .resep-header-left .subtitle-green {
        font-size: 14px;
    }
    
    .resep-header-split {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .resep-image-card img {
        height: 140px;
    }
    
    .resep-header-left .divider-green {
        width: 50px;
        height: 3px;
    }
    
    .resep-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .resep-meta span {
        width: fit-content;
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .btn-back {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .resep-container {
        padding: 15px 12px 40px;
    }
    
    .resep-info-badge {
        grid-template-columns: 1fr;
    }
}