/* --- Eatipid Recipes Tabbed Layout & Carousel --- */
.tab-nav {
  display: flex;
  justify-content: center;
  margin: 32px 0 24px 0;
  gap: 16px;
}

.tab-btn {
  background: #ffe082;
  border: none;
  border-radius: 20px 20px 0 0;
  padding: 12px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
}

.tab-btn.active {
  background: #ffb74d;
  color: #fff;
}

.tab-content {
  display: none;
  background: #ffe0b2;
  border-radius: 0 0 24px 24px;
  padding: 32px 0 24px 0;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.tab-content.active {
  display: block;
}

.tab-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 32px 0;
  letter-spacing: 2px;
  color: #222;
  text-align: center;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.carousel-arrow {
  background: #ffb74d;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-arrow:hover {
  background: #ff9800;
}

.carousel-items {
  display: flex;
  gap: 32px;
}

.carousel-item {
  background: #fffde7;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 16px 16px 8px 16px;
  text-align: center;
  width: 220px;
  transition: box-shadow 0.2s;
}

.carousel-item img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.item-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bookmark {
  font-size: 1.3rem;
  color: #ffb74d;
  cursor: pointer;
  transition: color 0.2s;
}

.bookmark:hover {
  color: #ff9800;
}

/* Social row icons for new layout */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 32px 0 8px 0;
}

.social-row a img {
  width: 32px;
  height: 32px;
}

@media (max-width: 900px) {
  .carousel-items {
    gap: 16px;
  }
  .carousel-item {
    width: 160px;
    padding: 10px 10px 6px 10px;
  }
  .carousel-item img {
    width: 120px;
    height: 80px;
  }
  .tab-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  .tab-btn {
    padding: 8px 12px;
    font-size: 1rem;
  }
  .carousel-items {
    flex-direction: column;
    gap: 12px;
  }
  .carousel-item {
    width: 100%;
    padding: 8px 4px 4px 4px;
  }
  .carousel-item img {
    width: 100%;
    height: 100px;
  }
}
/* styles.css */
:root {
  --bg: #f5ecd2;
  --surface: #FFE382;
  --primary: #2563eb;
  --text: #111827;
  --muted: #4b5563;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: Arial, Helvetica, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body {
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.profile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.05rem;
  text-decoration: none;
  overflow: hidden;
}

.profile-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-icon:hover {
  filter: brightness(0.95);
}

.nav-menu a:hover {
  color: var(--primary);
}

.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 5rem 0 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 520px;
}

.hero-text {
  max-width: 640px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 660px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.intro-section {
  padding: 0 0 4rem;
}

.intro-footer {
  margin-top: 3rem;
}

.feature-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.icon-card {
  min-height: 7.5rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.icon-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  .feature-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted);
}

.about {
  background: #f5ecd2;
}

.about-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
}

.site-footer {
  padding: 1.5rem 0;
  background: var(--surface);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: center;
  color: var(--muted);
}

.page-header {
  padding: 1rem 0;
}

.page-header .header-inner {
  justify-content: space-between;
}

.page-header .logo {
  margin: 0 auto;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.recipes-hero {
  background: #ffda9a;
  padding: 4rem 0;
  text-align: center;
}

.recipes-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 0.25rem;
  margin: 0;
}

.recipes-hero .hero-bar {
  width: 180px;
  height: 4px;
  background: var(--text);
  margin: 1.5rem auto 0;
  border-radius: 999px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.recipe-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.recipe-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.recipe-card h3 {
  margin: 1rem 0;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.recipe-card a {
  display: inline-block;
  margin: 0 0 1.2rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--primary);
  text-decoration: none;
  font-size: 1.5rem;
}

.social-row + p {
  text-align: center;
  margin-top: 1rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .recipe-grid {
    grid-template-columns: 1fr;
  }
  .recipes-hero {
    padding: 2.5rem 0;
  }
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.recipe-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.recipe-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.recipe-card h3 {
  margin: 1rem 0;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.recipe-card a {
  display: inline-block;
  margin: 0 0 1.2rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--primary);
  text-decoration: none;
  font-size: 1.5rem;
}

.social-row + p {
  text-align: center;
  margin-top: 1rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .recipe-grid {
    grid-template-columns: 1fr;
  }
  .recipes-hero {
    padding: 2.5rem 0;
  }
}

@media (max-width: 800px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
  }

  .hero {
    padding: 3.5rem 0;
  }
}