/* ============================================================
   PALVRI KITCHEN — Greek Aegean Theme
   Cobalt Blue × Santorini Gold
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cobalt:      #0a2d6e;
  --cobalt-mid:  #1a5aaa;
  --gold:        #e8c040;
  --gold-dark:   #c09820;
  --sky:         #f5f8ff;
  --sky-dark:    #e0e8f5;
  --text-body:   #1e2e4a;
  --text-muted:  #5a6e90;
  --white:       #ffffff;
  --shadow:      0 8px 40px rgba(10,45,110,0.13);
  --radius:      12px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--sky);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--cobalt);
  line-height: 1.22;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { padding-left: 1.4em; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--cobalt);
  box-shadow: 0 2px 24px rgba(10,45,110,0.28);
  padding: 12px 0;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { font-size: 1.5rem; }

.logo-text {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  padding: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a2d6e 0%, #1a5aaa 100%);
  overflow: hidden;
}

/* Subtle wave pattern */
.hero-waves {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20' viewBox='0 0 100 20'%3E%3Cpath d='M0 10 Q25 0 50 10 Q75 20 100 10 L100 20 L0 20 Z' fill='rgba(232,192,64,0.04)'/%3E%3C/svg%3E");
  background-size: 200px 40px;
  background-repeat: repeat;
  animation: waveDrift 20s linear infinite;
}

@keyframes waveDrift {
  from { background-position: 0 0; }
  to   { background-position: 200px 0; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 35%, rgba(232,192,64,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(10,45,110,0.6) 0%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb--1 {
  width: 480px;
  height: 480px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(232,192,64,0.18);
}

.hero-orb--1::before {
  content: '';
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(232,192,64,0.1);
  border-radius: 50%;
}

.hero-orb--2 {
  width: 700px;
  height: 700px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(232,192,64,0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 28px 80px;
  margin-left: max(28px, calc((100vw - 1180px) / 2));
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-family: 'Montserrat', sans-serif;
}

.hero h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.76);
  max-width: 510px;
  margin-bottom: 46px;
  line-height: 1.85;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--cobalt);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 42px;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(232,192,64,0.32);
}

.hero-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,192,64,0.44);
}

/* ============================================================
   SHAPEON SECTION
   ============================================================ */
.shapeon-section {
  background: var(--cobalt);
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}

.shapeon-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,192,64,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.shapeon-section--bottom {
  background: linear-gradient(135deg, #061e50 0%, #0f3a80 100%);
}

.shapeon-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.shapeon-badge-top {
  display: inline-block;
  background: var(--gold);
  color: var(--cobalt);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.shapeon-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.shapeon-sub {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.45rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
}

.shapeon-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 52px;
  font-weight: 300;
}

/* Product Cards */
.product-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.product-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,192,64,0.2);
  border-radius: var(--radius);
  padding: 32px 26px;
  width: 100%;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.32);
  border-color: rgba(232,192,64,0.55);
}

.product-card--featured {
  background: rgba(232,192,64,0.1);
  border-color: var(--gold);
  transform: scale(1.035);
}

.product-card--featured:hover { transform: scale(1.035) translateY(-6px); }

.product-card--best {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,192,64,0.4);
}

.product-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
  background: rgba(255,255,255,0.55);
  padding: 4px 14px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
}

.product-label--featured {
  background: var(--gold);
  color: var(--cobalt);
}

.product-label--best {
  background: rgba(232,192,64,0.28);
  color: var(--gold);
}

.product-img {
  width: 140px;
  height: 160px;
  object-fit: contain;
}

.product-name {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.45rem;
  color: var(--white);
  font-weight: 700;
}

.product-price-block { text-align: center; }

.price-per {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.62);
  display: block;
  margin-bottom: 6px;
}

.price-total {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.price-old {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.38);
  text-decoration: line-through;
}

.price-new {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Cinzel', Georgia, serif;
}

.product-shipping {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.btn-buy {
  display: inline-block;
  background: var(--gold);
  color: var(--cobalt);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  margin-top: auto;
}

.btn-buy:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-buy--featured {
  background: var(--gold);
  box-shadow: 0 6px 24px rgba(232,192,64,0.35);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  padding-top: 12px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.78);
}

.trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Guarantee */
.guarantee-block {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,192,64,0.22);
  border-radius: var(--radius);
  padding: 28px 36px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-seal {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* ============================================================
   RECIPES SECTION
   ============================================================ */
.recipes-section {
  padding: 100px 28px;
  background: var(--sky);
}

.recipes-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobalt-mid);
  margin-bottom: 14px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.section-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  text-align: center;
  color: var(--cobalt);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Recipe Grid */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 36px;
}

/* Recipe Card */
.recipe-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,45,110,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  box-shadow: 0 12px 40px rgba(10,45,110,0.13);
  transform: translateY(-4px);
}

.recipe-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img { transform: scale(1.05); }

.recipe-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,45,110,0.45) 0%, transparent 55%);
}

.recipe-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.recipe-meta-top {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}

.recipe-time,
.recipe-servings {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.recipe-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.35rem;
  color: var(--cobalt);
  margin-bottom: 12px;
  line-height: 1.3;
}

.recipe-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 22px;
  flex-grow: 1;
  font-weight: 300;
}

.recipe-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--cobalt);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 6px;
  width: 100%;
  transition: background var(--transition), transform var(--transition);
}

.recipe-toggle-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-icon {
  display: inline-block;
  transition: transform var(--transition);
}

/* Recipe Details */
.recipe-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f0f5ff;
  border-top: 0px solid transparent;
}

.recipe-details.active {
  max-height: 820px;
  border-top: 2px solid var(--sky-dark);
}

.recipe-details-inner {
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.recipe-col h4 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.1rem;
  color: var(--cobalt);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.recipe-col ul {
  list-style: none;
  padding: 0;
}

.recipe-col ul li {
  font-size: 0.95rem;
  color: var(--text-body);
  padding: 5px 0;
  border-bottom: 1px solid rgba(10,45,110,0.07);
  line-height: 1.5;
}

.recipe-col ul li:last-child { border-bottom: none; }

.recipe-col ol { padding-left: 1.3em; }

.recipe-col ol li {
  font-size: 0.95rem;
  color: var(--text-body);
  padding: 6px 0 6px 4px;
  border-bottom: 1px solid rgba(10,45,110,0.07);
  line-height: 1.65;
}

.recipe-col ol li:last-child { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050f2a;
  padding: 70px 28px 30px;
  color: rgba(255,255,255,0.58);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h5 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-col a { color: rgba(255,255,255,0.58); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  margin-bottom: 24px;
}

.footer-disclaimer p {
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-bottom { text-align: center; }

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .hero-content {
    margin-left: 0;
    padding: 100px 28px 60px;
    max-width: 100%;
  }

  .hero-orb { display: none; }

  .product-cards { flex-direction: column; align-items: center; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-4px); }

  .footer-cols { grid-template-columns: 1fr; gap: 28px; }

  .recipe-details-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 18px; }

  .recipe-grid { grid-template-columns: 1fr; }

  .guarantee-block { flex-direction: column; text-align: center; }

  .trust-badges { gap: 22px; }

  .shapeon-title { font-size: 1.55rem; }
}
