/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f9f8f4;
}

/* Header Section */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #5a2d2f; /* Wine red */
  color: #fff;
}
.logo img {
  height: 50px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(64%) saturate(547%) hue-rotate(35deg) brightness(95%) contrast(89%);
}

.nav .menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav .menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav .menu li a:hover {
  color: #d4af37; /* Gold accent */
}

.icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icons .icon img {
  height: 24px;
  cursor: pointer;
}

.search input {
  padding: 0.4rem;
  border: none;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
  background-size: cover;
  background-position: center;
  height: 60vh;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  background-color: #8c532d; /* Gold-brown */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-buttons .btn:hover {
  background-color: #d4af37; /* Gold */
}

/* Card Grid Styles */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.card p {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  color: #555;
}

.card .btn {
  background-color: #8b0000;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.card .btn:hover {
  background-color: #a30000;
}

/* Footer Section */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: #5a2d2f; /* Wine red */
  color: #fff;
}

.footer a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}
