/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f3ec;
  color: #3a2c1a;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #6b4f2f; /* Whiskey brown */
  color: white;
  padding: 15px 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  text-align: center;
}

.logo {
  width: 100px;
  height: 80px;
  margin-right: 10px;
}

header h1 {
  font-size: 2rem;
  font-weight: bold;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  text-align: center;
}

nav ul li {
  margin-right: 15px;
}

nav ul li a {
  color: #ffdf91;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #c79a57; /* Whiskey gold */
  color: #fff7e6;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Products Section */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px;
}

.products article {
  background: #fff7e6;
  border: 2px solid #c79a57;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #c79a57;
  margin-bottom: 10px;
}

.products article:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Aside Offer */
aside {
  background-color: #6b4f2f;
  color: white;
  text-align: center;
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #3a2c1a;
  color: white;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
}
