/* ===========================
   GOOGLE RESET
=========================== */

    /* Premium Design Variables - Inherited from user_homepage */
    :root {
      --primary-dark: #6b1d38;    /* Deep premium maroon */
      --accent-pink: #b84360;     /* UI Accent interactives */
      --card-pink: #fdaeae;       /* Smooth highlight color */
      --card-bg: #f5aca5;         /* Card body bounding fill */
      --text-dark: #4a0d20;       /* High-contrast accessible typography */
      --glass-base: rgba(255, 255, 255, 0.45);
      --sidebar-glass: rgba(255, 234, 230, 0.88);
    }


    /* Premium Color Scheme Variables */
:root {
  --primary-dark: #6b1d38;    /* Deep premium maroon */
  --accent-pink: #b84360;     /* UI Interaction accents */
  --card-pink: #fdaeae;       /* Light pink highlights */
  --text-white: #fff9f2;      /* Accessible contrast input text */
  --glass-header: rgba(255, 255, 255, 0.45);
}

/* ========================================================
   GLOBAL COMPONENT HEADER CONTAINER LAYOUT
   ======================================================== */
header {
  width: 100%;
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--glass-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(107, 29, 56, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* ========================================================
   1. SEARCH BAR STYLES (Soft-glow Expansion on Active Focus)
   ======================================================== */
.search-bar {
  flex: 1;
  max-width: 480px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.search-bar input {
  width: 100%;
  padding: 12px 20px 12px 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(107, 29, 56, 0.9); /* Deep Maroon Base Tint */
  border-radius: 30px;
  font-size: 14px;
  color: var(--text-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-bar input::placeholder {
  color: rgba(255, 249, 242, 0.7);
}

/* Expands input frame area and brightens back-plate illumination glow */
.search-bar input:focus {
  outline: none;
  background-color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(107, 29, 56, 0.3);
  transform: scale(1.02);
}

/* Search vector magnifying glass icon position tracking overlays */
.search-bar i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-white);
  transition: all 0.3s ease;
  pointer-events: none;
}

.search-bar input:focus + i {
  color: var(--card-pink);
  transform: translateY(-50%) scale(1.15);
}

/* ========================================================
   2. HOME, ABOUT & LOGIN INTERACTIVE LINKS (Magnetic Slideline)
   ======================================================== */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s ease;
}

/* Target internal vectors inside nav block wrappers */
.nav-links a i {
  color: var(--accent-pink);
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-pink);
}

.nav-links a:hover i {
  transform: translateY(-3px); /* Gentle micro lift animation trigger */
}

/* Magnetic sliding border underlay structure rules */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-pink);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Custom image fallback styling rule mapping for Login PNGs */
.custom-login-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.nav-links a:hover .custom-login-icon {
  transform: scale(1.18);
}

/* ========================================================
   FLUID RESPONSIVE MEDIA BREAKPOINTS
   ======================================================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 16px 4%;
  }
  .search-bar {
    width: 100%;
    max-width: 100%;
    margin: 12px 0;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 24px;
  }
}
/* Color Palette Variables used for the Search Bar */
:root {
  --primary-dark: #6b1d38;   /* Deep premium maroon */
  --card-pink: #fdaeae;      /* Light pink highlight color */
  --text-white: #fff9f2;     /* Off-white input text */
}

/* 1. Main Wrapper positioning */
.search-bar-container {
  flex: 1;
  max-width: 450px;
  position: relative;
  display: flex;
  align-items: center;
}

