@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

:root {
  --brand-red: #b4351e;
  --dark-bg: #3d0000;
  --light-bg: #fff8f0;
  --cream: #fff2e2;
  --outline: #1a0e0a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fredoka', sans-serif;
  color: #2a1a12;
  background: var(--light-bg);
  line-height: 1.6;
}

.outline-text {
  color: var(--brand-red);
  -webkit-text-stroke: 1.5px var(--outline);
  text-stroke: 1.5px var(--outline);
  paint-order: stroke fill;
}

/* Header */
header {
  background: radial-gradient(circle at 50% 30%, #a11d1d 0%, #6e0505 55%, var(--dark-bg) 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #ffcf9e;
}

/* Hero */
.hero {
  background: radial-gradient(circle at 50% 20%, #c23f24 0%, #7a0505 60%, var(--dark-bg) 100%);
  color: #fff;
  text-align: center;
  padding: 0.4rem 1.5rem 2.5rem;
}

.hero-logo {
  display: block;
  margin: 0 auto 0.25rem;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  color: #ffe8d1;
}

.btn {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--outline);
  transition: transform 0.15s, background 0.2s;
}

.btn:hover {
  background: #8f2a17;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 4.5rem 1.5rem;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

/* Products */
.products {
  background: var(--cream);
}

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

.product-card {
  background: #fff;
  border: 2px solid var(--brand-red);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(180, 53, 30, 0.15);
}

.product-card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--brand-red);
}

.product-card p {
  font-size: 0.98rem;
  color: #55433a;
}

/* Contact */
.contact {
  text-align: center;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact a.email {
  font-weight: 600;
  color: var(--brand-red);
  text-decoration: none;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: #f4d9c0;
  text-align: center;
  padding: 1.8rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  nav ul {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
}
