/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  border-bottom: 2px solid #fff;
  z-index: 1000;
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0,0,0,0.95);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 120px !important;
  height: 120px !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 50%;
  filter: grayscale(100%);
  object-fit: cover;
  display: block;
}

.logo-text {
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,1)),
    url("https://images.unsplash.com/photo-1634922951968-11ca107aa6e3");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 6px;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 2px;
}

/* ---------- Features ---------- */
.feature {
  padding: 5rem 2rem;
  background: #111;
}

.feature.dark {
  background: #000;
}

.feature-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-grid.reverse {
  direction: rtl;
}

.feature-grid.reverse > * {
  direction: ltr;
}

.feature-image {
  height: 360px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.feature-image img {
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.feature-image img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}


.feature-image.freshness {
  background-image: url("https://images.unsplash.com/photo-1670897522818-eb7435d96fdb");
}

.feature-image.handpicked {
  background-image: url("https://images.unsplash.com/photo-1528446558593-05d60f8d4ae9");
}

.feature-text h2 {
  font-size: 2.5rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

/* ---------- Products ---------- */
.products {
  padding: 5rem 2rem;
}

.products h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.product-card img {
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.product-card img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  filter: grayscale(100%);
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #000;
  color: #fff;
}

.footer-instagram img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-instagram img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-instagram img {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}

