# style.css
This is the production-ready stylesheet decoupling architectural styling, glassmorphism design tokens, variables, interactive hover physics, and media-query grid dynamics from the raw HTML structure.
/* --- DESIGN SYSTEM CONSTANTS --- */
:root {
  --bg-primary: #FAF6F0;       /* Rich, warm cream background */
  --bg-secondary: #F3ECE2;     /* Slightly darker tone for layout depth */
  --text-main: #1C120E;        /* Dark espresso brown for maximum contrast */
  --text-secondary: #5C4D46;   /* Muted brown-gray for clear readability */
  --brand-accent: #E05A47;     /* Vibrant terracotta coral */
  --surface-card: #FFFFFF;     /* Stark white to make elements float */
  --border-subtle: #EAE2D5;    /* Soft borders */

  --font-display: 'Instrument Serif', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- RESET & GLOBAL RULES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- TOP ALERT BANNER --- */
.preview-banner {
  background-color: var(--text-main);
  color: #FAF6F0;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* --- MODERN STICKY HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 246, 240, 0.8); /* Translucent cream */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

header .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-main);
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  margin-left: 2rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--brand-accent);
}

/* Shopping Bag Icon Variant */
.bag-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- TWO-COLUMN HERO LAYOUT --- */
.hero-section {
  padding: 6rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--brand-accent);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.button-group {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background-color: var(--text-main);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--brand-accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.btn-secondary:hover {
  background-color: rgba(28, 18, 14, 0.05);
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* --- PRODUCT GRID (BAKERY CASE) --- */
.bakery-case {
  padding: 6rem 0;
  background-color: var(--surface-card);
  border-top: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(28, 18, 14, 0.06);
}

.image-wrapper {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: auto;
  color: var(--text-main);
}

.center-link {
  text-align: center;
}

.link-arrow {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.link-arrow:hover {
  color: var(--brand-accent);
}

/* --- VISIT US REGION (CARDS WITH DEPTH) --- */
.visit-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--surface-card);
  padding: 3rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(28, 18, 14, 0.02);
}

.info-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  color: var(--brand-accent);
  font-weight: 600;
}

.info-card p {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.6;
}

.info-card a {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
}

/* --- OUR STORY BRAND ESSENCE --- */
.story-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.story-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.story-box h2 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.story-box p {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* --- DEEP CHOCOLATE FOOTER SYSTEM --- */
footer {
  background-color: var(--text-main);
  color: #FAF6F0;
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  color: #A3968F;
}

.footer-col p, .footer-col a {
  color: #D3C9C4;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
  display: block;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #332621;
  padding-top: 2.5rem;
  font-size: 0.85rem;
  color: #7A6C66;
  text-align: center;
}

/* --- RESPONSIVE MOBILE TWEAKS --- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .button-group {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
