* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Modern Floating Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

.logo {
    color: #FF6B35;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #FF6B35;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section with Overlay */
.recipe-header {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DB 50%, #FFF5F0 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.recipe-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.recipe-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #1a1a1a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.recipe-intro {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Breadcrumb with Icons */
.breadcrumb-container {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF6B35;
}

/* Modern Action Buttons */
.action-buttons {
    background: #fff;
    padding: 35px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.buttons-left,
.buttons-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.action-btn:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
}

.jump-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.jump-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Main Content Area */
.main-content {
    padding: 60px 0;
    background: #fafafa;
}

/* Premium Author Card */
.author-bio-section {
    margin: 70px 0;
}

.author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #fff 0%, #FFFBF8 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.author-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.author-image-container {
    position: relative;
    width: 140px;
    height: 140px;
}

.author-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    object-fit: cover;
}

.chef-badge {
    position: absolute;
    bottom: 0;
    right: -10px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.author-content {
    position: relative;
    z-index: 1;
}

.author-name {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.author-credentials {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 20px;
}

.recipe-story {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DB 100%);
    padding: 28px;
    border-radius: 18px;
    margin: 25px 0;
    border-left: 5px solid #FF6B35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.recipe-story h3 {
    color: #FF6B35;
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-background p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.author-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.author-link:hover {
    gap: 12px;
    color: #F7931E;
}

/* Modern Image Container */
.recipe-image-container {
    position: relative;
    margin: 50px 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.recipe-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.recipe-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.recipe-image-container:hover .recipe-image {
    transform: scale(1.05);
}

.pinterest-pin-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E60023;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(230, 0, 35, 0.4);
    transition: all 0.3s ease;
}

.pinterest-pin-btn:hover {
    background: #c5001a;
    transform: scale(1.05);
}

/* Premium Content Sections */
.content-section {
    margin: 70px 0;
    padding: 50px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    color: #1a1a1a;
    font-size: 2.4rem;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    border-radius: 3px;
}

.content-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.tip-box {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DB 100%);
    border-left: 5px solid #FF6B35;
    padding: 35px;
    margin: 35px 0;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

.tip-box h3 {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ingredient-tips {
    background: linear-gradient(135deg, #FFFBF8 0%, #FFF5F0 100%);
    padding: 35px;
    border-radius: 18px;
    margin: 35px 0;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.ingredient-tips h3 {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.ingredient-tips ul {
    list-style: none;
    padding: 0;
}

.ingredient-tips li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.ingredient-tips li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-size: 1.2rem;
}

.technique-highlight {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DB 100%);
    border: 2px solid #FFD4B8;
    padding: 35px;
    border-radius: 18px;
    margin: 35px 0;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.12);
}

.technique-highlight h3 {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 700;
}

/* Modern FAQ Section */
.faq-section {
    margin: 70px 0;
}

.faq-section h2 {
    color: #1a1a1a;
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 22px 28px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #FFF5F0;
    color: #FF6B35;
}

.faq-question .icon {
    font-size: 20px;
    color: #FF6B35;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #FFFBF8;
    transition: max-height 0.4s ease;
}

.faq-answer.active {
    max-height: 400px;
    padding: 22px 28px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

/* Modern Troubleshooting Grid */
.troubleshooting-section {
    margin: 70px 0;
    padding: 50px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.troubleshooting-section h2 {
    color: #1a1a1a;
    font-size: 2.4rem;
    margin-bottom: 45px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

.troubleshooting-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    border-radius: 3px;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.troubleshoot-item {
    background: linear-gradient(135deg, #FFFBF8 0%, #FFF5F0 100%);
    border-radius: 18px;
    padding: 30px;
    border-left: 5px solid #FF6B35;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.troubleshoot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.problem-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.troubleshoot-item h3 {
    color: #FF6B35;
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.solution p {
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.solution p strong {
    color: #FF6B35;
    font-weight: 700;
}

/* Premium Recipe Card */
.recipe-card {
    background: linear-gradient(135deg, #fff 0%, #FFFBF8 100%);
    border-radius: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin: 80px 0;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.1);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.recipe-card-header {
    padding: 60px 50px;
    text-align: center;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DB 100%);
    position: relative;
    overflow: hidden;
}

.recipe-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.recipe-card h2 {
    color: #1a1a1a;
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.recipe-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.meta-item {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.meta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DB 100%);
}

.meta-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.meta-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FF6B35;
    letter-spacing: -0.5px;
}

.recipe-content {
    padding: 0 50px 60px;
}

.recipe-section {
    margin-bottom: 60px;
    padding: 45px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.recipe-section h3 {
    color: #FF6B35;
    font-size: 2.2rem;
    margin-bottom: 35px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ingredient-category {
    color: #FF6B35;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 35px 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #FFE8DB;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredient-item {
    padding: 22px 28px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #FFFBF8 0%, #FFF5F0 100%);
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ingredient-item:hover {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DB 100%);
    border-color: #FFD4B8;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.ingredient-text {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.5;
}

.ingredient-item.completed .ingredient-text {
    color: #999;
    text-decoration: line-through;
}

.ingredient-detail {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    opacity: 0.8;
}

.instructions-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.instruction-step {
    counter-increment: step-counter;
    margin-bottom: 35px;
    display: flex;
    gap: 30px;
    padding: 35px;
    background: linear-gradient(135deg, #FFFBF8 0%, #FFF5F0 100%);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.instruction-step:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    transform: translateY(-3px);
}

.instruction-step::before {
    content: counter(step-counter);
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-content h4 {
    color: #FF6B35;
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.step-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.notes-content {
    display: grid;
    gap: 25px;
}

.note-item {
    padding: 30px;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DB 100%);
    border-radius: 18px;
    border-left: 5px solid #FF6B35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.note-item h4 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.note-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.recipe-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    min-width: 200px;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.35);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.45);
}

.secondary-btn {
    background: #fff;
    color: #FF6B35;
    border: 3px solid #FF6B35;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.35);
}

/* Modern Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #FF6B35;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #e0e0e0;
    font-size: 28px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #FF6B35;
    transform: translateY(-3px);
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }

    nav ul li {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav ul li a::after {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .recipe-title {
        font-size: 2.2rem;
    }

    .recipe-intro {
        font-size: 1.1rem;
    }

    .recipe-image {
        height: 320px;
    }

    .button-row {
        flex-direction: column;
        gap: 15px;
    }

    .buttons-left,
    .buttons-right {
        width: 100%;
        justify-content: center;
    }

    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 25px;
        justify-items: center;
    }

    .author-credentials {
        justify-content: center;
    }

    .content-section {
        padding: 30px 25px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .recipe-content {
        padding: 0 25px 40px;
    }

    .recipe-card {
        margin: 40px 15px;
        border-radius: 25px;
    }

    .recipe-card-header {
        padding: 40px 25px;
    }

    .recipe-card h2 {
        font-size: 2rem;
    }

    .recipe-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .recipe-section {
        padding: 25px 20px;
        margin-bottom: 35px;
    }

    .recipe-section h3 {
        font-size: 1.8rem;
    }

    .instruction-step {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }

    .instruction-step::before {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .recipe-title {
        font-size: 1.8rem;
    }

    .recipe-card h2 {
        font-size: 1.6rem;
    }

    .recipe-meta {
        grid-template-columns: 1fr;
    }

    .meta-item {
        padding: 18px 15px;
    }

    .content-section h2 {
        font-size: 1.7rem;
    }

    .action-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recipe-card,
.content-section,
.author-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Optimizations */
@media print {
    .site-header,
    .action-buttons,
    .breadcrumb-container,
    .pinterest-pin-btn,
    .social-links,
    footer,
    .author-link {
        display: none;
    }

    .recipe-card {
        box-shadow: none;
        border: 2px solid #ddd;
        page-break-inside: avoid;
    }

    body {
        font-size: 12pt;
        background: #fff;
    }

    .recipe-title {
        font-size: 28pt;
        color: #000;
    }

    .recipe-section {
        page-break-inside: avoid;
        box-shadow: none;
    }

    .instruction-step {
        page-break-inside: avoid;
    }
}

/* Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

.recipe-image-container,
.action-btn,
.faq-item,
.troubleshoot-item {
    will-change: transform;
}

/* Accessibility Enhancements */
.action-btn:focus,
.faq-question:focus,
button:focus {
    outline: 3px solid #FF6B35;
    outline-offset: 3px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .action-btn,
    .recipe-card {
        border-width: 3px;
    }
}