/* 2. Input Field Styling */
.search-bar-container input {
  width: 100%;
  padding: 12px 20px 12px 48px; /* Extra left padding to leave room for the icon */
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(107, 29, 56, 0.88); /* Semi-transparent maroon base */
  border-radius: 30px;
  font-size: 14px;
  color: var(--text-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Placeholder Color styling */
.search-bar-container input::placeholder {
  color: rgba(255, 249, 242, 0.75);
}

/* 3. Expanding & Glowing Focus State */
.search-bar-container input:focus {
  outline: none;
  background-color: var(--primary-dark); /* Solid maroon on focus */
  box-shadow: 0 8px 20px rgba(107, 29, 56, 0.25); /* Glowing shadow drop */
  transform: scale(1.02); /* Delicate scale growth */
}

/* 4. Search Icon Positioning & Focus Transformation */
.search-icon {
  position: absolute;
  left: 18px;
  color: var(--text-white);
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
  pointer-events: none; /* Allows user clicks to pass through to the input */
}

/* Animates and highlights the icon when the user focuses the input fields */
.search-bar-container input:focus + .search-icon {
  transform: scale(1.15);
  color: var(--card-pink);
}
    /* GLOBAL RESETS & SMOOTH ENTRY ANIMATIONS */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      display: flex;
     
      background-size: cover;
      color: var(--text-dark);
      min-height: 100vh;
      overflow-x: hidden;
      animation: fadeInPage 0.8s ease-out forwards;
    }

    /* GLASS DESIGN SIDEBAR WITH INTERACTIVE HOVERS */
    .sidebar {
      width: 280px;
      background: var(--sidebar-glass);
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      height: 100vh;
      position: fixed;
      left: 0;
      top: 0;
      display: flex;
      flex-direction: column;
      padding: 35px 24px;
      border-right: 1px solid rgba(255, 255, 255, 0.4);
      z-index: 100;
      box-shadow: 4px 0 30px rgba(107, 29, 56, 0.08);
    }

    .logo-container {
      text-align: center;
      margin-bottom: 35px;
      cursor: pointer;
    }

    .logo-circle {
      width: 75px;
      height: 75px;
      background-color: var(--primary-dark); 
      border-radius: 50%;
      border: 3px solid #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 8px 20px rgba(105, 27, 49, 0.2);
      overflow: hidden;
      margin: 0 auto 12px auto;
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .logo-container:hover .logo-circle {
      transform: scale(1.1) rotate(10deg);
    }

    .logo-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .logo-container h2 {
      color: var(--primary-dark);
      font-family: 'Georgia', serif;
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .tagline {
      font-size: 12px;
      color: var(--accent-pink);
      font-weight: 600;
      opacity: 0.85;
      margin-top: 4px;
    }

    .filter-menu {
      flex-grow: 1;
      overflow-y: auto;
      padding-right: 4px;
      margin-bottom: 15px;
    }

    .filter-menu::-webkit-scrollbar {
      width: 4px;
    }
    .filter-menu::-webkit-scrollbar-thumb {
      background: rgba(184, 67, 96, 0.3);
      border-radius: 4px;
    }

    .filter-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 16px;
      color: var(--text-dark);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      overflow: hidden;
    }

    /* Subtle reflection glow on filtering items hover */
    .filter-item::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: all 0.4s ease;
    }

    .filter-item:hover::before {
      left: 100%;
    }

    .filter-item:hover {
      background: var(--primary-dark);
      color: #ffffff;
      transform: translateX(8px);
      box-shadow: 0 4px 15px rgba(107, 29, 56, 0.2);
    }

    .filter-item i {
      font-size: 11px;
      color: var(--accent-pink);
      transition: transform 0.3s ease;
    }

    .filter-item:hover i {
      color: #ffffff;
      transform: translateX(4px);
    }

    .reset-btn {
      padding: 14px 0;
      width: 100%;
      background: #fff9f2;
      border: 2px solid var(--accent-pink);
      color: var(--accent-pink);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.2px;
      border-radius: 50px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(184, 67, 96, 0.1);
      transition: all 0.25s ease;
    }

    .reset-btn:hover {
      background: var(--accent-pink);
      color: #ffffff;
      box-shadow: 0 6px 20px rgba(184, 67, 96, 0.3);
      transform: translateY(-3px);
    }

    /* DYNAMIC TRANSLUCENT WORKSPACE CONTENT CONTAINER */
    .main-content {
      margin-left: 280px;
      flex-grow: 1;
      padding: 30px 50px 50px 50px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* IMMERSIVE DISPLAY PANELS SECTION WRAPPER */
    .recipe-section {
      width:100%;
      margin-top: 40px;
      background: var(--glass-base);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      padding: 35px;
      border-radius: 40px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.03);
      opacity: 0;
      transform: translateY(20px);
      animation: sectionReveal 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    
    .recipe-section:nth-of-type(2) {
      animation-delay: 0.2s;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      border-bottom: 2px solid rgba(107, 29, 56, 0.1);
      padding-bottom: 14px;
    }

    .section-header h3 {
      font-family: 'Georgia', serif;
      font-size: 2rem;
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      font-weight: 700;
    }

    .section-icon {
      margin-right: 12px;
      color: var(--accent-pink);
      animation: iconPulse 2s infinite alternate;
    }

    .view-all {
      text-decoration: none;
      color: var(--accent-pink);
      font-weight: 700;
      font-size: 0.95rem;
      background: #fff9f2;
      padding: 8px 22px;
      border-radius: 50px;
      border: 1.5px solid rgba(184, 67, 96, 0.25);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .view-all:hover {
      background: var(--accent-pink);
      color: #ffffff;
      border-color: var(--accent-pink);
      transform: translateX(6px);
    }

    /* HIGH-ATTRACTIVE FLUID LAYOUT RECIPE CARDS */
    .recipe-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .recipe-card {
      background: var(--card-bg);
      border-radius: 32px;
      overflow: hidden;
      padding: 24px;
      box-shadow: 0 10px 25px rgba(107, 29, 56, 0.04);
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .recipe-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 45px rgba(107, 29, 56, 0.16);
    }

    .image-container {
      position: relative;
      height: 200px;
      width: 100%;
      border-radius: 22px;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .recipe-card:hover .image-container img {
      transform: scale(1.1);
    }

    .badge {
      position: absolute;
      top: 14px;
      left: 14px;
      padding: 5px 12px;
      font-size: 11px;
      font-weight: 800;
      border-radius: 50px;
      letter-spacing: 0.8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 2;
      animation: badgePulse 2s infinite alternate;
    }

    .badge.veg {
      background-color: #2e7d32;
      color: #ffffff;
    }

    .favorite-btn {
      position: absolute;
      top: 14px;
      right: 14px;
      background: #fff9f2;
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--primary-dark);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 2;
    }

    .favorite-btn:hover {
      transform: scale(1.2);
    }

    /* Class logic for JavaScript action mapping triggers heart keyframes */
    .favorite-btn.favorited i {
      color: var(--accent-pink);
    }
    .favorite-btn.pop-heart i {
      animation: heartPopEffect 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    .card-body h4 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text-dark);
      font-family: 'Georgia', serif;
    }

    .cuisine {
      font-size: 13px;
      color: var(--primary-dark);
      opacity: 0.85;
      margin-bottom: 16px;
      font-weight: 600;
    }

    .card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      margin-bottom: 20px;
      font-weight: 600;
      color: var(--text-dark);
      background: rgba(255, 255, 255, 0.4);
      padding: 8px 14px;
      border-radius: 12px;
      transition: background 0.3s ease;
    }

    .recipe-card:hover .card-meta {
      background: rgba(255, 255, 255, 0.6);
    }

    .rating i {
      color: #ffb300;
      margin-right: 3px;
    }

    .time i {
      color: var(--accent-pink);
      margin-right: 4px;
    }

    .view-recipe-btn {
      width: 100%;
      padding: 12px 0;
      background-color: #fff9f2;
      color: var(--accent-pink);
      border: 2px solid var(--accent-pink);
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: color 0.3s ease, box-shadow 0.3s ease;
    }

    .view-recipe-btn::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: var(--accent-pink);
      z-index: -1;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .view-recipe-btn:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }

    .view-recipe-btn:hover {
      color: #ffffff;
      box-shadow: 0 6px 18px rgba(184, 67, 96, 0.25);
    }

    /* KEYFRAME TRANSITION SPECIFICATIONS */
    @keyframes fadeInPage {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes sectionReveal {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes iconPulse {
      0% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
      100% { transform: scale(1.12); filter: drop-shadow(0 2px 4px rgba(184,67,96,0.2)); }
    }
    @keyframes badgePulse {
      0% { transform: scale(1); }
      100% { transform: scale(1.03); }
    }
    @keyframes heartPopEffect {
      0% { transform: scale(1); }
      50% { transform: scale(1.4); }
      100% { transform: scale(1); }
    }

    /* LIQUID DISPLAY BREAKPOINTS FOR SCREEN SIZES */
    @media (max-width: 1200px) {
      .recipe-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 850px) {
      .sidebar { display: none; }
      .main-content { margin-left: 0; padding: 20px; }
    }
    @media (max-width: 600px) {
      .recipe-grid { grid-template-columns: 1fr; }
      .recipe-section { padding: 20px; }
    }



     
    /* GLOBAL SETTINGS */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      display: flex;
      background-color: #fff5f3;
      color: #333333;
    }

    /* SIDEBAR BRANDING + ACCORDION FILTERS */
    .sidebar {
      width: 240px;
      background-color: #ffeae6;
      height: 100vh;
      position: fixed;
      left: 0;
      top: 0;
      display: flex;
      flex-direction: column;
      padding: 25px 20px;
      border-right: 1px solid #ffd4cc;
    }

    .logo-container {
      text-align: center;
      margin-bottom: 25px;
    }

    .logo-icon {
      background-color: #8a1538;
      color: white;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px auto;
      font-size: 1.25rem;
    }

    .logo-container h2 {
      color: #8a1538;
      font-size: 1.3rem;
      font-weight: bold;
    }

    .tagline {
      font-size: 11px;
      color: #8a1538;
      opacity: 0.8;
      margin-top: 2px;
    }

    .filter-menu {
      flex-grow: 1;
      overflow-y: auto;
      padding-right: 2px;
    }

    .filter-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 5px;
      border-bottom: 1px solid #ffd4cc;
      font-size: 13px;
      font-weight: bold;
      color: #61403c;
      cursor: pointer;
    }

    .filter-item i {
      font-size: 11px;
      color: #8a1538;
    }

    .filter-item.disabled {
      color: #bfa3a0;
    }

    .filter-item.disabled i {
      color: #bfa3a0;
    }

    .reset-btn {
      margin-top: 15px; 
      padding: 11px 0;
      width: 100%;
      background-color: #fcaea1;
      border: none;
      color: #8a1538;
      font-size: 11px;
      font-weight: bold;
      letter-spacing: 1px;
      border-radius: 20px;
      cursor: pointer;
    }

    /* MAIN CONTENT AREA */
    .main-content {
      margin-left: 240px;
      flex-grow: 1;
      padding: 40px;
    }

    /* TOP HEADER */
    .top-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    .search-bar-container {
      position: relative;
      width: 50%;
    }

    .search-bar-container input {
      width: 100%;
      padding: 12px 20px 12px 45px;
      border-radius: 25px;
      border: 1px solid #ffd4cc;
      background-color: #ffffff;
      outline: none;
      font-size: 14px;
    }

    .search-icon {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: #8a1538;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .header-link {
      color: #8a1538;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
    }

    .header-link i {
      margin-right: 5px;
    }

    .login-btn {
      color: #8a1538;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
    }

    .login-btn i {
      margin-right: 5px;
    }

    /* RECIPE SECTIONS */
    .recipe-section {
      margin-bottom: 40px;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .section-header h3 {
      font-size: 20px;
      color: #333333;
      display: flex;
      align-items: center;
    }

    .section-icon {
      margin-right: 10px;
    }

    .red-icon {
      color: #d12e49;
    }

    .view-all {
      color: #d12e49;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
    }

    /* RECIPE GRID & CARDS */
    .recipe-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .recipe-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #ffd4cc;
    }

    .image-container {
      position: relative;
      height: 150px;
    }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 3px 6px;
      font-size: 10px;
      font-weight: bold;
      border-radius: 4px;
    }

    .badge.veg {
      background-color: #2e7d32;
      color: white;
    }

    /* Favorite Button Styling */
    .favorite-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: white;
      border: none;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #666;
      transition: all 0.2s ease;
    }

    /* Color rule applied when heart is clicked and gets active color */
    .favorite-btn.favorited i {
      color: #d12e49;
    }

    .card-body {
      padding: 15px;
    }

    .card-body h4 {
      font-size: 16px;
      margin-bottom: 4px;
      color: #333333;
    }

    .cuisine {
      font-size: 12px;
      color: #777777;
      margin-bottom: 15px;
    }

    .card-meta {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      margin-bottom: 15px;
    }

    .rating {
      font-weight: bold;
    }

    .rating i {
      color: #ffb300;
    }

    .rating span {
      color: #888888;
    }

    .time {
      color: #666666;
    }

    .view-recipe-btn {
      width: 100%;
      padding: 10px 0;
      background-color: #d12e49;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
    }
  
    



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --primary:#691B31;
    --secondary:#A83D61;
    --bg:#F7E4D7;
    --white:#ffffff;
    --text:#6B5647;
    --light:#FFF7F2;
    --shadow:0 20px 50px rgba(105,27,49,.12);

}

