* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {

  color: black;
}

header {
  background-color: #1a4dc4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 120px;
  width: auto
}

.nav-buttons button {
  background: white;
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
}

.nav-buttons button:hover {
background-color :black;
color :white;
}

.hero {
  background-image: url('biltong-cutting-board.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
}

.hero-content h1 {
  font-size: 3em;
  font-weight: bold;
}

.hero-content p {
  margin-top: 15px;
  font-size: 1.2em;
}

.hero-content button {
  margin-top: 20px;
  background-color: black;
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  cursor: pointer;
}

.hero-content button:hover {
background-color: grey

}

.about {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1 1 300px;
  padding: 20px;
}

.about-text h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 20px;
  color: #444;
}

.about-text button {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}
 
.about-text button:hover {
background-color:grey
}

.about-img {
  flex: 1 1 300px;
  padding: 20px;
  text-align: center;
}

.about-img img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
}

.party-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.circle-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.bordered {
  border: 8px solid black;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

h1, h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #333;
}

.contact-info {
  margin-top: 40px;
  text-align: center;
  font-size: 0.95em;
}

.menu-buttons button {
  background:black;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
}

.menu-buttons button:hover {
background-color :#817f7f;
color :white;
}

.body-menu{

    background-color: #000;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box; /* Ensures padding is included in the width */
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px); /* Simple hover effect */
}

.product-name {
    font-size: 1.5em;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.product-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-price {
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
}
