/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Hero */
.logo-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  background: white;
}

.logo-hero-img {
  max-width: 420px;
  width: 70%;
  height: auto;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 2rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  white-space: nowrap;
}

.site-header-right {
  display: flex;
  justify-content: flex-end;
}

.site-logo {
  height: 70px;
  width: auto;
}

.site-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3748;
  white-space: nowrap;
}

.header-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F4879A;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-instagram:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  opacity: 0.95;
}

/* Bio Section */
.bio {
  padding: 4rem 2rem;
  background: white;
}

.bio h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}

.bio-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.bio-pic {
  flex: 0 0 260px;
}

.bio-pic img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bio-content {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a5568;
}

.bio-content p {
  margin-bottom: 1.5rem;
}

.bio-content p:last-child {
  margin-bottom: 0;
}

/* Cookie Pop-Up Section */
.cookies {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.cookies h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.cookies-intro {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.cookies-intro a {
  color: #E8394D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookies-intro a:hover {
  color: #F4879A;
  text-decoration: underline;
}

.cookie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.cookie-item {
  text-align: center;
}

.cookie-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cookie-item h3 {
  font-size: 1.5rem;
  color: #2d3748;
  font-weight: 600;
}

.all-flavors {
  max-width: 600px;
  margin: 2rem auto 2rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 8px;
}

.all-flavors p {
  margin: 0;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 560px;
  margin: 2.5rem auto;
}

.pricing-card {
  flex: 1;
  min-width: 200px;
  background: #fff5f7;
  border: 2px solid #F4879A;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
}

.pricing-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #E8394D;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-weight {
    font-weight: 300;
}
.pricing-row,
.pricing-size {
  display: flex;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid #fce4ea;
  font-size: 1rem;
  color: #4a5568;
}

.pricing-size {
  font-size: 0.8rem;
  color: #718096;
}

.pricing-size span:first-child,
.pricing-row span:first-child {
  flex: 2;
  text-align: left;
}

.pricing-size span:nth-child(n+2),
.pricing-row span:nth-child(n+2) {
  flex: 1;
  text-align: right;
}

.pricing-row:last-child {
  border-bottom: none;
}

.price {
  font-weight: 700;
  color: #2d3748;
}

.order-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #F4879A ;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(232, 57, 77, 0.25);
  margin-top: 1rem;
}

.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

/* Social Section */
.social {
  padding: 4rem 2rem;
  background: #f7fafc;
  text-align: center;
}

.social h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2d3748;
  margin-bottom: 2rem;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #F4879A ;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(232, 57, 77, 0.25);
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.instagram-button svg {
  width: 28px;
  height: 28px;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  background: #2d3748;
  color: #cbd5e0;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  body { overflow-x: hidden; }

  /* Header */
  .site-header { padding: 0.5rem 1rem; }
  .site-logo { height: 48px; }
  .site-tagline { display: none; }
  .site-header-title { font-size: 0.9rem; }
  .site-header-right .instagram-button {
    padding: 0.6rem;
    border-radius: 50%;
    gap: 0;
  }
  .site-header-right .instagram-button span { display: none; }
  .site-header-right .instagram-button svg { width: 22px; height: 22px; }

  /* Logo hero */
  .logo-hero { padding: 2rem 1rem; }

  /* Bio */
  .bio,
  .cookies,
  .social { padding: 3rem 1.5rem; }

  .bio-layout { flex-direction: column; }

  .bio-pic {
    flex: 0 0 auto;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .bio-content {
    font-size: 1rem;
    text-align: center;
  }

  /* Cookies */
  .cookie-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .cookie-photo {
    width: min(240px, 65vw);
    height: min(240px, 65vw);
  }

  /* Pricing */
  .pricing {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .site-logo { height: 40px; }

  .logo-hero { padding: 1.5rem 1rem; }

  .bio,
  .cookies,
  .social { padding: 2rem 1rem; }

  .bio-layout { gap: 1.5rem; }

  .cookie-photo {
    width: min(200px, 60vw);
    height: min(200px, 60vw);
  }

  .order-button {
    width: 100%;
    text-align: center;
  }
}