body{
      background: url('bg-cooking.jpg') no-repeat center center fixed;
    font-family:'Plus Jakarta Sans',sans-serif;

    background:
    linear-gradient(rgba(255,250,247,.55),
    rgba(255,250,247,.55)),
    url("bg-cooking.jpg") no-repeat center center fixed;

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    color:var(--primary);
    overflow-x:hidden;
}

/* NAVBAR*/

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 8%;
}

.logo img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:var(--primary);
    font-weight:600;
    font-size:17px;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--secondary);
}

.active{
    color:var(--secondary)!important;
}

/*HERO SECTION*/

.hero{
    height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
}

.hero-content{
    max-width:700px;
}

.hero h5{
    color:var(--secondary);
    letter-spacing:5px;
    font-size:16px;
    margin-bottom:20px;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:55px;
    color:var(--primary);
    margin-bottom:25px;
}

.hero p{
    color:var(--text);
    font-size:20px;
    line-height:34px;
    margin-bottom:45px;
}

.hero-btn{
    display:inline-block;
    padding:18px 45px;
    border-radius:50px;
    background:linear-gradient(45deg,#691B31,#B94C73);
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
    box-shadow:0 10px 30px rgba(105,27,49,.2);
}

.hero-btn:hover{
    transform:translateY(-5px);
}

/* CONTACT SECTION */

.contact-section{
    padding:100px 8%;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    background:rgba(255,255,255,.65);
    backdrop-filter:blur(20px);
    border-radius:40px;
    padding:70px;
    box-shadow:var(--shadow);
}

/* LEFT SIDE */

.small-heading{
    color:var(--secondary);
    letter-spacing:3px;
    font-weight:700;
}

.contact-left h2{
    font-family:'Playfair Display',serif;
    font-size:35px;
    margin:20px 0;
    color:var(--primary);
}

.contact-left p{
    color:var(--text);
    line-height:20px;
    font-size:16px;
}

.contact-info{
    margin-top:45px;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:25px;
}

.icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#FCE7EF;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--secondary);
    font-size:22px;
}

