/*
Theme Name: ChefScribe Theme
Theme URI: https://chefscribe.com
Author: Claire
Author URI: https://chefscribe.com
Description: ChefScribe WordPress Theme - YouTube recipe to card system.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chefscribe
*/

/* CSS Variables - Modern Design System */ :root { /* Colors */ --primary: #2F80ED; --primary-hover: #1E6BD6; --secondary: #F5F5F7; --accent: #10B981; --danger: #EF4444; --danger-hover: #DC2626; --background: #F9F7F1; --card: #FFFFFF; --text: #1F2937; --text-muted: #6B7280; --border: #E5E7EB; --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* Typography */ --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; /* Spacing & Sizing */ --radius: 12px; --radius-lg: 16px; --radius-pill: 50px; --spacing-xs: 0.5rem; --spacing-sm: 1rem; --spacing-md: 1.5rem; --spacing-lg: 2rem; --spacing-xl: 3rem; /* Animation */ --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); } /* Reset & Base Styles */ * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: var(--font-family); background-color: var(--background); color: var(--text); line-height: 1.6; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* Typography */ h1, h2, h3, h4, h5, h6 { font-family: var(--font-family); font-weight: 700; line-height: 1.2; margin-bottom: var(--spacing-sm); color: var(--text); } h1 { font-size: 3rem; font-weight: 800; } h2 { font-size: 2.25rem; font-weight: 700; } h3 { font-size: 1.875rem; font-weight: 600; } h4 { font-size: 1.5rem; font-weight: 600; } p { color: var(--text-muted); margin-bottom: var(--spacing-sm); font-size: 1.125rem; line-height: 1.7; } a { color: var(--primary); text-decoration: none; transition: var(--transition); } a:hover { color: var(--primary-hover); } /* Layout Containers */ .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-lg); } .container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--spacing-lg); } .logo-icon { background: #fff; /* white background */ border-radius: 8px; /* rounded corners like an app icon */ padding: 6px; /* space around the emoji */ display: inline-flex; /* keeps emoji centered */ align-items: center; justify-content: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* optional soft shadow */ } .logo-icon img { margin: 0; /* remove any weird spacing */ } /* Buttons */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--spacing-xs); padding: var(--spacing-sm) var(--spacing-lg); border: none; border-radius: var(--radius-pill); font-family: var(--font-family); font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: var(--transition); white-space: nowrap; min-height: 48px; } .btn:focus { outline: 2px solid var(--primary); outline-offset: 2px; } .btn:active { transform: scale(0.98); } .btn-primary { background-color: var(--primary); color: white; box-shadow: var(--shadow); } .btn-primary:hover { background-color: var(--primary-hover); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); } .btn-secondary { background-color: var(--secondary); color: var(--text); border: 1px solid var(--border); } .btn-secondary:hover { background-color: #E5E7EB; color: var(--text); transform: translateY(-1px); } .btn-danger { background-color: var(--danger); color: white; font-size: 0.875rem; padding: var(--spacing-xs) var(--spacing-sm); min-height: 36px; } .btn-danger:hover { background-color: var(--danger-hover); color: white; } .btn-lg { padding: var(--spacing-md) var(--spacing-xl); font-size: 1.125rem; min-height: 56px; } /* Cards */ .card { background-color: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--spacing-lg); box-shadow: var(--shadow); transition: var(--transition); } .card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } /* Header */ .site-header { background-color: rgba(250, 250, 250, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; } .header-content { display: flex; align-items: center; justify-content: space-between; height: 72px; } .header-nav { display: flex; align-items: center; gap: var(--spacing-md); } /* Hero Section */ .hero-section { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-md); } .hero-content { max-width: 600px; margin: 0 auto; } .hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: var(--spacing-md); background: linear-gradient(135deg, var(--text), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: var(--spacing-xl); line-height: 1.6; } .hero-input-container { background: white; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: var(--spacing-md); box-shadow: var(--shadow-lg); margin-bottom: var(--spacing-md); transition: var(--transition); } .hero-input-container:focus-within { border-color: #FACC15; /* Yellow */ box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.3), var(--shadow-lg); } .input-group { display: flex; gap: var(--spacing-sm); align-items: center; } .url-input { flex: 1; border: none; outline: none; font-size: 1.125rem; padding: var(--spacing-sm); background: transparent; color: var(--text); } .url-input::placeholder { color: var(--text-muted); } .help-text { font-size: 0.875rem; color: var(--text-muted); margin-top: var(--spacing-sm); } /* Saved Recipes Section */ .saved-recipes { padding: var(--spacing-xl) 0; display: none; } .saved-recipes.has-recipes { display: block; } .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--spacing-lg); flex-wrap: wrap; gap: var(--spacing-md); } .section-title { font-size: 2rem; font-weight: 700; margin: 0; } .header-actions { display: flex; gap: var(--spacing-sm); } .recipes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: var(--spacing-lg); } .recipe-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); animation: slideInUp 0.5s ease-out; } @keyframes slideInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); } .recipe-card-content { padding: var(--spacing-lg); } .recipe-title { font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: var(--spacing-sm); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .recipe-meta { display: flex; align-items: center; gap: var(--spacing-sm); font-size: 0.875rem; color: var(--text-muted); margin-bottom: var(--spacing-md); } .recipe-meta-item { display: flex; align-items: center; gap: 4px; } .recipe-actions { display: flex; gap: var(--spacing-sm); justify-content: flex-end; } /* Empty State */ .empty-state { text-align: center; padding: var(--spacing-xl); color: var(--text-muted); } .empty-illustration { font-size: 4rem; margin-bottom: var(--spacing-md); opacity: 0.5; } .empty-state h3 { color: var(--text-muted); margin-bottom: var(--spacing-sm); } /* Modal */ .recipe-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: var(--spacing-lg); background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); animation: fadeIn 0.2s ease-out; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .modal-content { background: white; border-radius: var(--radius-lg); max-width: 700px; max-height: 90vh; width: 100%; overflow-y: auto; box-shadow: var(--shadow-lg); animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); } @keyframes zoomIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } } .modal-header { display: flex; align-items: center; justify-content: space-between; padding: var(--spacing-lg); border-bottom: 1px solid var(--border); } .modal-title { font-size: 1.75rem; font-weight: 700; margin: 0; color: var(--text); } .modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); } .modal-close:hover { background: var(--secondary); color: var(--text); } .modal-body { padding: var(--spacing-lg); } .recipe-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-xl); margin-bottom: var(--spacing-lg); } .recipe-section h3 { display: flex; align-items: center; gap: var(--spacing-xs); font-size: 1.25rem; margin-bottom: var(--spacing-md); } .ingredients-list { list-style: none; padding: 0; } .ingredients-list li { padding: var(--spacing-xs) 0; border-bottom: 1px solid #F3F4F6; display: flex; align-items: center; gap: var(--spacing-sm); } .ingredients-list li:last-child { border-bottom: none; } .ingredients-list li::before { content: "•"; color: var(--primary); font-weight: bold; font-size: 1.2rem; } .steps-list { list-style: none; padding: 0; counter-reset: step-counter; } .steps-list li { padding: var(--spacing-sm) 0; border-bottom: 1px solid #F3F4F6; display: flex; gap: var(--spacing-md); counter-increment: step-counter; } .steps-list li:last-child { border-bottom: none; } .steps-list li::before { content: counter(step-counter); background: var(--primary); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 600; flex-shrink: 0; margin-top: 2px; } .modal-footer { padding: var(--spacing-lg); border-top: 1px solid var(--border); display: flex; gap: var(--spacing-sm); justify-content: flex-end; flex-wrap: wrap; } /* Toast Notifications */ .toast { position: fixed; bottom: var(--spacing-lg); right: var(--spacing-lg); background: var(--text); color: white; padding: var(--spacing-sm) var(--spacing-md); border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 1100; animation: slideInRight 0.3s ease-out; transform: translateX(100%); } .toast.show { transform: translateX(0); } @keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } } /* Footer */ .site-footer { background: white; border-top: 1px solid var(--border); padding: var(--spacing-xl) 0; margin-top: var(--spacing-xl); } .footer-content { text-align: center; color: var(--text-muted); } /* Responsive Design */ @media (max-width: 768px) { .container, .container-sm { padding: 0 var(--spacing-sm); } .hero-title { font-size: 2.5rem; } .hero-subtitle { font-size: 1.125rem; } .input-group { flex-direction: column; } .url-input { margin-bottom: var(--spacing-sm); } .recipes-grid { grid-template-columns: 1fr; gap: var(--spacing-md); } .recipe-content { grid-template-columns: 1fr; gap: var(--spacing-lg); } .section-header { flex-direction: column; align-items: flex-start; } .modal-content { margin: var(--spacing-sm); max-height: 95vh; } .modal-footer { flex-direction: column; } .header-nav { display: none; } } @media (max-width: 480px) { .hero-input-container { padding: var(--spacing-sm); } .recipe-card-content { padding: var(--spacing-md); } .modal-header, .modal-body, .modal-footer { padding: var(--spacing-md); } } /* CTA Button - Top Right Chrome Extension */ .btn-cta { background-color: #F97316; /* Vibrant orange */ color: #ffffff; font-weight: 600; border-radius: var(--radius-pill); padding: var(--spacing-sm) var(--spacing-lg); min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: var(--spacing-xs); box-shadow: var(--shadow); transition: var(--transition); text-decoration: none; cursor: pointer; white-space: nowrap; } .btn-cta:hover { background-color: #EA580C; /* Darker orange for hover */ color: #ffffff; transform: translateY(-1px); box-shadow: var(--shadow-md); } .btn-cta:focus { outline: 2px solid #FB923C; /* Light orange focus ring */ outline-offset: 2px; } .btn-cta:active { transform: scale(0.98); } @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } } .animate-shimmer { background-size: 200% 100%; animation: shimmer 3s linear infinite; } #toast-container { position: fixed; top: 1rem; right: 1rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; } .toast { background: #333; color: #fff; padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 0.9rem; box-shadow: 0 4px 6px rgba(0,0,0,0.2); opacity: 0; transform: translateY(-10px); animation: toast-in 0.3s forwards; } .toast-success { background: #16a34a; /* green */ } .toast-error { background: #dc2626; /* red */ } @keyframes toast-in { to { opacity: 1; transform: translateY(0); } } .recipes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 1rem; } .recipe-card { background: #fff; border-radius: 0.75rem; padding: 1rem; box-shadow: 0 2px 6px rgba(0,0,0,0.1); transition: transform 0.2s; } .recipe-card:hover { transform: translateY(-3px); } .recipe-card .card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; } /* --- Recipe Card Additions --- */ /* Thumbnail inside cards */ .recipe-thumb { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--border); object-fit: cover; } /* Summary text under title */ .recipe-summary { font-size: 0.95rem; color: var(--text-muted); margin-bottom: var(--spacing-sm); line-height: 1.5; } /* Channel info (author / source link) */ .recipe-channel { font-size: 0.875rem; color: var(--text-muted); margin-top: var(--spacing-xs); } .recipe-channel a { color: var(--primary); text-decoration: none; font-weight: 500; } .recipe-channel a:hover { color: var(--primary-hover); text-decoration: underline; } /* Push main content down when WordPress admin bar is showing */ body.admin-bar #primary { margin-top: 32px; /* matches the admin bar height */ } /* Extra breathing room for the Saved Recipes section */ .saved-recipes { margin-top: 4rem; /* adjust as needed */ } @keyframes floatFade { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: 0.4; } 50% { transform: translateY(-30px); opacity: 0.6; } 90% { opacity: 0.4; } 100% { transform: translateY(-60px); opacity: 0; } } .emoji-fade-float { position: absolute; opacity: 0; animation-name: floatFade; animation-timing-function: ease-in-out; } @keyframes glint { 0% { transform: translateX(-100%); } 50% { transform: translateX(100%); } 100% { transform: translateX(100%); } } .animate-glint { animation: glint 2.5s infinite; } /* Centered Progress Bar */ #usage-info { max-width: 480px; margin: 1.5rem auto 0; text-align: center; font-size: 0.95rem; color: var(--text-muted); } .progress-bar { width: 100%; height: 6px; background: var(--border); border-radius: 10px; overflow: hidden; margin-top: 0.5rem; } .progress-fill { height: 6px; background: linear-gradient(90deg, var(--accent), #16a34a); border-radius: 10px; width: 0%; transition: width 0.6s ease-in-out; } /* 🧁 Fix modal visibility — always fully visible below header */ #recipe-modal { position: fixed; top: 60px; /* push below header & WP admin bar */ left: 0; right: 0; bottom: 0; display: none; align-items: flex-start; justify-content: center; z-index: 9999 !important; overflow-y: auto; padding-top: 1rem; } /* Ensure modal content stays readable and scrollable */ #recipe-modal .bg-white { max-height: 90vh; overflow-y: auto; border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); position: relative; z-index: 10000; margin-top: 1rem; } /* Optional — smooth slide-in effect */ @keyframes slideDownModal { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } #recipe-modal .bg-white { animation: slideDownModal 0.3s ease-out; } /* --- Chrome Extension Button --- */ a.chrome-btn { background: linear-gradient(90deg, #ff7b00, #ff6600); color: #fff !important; text-decoration: none; border-radius: 9999px; font-weight: 700; padding: 1rem 2rem; display: inline-block; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); position: relative; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.3s ease; } a.chrome-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25); } /* ✨ Slow Glimmer Animation */ a.chrome-btn::before { content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0)); transform: skewX(-20deg); animation: shimmer 4s infinite; } @keyframes shimmer { 0% { left: -75%; } 50% { left: 125%; } 100% { left: 125%; } }
.chrome-btn {
  background: linear-gradient(90deg, #007bff, #005eff) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 0.9rem 2rem !important;
  border-radius: 9999px !important;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3) !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.chrome-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.45) !important;
}

