:root {
  --color-light: #f8f5f2;
  --color-dark: #4a4a4a;
  --color-accent: #856adc;
  --color-accent-hover: #8b5cf6;
  --color-white: #ffffff;
  --color-gray: #6b7280;
  --color-border: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen {
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style-type: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--color-accent);
}

.hero {
  /*padding: 4rem 0;*/
  height: 60vh;
  background-image: url("lower-q.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  /*z-index: 10;*/
}

.hero-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-card p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/*------------------------------------------*/

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button.primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.button.primary:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.button.secondary {
  /*background-color:rgba(255, 255, 255, 0.1);*/
  /*background-color:transparent;*/
  background-color: #c09c26;

  color: var(--color-white);
  /*border: 1px solid var(--color-white);*/
}

.button.secondary:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  color: var(--color-white);
  transition: color 0.3s ease;
}

.social-link-1:hover {
  color: orange;
}

.social-link-2:hover {
  color: greenyellow;
}
/*
.social-links a:hover {
    color: var(--color-accent);
}*/

.about,
.products {
  padding: 2rem 0;
}

.about {
  background-color: var(--color-white);
}

.about h2,
.products h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
  aspect-ratio: 1 / 1;
  background-color: #f0e6e6;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--color-gray);
}

footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
  width: fit-content;
}

footer h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

footer ul {
  list-style-type: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-accent);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-right: none;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.newsletter-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.copyright {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-gray);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .button-group {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