.info-box h4{
    margin-bottom:6px;
    font-size:18px;
}

.info-box p{
    font-size:16px;
}

/* RIGHT SIDE */

.form-card{
    background:white;
    border-radius:35px;
    padding:50px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.form-card h2{
    text-align:center;
    font-family:'Playfair Display',serif;
    color:var(--primary);
    margin-bottom:10px;
}

.form-card>p{
    text-align:center;
    color:gray;
    margin-bottom:40px;
}

.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.input-group{
    display:flex;
    flex-direction:column;
    margin-bottom:25px;
}

.input-group label{
    margin-bottom:8px;
    font-weight:600;
    color:var(--primary);
}

.input-group input,
.input-group textarea{
    border:none;
    border-bottom:2px solid #ddd;
    padding:12px 0;
    font-size:16px;
    background:transparent;
    outline:none;
    transition:.3s;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:var(--secondary);
}

/* SEND BUTTON */

form button{
    width:100%;
    padding:18px;
    border:none;
    outline:none;
    cursor:pointer;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#691B31,#B94C73);
    margin-top:10px;
    transition:.35s ease;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    box-shadow:0 15px 30px rgba(105,27,49,.25);
}

form button:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 40px rgba(105,27,49,.35);
}

form button i{
    font-size:18px;
}

