@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:ital,wght@0,700;1,400&display=swap');

:root {
  --yellow: #FFD600;
  --yellow-dark: #F5C800;
  --red: #E63946;
  --red-dark: #C1121F;
  --white: #FFFFFF;
  --off-white: #FFFEF5;
  --dark: #1A1A1A;
  --gray: #666666;
  --light-gray: #F5F5F5;
  --green: #2D6A4F;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* MARQUEE */
.marquee-bar {
  background: var(--red);
  color: white;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 22s linear infinite;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAV */
nav {
  background: var(--yellow);
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--dark);
  box-shadow: 0 4px 0 var(--dark);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  background: var(--red);
  color: white;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 1rem;
}

.nav-links { display: flex; gap: 4px; list-style: none; }

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.nav-links a:hover {
  background: rgba(0,0,0,0.08);
}

.nav-links a.active {
  background: var(--dark);
  color: var(--yellow);
  border-color: var(--dark);
}

.nav-cart {
  background: var(--dark);
  color: var(--yellow);
  padding: 10px 20px;
  border: none;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-cart:hover { background: var(--red); }

/* PAGE HEADER */
.page-header {
  background: var(--yellow);
  border-bottom: 3px solid var(--dark);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-header-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(26,26,26,0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: var(--red); text-decoration: none; }

.page-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
}

.page-title em { font-style: italic; color: var(--red); }

.page-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(26,26,26,0.65);
  margin-top: 12px;
  max-width: 500px;
}

/* SECTION */
section { padding: 72px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.section-title em { font-style: italic; color: var(--red); }

/* BUTTONS */
.btn-dark {
  background: var(--dark);
  color: var(--yellow);
  padding: 13px 28px;
  border: 2px solid var(--dark);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.btn-dark:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.2); }

.btn-red {
  background: var(--red);
  color: white;
  padding: 13px 28px;
  border: 2px solid var(--dark);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.btn-red:hover { transform: translate(-2px,-2px); background: var(--red-dark); box-shadow: 5px 5px 0 rgba(0,0,0,0.2); }

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  padding: 13px 28px;
  border: 2px solid var(--dark);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.btn-yellow:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.2); }

/* FEATURES BAR */
.features-bar {
  background: var(--yellow);
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 2px solid var(--dark);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--white); }

.feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.feature-title { font-weight: 800; font-size: 0.82rem; color: var(--dark); }
.feature-desc { font-size: 0.72rem; color: rgba(26,26,26,0.65); line-height: 1.4; }

/* FOOTER */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 28px;
  border-top: 3px solid var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.fs-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  color: white;
  transition: all 0.2s;
}

.fs-btn:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }

.footer-heading {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer-credit { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer-credit a { color: var(--yellow); text-decoration: none; }

/* NOTIF */
.notif {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--yellow);
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  white-space: nowrap;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.notif.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .page-header { padding: 48px 20px; }
  .container { padding: 0 20px; }
  section { padding: 52px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 2px solid var(--dark); }
  .feature-item:nth-child(odd) { border-right: 2px solid var(--dark); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
