/* Google Fonts applied in HTML: Libre Baskerville + Karla */

:root {
    --light-pink: #fadee3;
    --neutral-beige: #f6f2ef;
    --sage-green: #c6d1c4;
    --font-primary: 'Karla', sans-serif;
    --font-heading: 'Libre Baskerville', serif;
  }
 
  body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--neutral-beige);
    color: #333;
  }

  /* Reset all section and footer margins */
  section, footer {
    margin: 0;
    padding: 0;
  }
  
  header.main-header {
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .logo-img {
    height: 40px; /* Adjust to fit your header */
    width: auto;
    display: block;
  }
  
  
  .logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #2f4f2f;
  }

  .logo a {
    color: inherit;
    text-decoration: none;
  }

  .logo a:hover {
    color: inherit;
    text-decoration: none;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #2f4f2f;
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  nav ul li a:hover {
    color: var(--sage-green);
    border-bottom: 2px solid var(--sage-green);
  }
  
  .popular-this-week {
    text-align: center;
    margin-bottom: 2rem;
  }

  .recipe-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }

  .recipe-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid #ccc;
  }

  .recipe-card .recipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: var(--font-primary);
  }

  .recipe-card .recipe-overlay h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    text-align: center;
  }

  .recipe-card .recipe-overlay .read-recipe {
    font-size: 1rem;
    font-weight: 600;
  }

  .recipe-card:hover .recipe-overlay {
    opacity: 1;
  }

  .recipe-card p {
    margin: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #2f4f2f;
  }

  .recipe-card:hover {
    transform: scale(1.02);
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    margin-left: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
  }

  .social-icons a i {
    font-size: 18px;
    color: #2f4f2f;
    transition: all 0.3s ease;
  }

  .social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .social-icons a.instagram:hover i { color: #E4405F; }
  .social-icons a.pinterest:hover i { color: #BD081C; }
  .social-icons a.tiktok:hover i { color: #000000; }
  .social-icons a.email:hover i { color: var(--sage-green); }
  
  .hero {
    text-align: center;
    padding: 2rem 2rem 0.25rem;
    background-color: var(--light-pink);
  }

  .hero-main-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #2f4f2f;
    margin: 0 0 1rem 0;
    text-align: center;
  }

  .hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #2f4f2f;
    margin: 0 0 1.5rem 0;
    text-align: center;
    font-weight: 400;
    line-height: 1.4;
  }

  .hero-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-post img {
    width: 160px;
    height: auto;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .hero-post img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
  }
  
  .hero-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 1.5rem 0 0.5rem;
    color: #2f4f2f;
  }
  
  .hero-subtext {
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .hero-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    text-decoration: none;
  }

  .hero-icons a i {
    font-size: 22px;
    color: #2f4f2f;
    transition: all 0.3s ease;
  }

  .hero-icons a:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }

  .hero-icons a.instagram:hover i { color: #E4405F; }
  .hero-icons a.pinterest:hover i { color: #BD081C; }
  .hero-icons a.tiktok:hover i { color: #000000; }
  .hero-icons a.email:hover i { color: var(--sage-green); }
  
  .container.layout-with-sidebar {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  /* Main Content Header */
  .main-content-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
  }

  .main-content-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #2f4f2f;
    margin-bottom: 1rem;
    margin-top: 0;
  }

  .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Enhanced Recipe Cards */
  .recipe-card {
    display: block;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background-color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
  }

  .recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .recipe-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .recipe-info {
    padding: 1rem;
  }

  .recipe-info h3 {
    margin: 0 0 0.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #2f4f2f;
  }

  .recipe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
  }

  .recipe-meta .time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .recipe-meta .difficulty {
    background-color: var(--light-pink);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #2f4f2f;
  }

  /* Recipe Grid Layout */
  .recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  /* Section Styling */
  .category-section,
  .weekly-menu {
    margin: 5rem 0 3rem 0;
  }

  .category-section h2,
  .weekly-menu h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #2f4f2f;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
  }

  .category-section h2::after,
  .weekly-menu h2::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12%;
    height: 8px;
    background-color: var(--light-pink);
    border-radius: 2px;
    z-index: -1;
  }

  .section-intro {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  /* Weekly Menu Styling */
  .weekly-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .day-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .day-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .day-item .day {
    font-weight: bold;
    color: var(--sage-green);
    min-width: 80px;
    margin-right: 1rem;
  }

  .day-item a {
    text-decoration: none;
    color: #2f4f2f;
    transition: color 0.3s ease;
  }

  .day-item a:hover {
    color: var(--sage-green);
  }
  
  .grid-two-thirds {
    flex: 2;
  }
  
  .popular-this-week {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .popular-heading {
    font-family: var(--font-heading);
    color: #2f4f2f;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
  }

  .popular-heading::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12%;
    height: 8px;
    background-color: var(--light-pink);
    border-radius: 2px;
    z-index: -1;
  }

  .popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  /* Viral on Social Section */
  .viral-on-social {
    text-align: center;
    margin: 2rem 0 3rem 0;
  }

  .viral-heading {
    font-family: var(--font-heading);
    color: #2f4f2f;
    font-size: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
  }

  .viral-heading::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12%;
    height: 8px;
    background-color: var(--light-pink);
    border-radius: 2px;
    z-index: -1;
  }

  .viral-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .viral-card {
    position: relative;
  }

  .viral-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 87, 34, 0.95);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }

  .viral-badge i {
    font-size: 0.9rem;
    animation: flame 1.5s infinite alternate;
  }

  @keyframes flame {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
  }

  /* Find Your Perfect Recipe Section */
  .find-recipe-section {
    margin: 4rem 0;
  }

  .find-recipe-heading {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: #2f4f2f;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
  }

  .filter-categories {
    background-color: var(--light-pink);
    padding: 4rem 2rem;
    margin: 0 -2rem;
    width: calc(100% + 4rem);
    position: relative;
    left: -2rem;
  }

  .find-recipe-heading::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12%;
    height: 8px;
    background-color: var(--light-pink);
    border-radius: 2px;
    z-index: -1;
  }

  .filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
  }

  .filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
  }

  .filter-item:hover {
    transform: translateY(-3px);
  }

  .filter-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
  }

  .filter-item:hover .filter-image {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  }

  .filter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .filter-item:hover .filter-image img {
    transform: scale(1.05);
  }

  .filter-label {
    font-weight: 600;
    font-size: 1rem;
    color: #2f4f2f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
  }

  /* About Me Horizontal Section */
  /* Behind the Blog Section */
  .behind-the-blog-section {
    text-align: center;
    margin: 2rem 0 2rem 0;
  }

  .behind-the-blog-heading {
    font-family: var(--font-heading);
    color: #2f4f2f;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
  }

  .behind-the-blog-heading::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12%;
    height: 8px;
    background-color: var(--light-pink);
    border-radius: 2px;
    z-index: -1;
  }

  .about-me-horizontal {
    background-color: var(--light-pink);
    padding: 4rem 2rem;
    margin-top: 0;
  }

  .about-me-horizontal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
  }

  .about-me-text {
    order: 2;
  }

  .about-me-image-horizontal {
    order: 1;
  }

  .about-social-horizontal {
    order: 3;
  }

  .about-me-text {
    max-width: 600px;
    margin-left: 2rem;
  }

  .about-me-horizontal h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #2f4f2f;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
  }

  .about-me-horizontal h2::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 12%;
    height: 8px;
    background-color: var(--light-pink);
    border-radius: 2px;
    z-index: -1;
  }

  .about-me-horizontal p {
    color: #2f4f2f;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }

  .about-me-image-horizontal img {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 300px;
  }

  .about-social-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-social-horizontal .about-social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    color: white;
  }

  .about-social-horizontal .about-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .about-social-horizontal .about-social-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  }

  .about-social-horizontal .about-social-btn.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    filter: brightness(1.1);
  }

  .about-social-horizontal .about-social-btn.tiktok {
    background: #000;
  }

  .about-social-horizontal .about-social-btn.tiktok:hover {
    background: #333;
  }

  .about-social-horizontal .about-social-btn.youtube {
    background: #FF0000;
  }

  .about-social-horizontal .about-social-btn.youtube:hover {
    background: #cc0000;
  }

  .about-social-horizontal .about-social-btn.pinterest {
    background: #E60023;
  }

  .about-social-horizontal .about-social-btn.pinterest:hover {
    background: #bd001c;
  }
  
  .about-me-sidebar {
    flex: 0 0 auto;
    max-width: 300px;
    text-align: center;
  }
  
  .about-me-sidebar img {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
  }

  .about-me-sidebar .headshot-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    margin-bottom: 1rem;
    border: 3px solid white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .about-card {
    background-color: #fadee3; /* light pink */
    border: 1px solid #e5bfc2; /* soft border */
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }  
  
  .recipe-card {
    display: block;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: inherit;
    text-decoration: none;
  }
  
  .recipe-card img {
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
  }
  
  .recipe-card p {
    padding: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .craving-section {
    background-color: #fadee3;
    padding: 1rem 0;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .craving-heading {
    font-family: var(--font-heading);
    color: var(--sage-green);
    font-size: 1.25rem;
    margin: 0 0 1rem 1rem;
    text-align: left;
  }
  
  .craving-scroll-container {
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  .craving-grid {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .craving-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 80px;
  }
  
  .craving-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    background: linear-gradient(135deg, #fadee3, #efeae7);
    padding: 2px;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .craving-item img:hover {
    transform: scale(1.07);
  }
  
  .craving-item p {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .social-icons .icon {
    width: 24px;
    height: 24px;
    fill: #2f4f2f;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover .icon {
    transform: scale(1.1);
    opacity: 0.85;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .social-icons .icon {
    width: 24px;
    height: 24px;
    fill: #2f4f2f;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover .icon {
    transform: scale(1.1);
    opacity: 0.85;
  }

  .dont-miss-section {
    background-color: #fadee3;
    padding: 3rem 1rem 2rem;
    display: flex;
    justify-content: center;
  }
  
  .dont-miss-wrapper {
    text-align: center;
    max-width: 700px;
    width: 100%;
  }
  
  .dont-miss-heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #2f4f2f;
    margin-bottom: 0.5rem;
  }
  
  .dont-miss-subtext {
    font-size: 1rem;
    font-weight: 500;
    color: #5a5a5a;
    margin-bottom: 2rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .social-icons .icon {
    width: 24px;
    height: 24px;
    fill: #2f4f2f;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover .icon {
    transform: scale(1.1);
    opacity: 0.85;
  }
  
  
  /* Social Follow Section */
  .social-follow-section {
    background-color: var(--light-pink);
    padding: 4rem 2rem;
    margin-top: 2rem;
  }

  .social-follow-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .social-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #2f4f2f;
    margin-bottom: 1rem;
  }

  .social-subtext {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .social-follow-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .social-follow-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
  }

  .social-follow-icons a i {
    font-size: 28px;
    color: #2f4f2f;
    transition: all 0.3s ease;
  }

  .social-follow-icons a:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

  .social-follow-icons a.instagram:hover i { color: #E4405F; }
  .social-follow-icons a.pinterest:hover i { color: #BD081C; }
  .social-follow-icons a.tiktok:hover i { color: #000000; }
  .social-follow-icons a.email:hover i { color: var(--sage-green); }


  /* Recipe Page Styles */

/* Breadcrumbs */
.breadcrumbs {
  background-color: white;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumbs ol li:not(:last-child):after {
  content: "›";
  margin-left: 0.5rem;
  color: #999;
}

.breadcrumbs a {
  color: var(--sage-green);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Recipe Hero */
.recipe-hero {
  background-color: var(--light-pink);
  padding: 2rem;
}

.recipe-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.recipe-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #2f4f2f;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.recipe-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 2rem 0;
}

/* Meta Info Row */
.recipe-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 80px;
}

.meta-item i {
  font-size: 1.2rem;
  color: var(--sage-green);
  margin-bottom: 0.25rem;
}

.meta-label {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.meta-value {
  font-weight: 700;
  color: #2f4f2f;
  font-size: 1rem;
}

/* Diet Badges */
.diet-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.badge {
  background-color: var(--sage-green);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.vegan { background-color: #4CAF50; }
.badge.gluten-free { background-color: #FF9800; }
.badge.dairy-free { background-color: #2196F3; }
.badge.no-bake { background-color: #9C27B0; }

/* Difficulty Badge */
.difficulty-badge {
  margin-bottom: 2rem;
}

.difficulty {
  background-color: var(--light-pink);
  border: none;
  color: #8b6f47;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.difficulty.easy {
  background-color: var(--light-pink);
  color: #8b6f47;
}

.difficulty.medium {
  background-color: #fff3e0;
  color: #d4792a;
}

.difficulty.hard {
  background-color: #ffebee;
  color: #c5665a;
}

/* Jump to Recipe Button */
.jump-to-recipe-btn {
  background-color: #2f4f2f;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.jump-to-recipe-btn:hover {
  background-color: var(--sage-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hero Image */
.recipe-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Recipe Content */
.recipe-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Recipe Story */
.recipe-story {
  margin-bottom: 3rem;
}

.recipe-story h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #2f4f2f;
  margin-bottom: 1.5rem;
}

.recipe-story p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Watch Me Make It Button */
.watch-video-section {
  text-align: center;
  margin: 1rem 0 1.5rem 0;
  padding: 1rem 0;
}

.watch-video-btn {
  background-color: var(--light-pink);
  color: #2f4f2f;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(250, 222, 227, 0.3);
}

.watch-video-btn:hover {
  background-color: #f5c2cc;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(250, 222, 227, 0.5);
  color: #2f4f2f;
}

.watch-follow-text {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

/* Recipe Card */
.recipe-content .recipe-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
  display: block;
  text-decoration: none;
  color: inherit;
  transform: none;
}

/* New Recipe Card Top Section */
.recipe-card-top {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
}

.recipe-card-info {
  padding-right: 0;
}

.recipe-card-image {
  padding-right: 1rem;
}

.recipe-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #2f4f2f;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.recipe-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
}

.recipe-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars i {
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 1rem;
}

.stars i:hover,
.stars i.active {
  color: #ffd700;
}

.rating-text {
  color: #666;
  font-size: 0.9rem;
}

.rating-count {
  color: #888;
  font-size: 0.8rem;
}

.recipe-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.meta-row i {
  color: #666;
  width: 12px;
  font-size: 0.8rem;
}

.meta-label {
  color: #666;
  font-style: italic;
}

.meta-value {
  color: #2f4f2f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yield-adjuster {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
}

.yield-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #666;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.yield-btn:hover {
  background-color: var(--sage-green);
  color: white;
  border-color: var(--sage-green);
}

.yield-multiplier {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #2f4f2f;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 25px;
  text-align: center;
}

.recipe-action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.action-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #666;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.action-btn:hover {
  background-color: var(--sage-green);
  color: white;
  border-color: var(--sage-green);
  transform: translateY(-1px);
}

.pin-btn:hover {
  background-color: #BD081C;
  border-color: #BD081C;
}

.recipe-card-image {
  justify-self: end;
}

/* Recipe Card Image - Back to Original Working Style */
.recipe-card .recipe-card-image img,
.recipe-card-image img {
  width: 100% !important;
  max-width: 350px !important;
  height: auto !important;
  border-radius: 10px !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
  border-bottom: none !important;
  object-fit: initial !important;
}

.recipe-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Print Button */
.print-btn {
  background-color: var(--light-pink);
  color: #2f4f2f;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
}

.print-btn:hover {
  background-color: var(--sage-green);
  color: white;
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.rating-text {
  color: #666;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars i {
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.stars i:hover,
.stars i.active {
  color: #ffd700;
}

.rating-count {
  color: #888;
  font-size: 0.8rem;
}

/* Servings Adjuster */
.servings-adjuster {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--neutral-beige);
  border-radius: 10px;
}

.servings-adjuster label {
  font-weight: 600;
  color: #2f4f2f;
}

.serving-btn {
  background-color: var(--sage-green);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.serving-btn:hover {
  background-color: #2f4f2f;
  transform: scale(1.1);
}

.serving-count {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2f4f2f;
  min-width: 30px;
  text-align: center;
}

/* Ingredients Section */
.ingredients-section {
  margin-bottom: 2.5rem;
}

.ingredients-section h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #2f4f2f;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.ingredients-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6'%3E%3Cpath d='M2 4C10 0 20 0 30 3S50 6 58 2' stroke='%23fadee3' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.ingredients-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredients-list li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.ingredients-list input[type="checkbox"] {
  margin-right: 1rem;
  transform: scale(1.2);
  accent-color: var(--sage-green);
}

.ingredients-list label {
  font-size: 1.1rem;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ingredients-list .amount {
  font-weight: 600;
  color: var(--sage-green);
}

/* Instructions Section */
.instructions-section {
  margin-bottom: 2.5rem;
}

.instructions-section h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #2f4f2f;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.instructions-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6'%3E%3Cpath d='M2 4C10 0 20 0 30 3S50 6 58 2' stroke='%23fadee3' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.instructions-list {
  padding-left: 0;
  counter-reset: step-counter;
  list-style: none;
}

.instructions-list li {
  counter-increment: step-counter;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

.instructions-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--light-pink);
  color: #2f4f2f;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Nutrition Section */
.nutrition-section {
  margin-bottom: 2.5rem;
}

.nutrition-section h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #2f4f2f;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.nutrition-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6'%3E%3Cpath d='M2 4C10 0 20 0 30 3S50 6 58 2' stroke='%23fadee3' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.nutrition-table {
  background-color: var(--neutral-beige);
  border-radius: 10px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.nutrition-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.nutrition-label {
  color: #666;
}

.nutrition-value {
  font-weight: 600;
  color: #2f4f2f;
}

/* Notes Section */
.notes-section h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #2f4f2f;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.notes-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6'%3E%3Cpath d='M2 4C10 0 20 0 30 3S50 6 58 2' stroke='%23fadee3' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.notes-section ul {
  padding-left: 1.5rem;
}

.notes-section li {
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* Related Recipes */
.related-recipes {
  margin-top: 4rem;
}

.related-recipes h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #2f4f2f;
  text-align: center;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.recipe-card-small {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.recipe-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.recipe-card-small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recipe-card-small .recipe-info {
  padding: 1.5rem;
}

.recipe-card-small h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #2f4f2f;
  margin: 0 0 1rem 0;
}

.recipe-card-small .recipe-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
.site-footer {
  background-color: #2f4f2f;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section {
  text-align: center;
}

.footer-section h4 {
  text-align: center;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--light-pink);
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f8f8;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #2f4f2f;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
}

  @media (max-width: 480px) {
    .recipe-grid,
    .popular-grid,
    .viral-grid,
    .filter-grid {
      grid-template-columns: 1fr !important;
      gap: 1rem !important;
    }
  }

  @media (max-width: 768px) {
    .container.layout-with-sidebar {
      flex-direction: column;
      padding: 1rem;
    }

    .hero {
      padding: 2rem 1rem 1.5rem;
    }

    .hero-main-title {
      font-size: 2.2rem;
    }

    .hero-intro {
      font-size: 1rem;
      padding: 0 1rem;
    }

    .recipe-grid,
    .popular-grid,
    .viral-grid {
      grid-template-columns: 1fr !important;
      gap: 1rem;
    }

    .weekly-list {
      grid-template-columns: 1fr;
    }

    .hero-grid {
      gap: 0.5rem;
    }

    .hero-post img {
      width: 120px;
    }

    .hero-heading {
      font-size: 1.5rem;
    }

    .social-icons a {
      width: 35px;
      height: 35px;
      margin-left: 0.5rem;
    }

    .social-icons a i {
      font-size: 16px;
    }

    .hero-icons a {
      width: 45px;
      height: 45px;
      margin: 0 0.5rem;
    }

    .hero-icons a i {
      font-size: 20px;
    }

    nav ul {
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    header.main-header {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }

    .about-me-sidebar {
      max-width: 100%;
    }

    .social-follow-section {
      padding: 3rem 1rem;
    }

    .social-heading {
      font-size: 1.8rem;
    }

    .social-subtext {
      font-size: 1rem;
    }

    .social-follow-icons {
      gap: 1.5rem;
    }

    .social-follow-icons a {
      width: 55px;
      height: 55px;
    }

    .social-follow-icons a i {
      font-size: 24px;
    }

    /* Find Recipe Section Mobile */
    .find-recipe-section {
      padding: 4rem 1.5rem;
      margin: 3rem 0;
    }

    .find-recipe-heading {
      font-size: 2rem;
      margin-bottom: 2.5rem;
    }

    .filter-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 3rem 2rem;
      max-width: 400px;
      margin: 0 auto;
    }

    .filter-image {
      width: 120px;
      height: 120px;
    }

    .filter-label {
      font-size: 1rem;
      font-weight: 700;
    }

    /* Behind the Blog Section Mobile */
    .behind-the-blog-section {
      margin: 2rem 0 1rem 0;
    }

    .behind-the-blog-heading {
      font-size: 1.5rem;
    }

    /* About Me Horizontal Section Mobile */
    .about-me-horizontal {
      padding: 2rem 1rem;
      margin-top: 2rem;
    }

    .about-me-horizontal-content {
      max-width: 100%;
      margin: 0 auto;
      padding: 0;
      flex-direction: column;
      gap: 2rem;
      text-align: center;
    }

    .about-me-text {
      max-width: 100%;
      padding: 0;
    }

    .about-me-text h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .about-me-text p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
    }

    .about-me-image-horizontal {
      max-width: 200px;
      margin: 0 auto;
    }

    .about-me-image-horizontal img {
      width: 100%;
      height: auto;
    }

    .about-social-horizontal {
      justify-content: center;
      gap: 1rem;
    }

    /* Category and Popular Sections Mobile */
    .category-section,
    .popular-this-week {
      margin: 2rem 0;
      padding: 0 1rem;
    }

    .category-section h2,
    .popular-heading {
      font-size: 1.5rem;
    }

    /* Ensure all main containers are properly constrained */
    .container {
      max-width: 100%;
      padding: 0 1rem;
    }

    /* Recipe page mobile styles */
    .recipe-hero {
      padding: 1rem;
    }

    .recipe-hero-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .recipe-title {
      font-size: 2rem;
    }

    .recipe-description {
      font-size: 1rem;
    }

    .recipe-meta {
      gap: 1rem;
    }

    .meta-item {
      min-width: 60px;
    }

    .recipe-content {
      padding: 1rem;
    }

    .recipe-card {
      padding: 1.5rem;
    }

    /* Mobile recipe card layout */
    .recipe-card-top {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .recipe-card-info {
      padding-right: 0;
    }

    .recipe-card-title {
      font-size: 1.5rem;
    }

    .recipe-meta-grid {
      grid-template-columns: 1fr;
      gap: 0.4rem;
    }

    .recipe-action-buttons {
      flex-direction: column;
      gap: 0.75rem;
    }

    .action-btn {
      width: 100%;
      justify-content: center;
    }

    .recipe-card-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .recipe-actions {
      width: 100%;
      justify-content: space-between;
    }

    .nutrition-table {
      grid-template-columns: 1fr;
    }

    .related-recipes {
      padding: 2rem 1rem;
    }

    .related-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .site-footer {
      padding: 2rem 1rem 1rem;
    }

    /* Watch video button mobile styles */
    .watch-video-section {
      margin: 2rem 0;
      padding: 1rem 0;
    }

    .watch-video-btn {
      padding: 0.875rem 2rem;
      font-size: 1rem;
    }

    /* Recipe Content Container mobile styles */
    .recipe-content-container {
      flex-direction: column;
      padding: 1rem;
      gap: 2rem;
    }

    /* About Me Sidebar mobile styles */
    .about-me-sidebar {
      position: static;
      flex: none;
      width: 100%;
      order: -1;
    }

    .about-me-content {
      padding: 1.5rem;
    }

    .about-me-image img {
      width: 120px;
      height: 120px;
    }

    .about-stats {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .about-social {
      gap: 0.75rem;
    }

    .about-social-btn {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }

    /* About Me Horizontal Mobile */
    .about-me-horizontal {
      padding: 3rem 1rem;
    }

    .about-me-horizontal-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }

    .about-me-image-horizontal img {
      width: 150px;
      height: 150px;
    }

    .about-social-horizontal {
      flex-direction: row;
      justify-content: center;
      gap: 1.5rem;
    }

/* Related Recipes Styles */
.related-recipes {
  padding: 3rem 2rem;
  background: var(--neutral-beige);
}

.related-recipes h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #2f4f2f;
  text-align: center;
  margin-bottom: 2.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.recipe-card-small {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.recipe-card-small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recipe-card-small .recipe-info {
  padding: 1.5rem;
}

.recipe-card-small h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #2f4f2f;
  margin: 0 0 0.75rem 0;
}

.recipe-card-small .recipe-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.recipe-card-small .time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.recipe-card-small .difficulty {
  padding: 0.25rem 0.5rem;
  background: var(--light-pink);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

  }

/* Recipe Content Container */
.recipe-content-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 3rem;
  align-items: flex-start;
}

/* Recipe Content */
.recipe-content {
  flex: 1;
  min-width: 0;
  order: 1;
}

/* About Me Sidebar Styles */
.about-me-sidebar {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 0 0 320px;
  order: 2;
}

.about-me-content {
  padding: 2rem;
  text-align: center;
}

.about-me-image {
  margin-bottom: 1.5rem;
}

.about-me-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light-pink);
}

.about-me-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #2f4f2f;
  margin: 0 0 1rem 0;
}

.about-me-sidebar p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #2f4f2f;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.more-about-btn {
  display: inline-block;
  background: #f7d1d8;
  color: #2f4f2f;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.more-about-btn:hover {
  background: #f2b8c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-social {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.about-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.about-social-btn.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: white;
}

.about-social-btn.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.about-social-btn.tiktok {
  background: #000;
  color: white;
}

.about-social-btn.tiktok:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-social-btn.youtube {
  background: #FF0000;
  color: white;
}

.about-social-btn.youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.about-social-btn.pinterest {
  background: #E60023;
  color: white;
}

.about-social-btn.pinterest:hover {
  background: #bd001c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.3);
}

/* Search Overlay - Modal Styles */
.search-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.8) !important;
  z-index: 999999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
}

.search-overlay.show {
  display: flex !important;
}

.search-container {
  background: white !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  width: 90% !important;
  max-width: 400px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  z-index: 1000000 !important;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.search-header h3 {
  margin: 0;
  color: #2f4f2f;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.search-close {
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.search-close:hover {
  color: #333;
}

.search-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.search-input:focus {
  outline: none;
  border-color: #2f4f2f;
}

.search-results {
  max-height: 300px;
  overflow-y: auto;
}

.search-result-item {
  padding: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.search-result-item:hover {
  background: #f8f8f8;
}

.search-result-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.search-result-title {
  font-weight: 600;
  color: #2f4f2f;
  margin-bottom: 0.25rem;
}

.search-result-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Mobile adjustments for search */
@media (max-width: 768px) {
  .search-overlay {
    align-items: flex-start !important;
    padding-top: 2rem !important;
  }

  .search-container {
    margin: 0 1rem !important;
    width: calc(100vw - 2rem) !important;
  }
}