.chrome-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0)) !important;
  transform: skewX(-20deg) !important;
  animation: shimmer 4s infinite !important;
}

@keyframes shimmer {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

    100% {
      left: 150%;
    }
  }
  header.site-header {
    box-shadow: none !important;
    border-bottom: none !important;
  }
  header.site-main {
    box-shadow: none !important;
    border-bottom: none !important;
    body:var(--background)
  }
  * Chrome-style gradient button (Blue version) */
.chrome-btn {
  background: linear-gradient(90deg, #007bff, #005eff);
  color: white !important;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.chrome-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.45);
}

.chrome-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  transform: skewX(-20deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}
/* Reduce gap between "See how it works" and "Your Personal Recipe Library" */
section + section {
  margin-top: 1rem !important;
}

/* Optional: if it's still too roomy, go tighter */
section + section {
  margin-top: 0.5rem !important;
}
@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-slideDown {
  animation: slideDown 0.25s ease-out;
}
/* 🌿 ChefScribe Header Menu — Smaller, Cleaner Text */
#site-navigation a,
.main-navigation a,
nav a {
    font-size: 15px !important;
    font-weight: 500;
    letter-spacing: 0.1px;
}

/* Optional nicer spacing */
nav li {
    margin: 0 10px !important;
}

/* Optional soft hover */
nav a:hover {
    color: #6B55FF !important;
    transition: color 0.15s ease;
}
/* Nav font size cleanup */
#site-navigation a,
.main-navigation a {
    font-size: 15px !important;
}
.main-navigation li {
    margin: 0 12px !important;
}
/* 🌈 ChefScribe Navigation CTA Button *//* 🌈 Cleaner, balanced ChefScribe CTA */
.cta-btn a {
    background: linear-gradient(90deg, #5B8CFF, #9B66FF); /* blue → purple (matches hero) */
    color: #fff !important;
    padding: 8px 16px !important; /* slightly smaller = better header balance */
    border-radius: 10px; /* less rounded = cleaner nav look */
    font-weight: 600;
    font-size: 14px !important;
    display: inline-block;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    margin-left: 10px; /* spacing from menu items */
}

/* Hover */
.cta-btn a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    opacity: 0.97;
}
/* 🌟 Sticky Header for ChefScribe */
.site-header, 
#masthead {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.75); /* semi-transparent */
    backdrop-filter: blur(12px); /* smooth glassy effect */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05); /* soft divider */
    box-shadow: 0 2px 4px rgba(0,0,0,0.04); /* tiny subtle shadow */
}

/* Prevent content from hiding under sticky bar */
.site-content {
    padding-top: 20px;
}
header, .site-header, #masthead {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.page-header,
.entry-header,
.wp-block-cover,
header + .site-content {
    position: relative !important;
    z-index: 1 !important;
}
/* --- FIX STICKY HEADER ON ALL PAGES --- */
header.site-header,
#masthead {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;

    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}
/* Prevent page titles from overlapping sticky header */
.entry-header,
.page-title,
header.text-center,
.text-center.mb-12,
h1 {
    position: relative !important;
    z-index: auto !important;
}
/* Ensure all page content sits beneath the sticky header */
#content,
main,
.page,
.site-main {
    position: relative !important;
    z-index: 1 !important;
}
/* Make all .btn or .button elements turn yellow on hover */
a:hover .button,
button:hover,
.btn:hover,
a.btn:hover {
    color: #Ffffff !important; /* a nice chef’s-kitchen yellow */
}
/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background-size: 200% 100%;
  animation: shimmer 5.5s linear infinite;
}