/* INPUT PLACEHOLDER */

input::placeholder,
textarea::placeholder{
    color:#b7a5a5;
}

textarea{
    resize:none;
}

/* FORM HOVER EFFECT */

.input-group input:hover,
.input-group textarea:hover{
    border-bottom:2px solid #A83D61;
}

/* CONTACT CARD ANIMATION */

.contact-container{
    animation:fadeUp 1.2s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(70px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* HERO ANIMATION */

.hero-content{
    animation:zoomIn 1.3s ease;
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}

/* FLOATING DECORATION */

body::before{
    content:"";
    position:fixed;
    width:220px;
    height:220px;
    background:#FFD9E7;
    border-radius:50%;
    top:-80px;
    left:-60px;
    opacity:.35;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:280px;
    height:280px;
    border-radius:50%;
    background:#FFEBCB;
    right:-100px;
    bottom:-100p;
    opacity:.4;
    z-index:-1;
}

/* CUSTOM SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#FDEFEA;
}

::-webkit-scrollbar-thumb{
    background:#B94C73;
    border-radius:30px;
}

::-webkit-scrollbar-thumb:hover{
    background:#691B31;
}

/* FOOTER */

footer{
    margin-top:120px;
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(20px);
    padding:70px 10%;
    text-align:center;
}

.footer-content h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    margin-bottom:20px;
    color:#691B31;
}

.footer-content p{
    color:#6B5647;
    margin-bottom:25px;
    font-size:17px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.footer-links a{
    text-decoration:none;
    color:#691B31;
    font-weight:600;
    transition:.3s;
}

.footer-links a:hover{
    color:#A83D61;
}

.copyright{
    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:1100px){

.contact-container{
grid-template-columns:1fr;
gap:50px;
padding:50px;
}

.hero h1{
font-size:60px;
}

.contact-left h2{
font-size:45px;
}
}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:25px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.hero{
height:80vh;
}

.hero h1{
font-size:46px;
}

.hero p{
font-size:17px;
line-height:28px;
}

.contact-section{
padding:70px 20px;
}

.contact-container{
padding:35px;
border-radius:30px;
}

.row{
grid-template-columns:1fr;
}

.form-card{
padding:30px;
}

.contact-left h2{
font-size:36px;
}

.footer-content h2{
font-size:36px;
}
}

@media(max-width:500px){

.logo img{
width:70px;
height:70px;
}

.hero h1{
font-size:38px;
}

.hero h5{
font-size:13px;
}

.hero-btn{
padding:15px 35px;
font-size:15px;
}

.contact-left h2{
font-size:30px;
}

.form-card{
padding:25px;
}

.info-box{
flex-direction:column;
text-align:center;
}
.footer-links{
flex-direction:column;
gap:15px;

}

}
