@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --main-color: #a8cf3d;
  --text-color: #333;
  --text-color-secondary: #ffffff;
  --bg-color: #a8cf3d3a;
  --font-family: 'Roboto', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;

}

.wrapper {
  background: #f8f8f8;
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.header__logo img {
  width: 60px;
  height: 60px;
}

.header__logo h1 {
  font-size: 2rem;
  color: var(--main-color);
}

main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

main a {
  display: inline-block;
  text-decoration: none;
  color: var(--text-color-secondary);
  background-color: var(--main-color);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

main a i {
  margin-right: 10px;
}

main a:hover {
  background-color: #94b735;
  color: #fff;
}

.contact,
.store,
.social,
.maps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #666;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer p{
    margin-bottom: 15px;
}

footer p:last-child{
    margin-bottom: 0px;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .header__logo h1 {
    font-size: 1.5rem;
  }

  main a {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .header__logo img {
    width: 50px;
    height: 50px;
  }
}
