:root {
  --dark: #333;
  --pearl: #f5f5f5;
  --sand: #e3dcc9;
  --olive: #8a9772;
  --coral: #e27d60;
}

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

body {
  font-family: 'Arial', sans-serif;
  color: var(--dark);
  background: var(--pearl);
  line-height: 1.5;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo img { display: block; }

.menu-toggle {
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--coral); }

#hero {
  background: url("images/hero.jpg") center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  color: white;
}

#hero h1 { font-size: 2.5rem; }
#hero p { font-size: 1.1rem; margin-top: 10px; }

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  text-align: center;
  color: var(--olive);
  margin-bottom: 20px;
}

.content-img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  border-radius: 8px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  justify-items: center;
  align-items: center;
}

.store {
  background: white;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store img {
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
  transition: transform 0.3s;
}

.store:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.store:hover img { transform: scale(1.1); }

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid var(--sand);
  border-radius: 6px;
}

button {
  padding: 12px;
  border: none;
  background: var(--coral);
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover { background: #d26450; }

.reviews { display: grid; gap: 15px; }
.review {
  background: var(--pearl);
  padding: 15px;
  border-left: 4px solid var(--olive);
  border-radius: 4px;
  font-style: italic;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: var(--pearl);
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    display: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .nav-links a { margin: 10px; }
}