@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #000;
}

header {
  background: #000;
  color: white;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #222;
}

.logo img {
  height: 80px;
  display: block;
}

nav a {
  color: white;
  margin-left: 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.7;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(0,0,0,0.4);
  color: white;
  padding: 2rem 3rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  max-width: 600px;
}

.shop {
  padding: 2rem;
}

.product {
  margin-bottom: 4rem;
}

.product-images img {
  width: 200px;
  margin-right: 1rem;
  margin-top: 1rem;
}

/* Updated button styles */
.email-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.email-button:hover,
.email-button:focus {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #000 !important;
  outline: none;
}

.about, .contact {
  padding: 2rem;
}

/* Landing page specific adjustments */
body.landing .hero {
  margin-bottom: 0;
  padding-bottom: 0;
}

body.landing footer {
  margin-top: 0;
  padding-top: 1rem;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
  }

  .logo img {
    height: 60px;
    margin-bottom: 1rem;
  }

  nav {
    width: 100%;
  }

  nav a {
    display: inline-block;
    margin-left: 0;
    margin-right: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  main.shop,
  .about,
  .contact {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .product-images {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .product-images img {
    width: 100%;
    height: auto;
  }

  .hero-text {
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
    bottom: 20px;
    left: 20px;
    max-width: 90%;
  }

  /* Buttons adjust */
  .email-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  nav a {
    margin-right: 1rem;
    font-size: 0.9rem;
  }

  .hero-text {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    bottom: 15px;
    left: 15px;
  }
}
/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
  text-decoration: none;
  transition: top 0.3s;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

/* Focus outlines for keyboard navigation */
a:focus, button:focus, .email-button:focus {
  outline: 2px dashed #000;
  outline-offset: 3px;
}

