/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff8f9;
  color: #333;
  overflow-x: hidden;
}

/* Navbar */
nav {
  background: #b81e4b;
  color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Header */
header {
  text-align: center;
  padding: 50px 20px;
  background: #ffeef2;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #b81e4b;
}

/* Cards */
.cards {
  padding: 30px 20px;
  text-align: center;
}

.cards h2 {
  margin-bottom: 20px;
  color: #b81e4b;
}

.card {
  display: inline-block;
  width: 300px;
  margin: 15px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Prices */
.price-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.price-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.price-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.price {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #b81e4b;
}

/* Contact */
.contact-section {
  padding: 40px 20px;
  text-align: center;
}

form {
  margin-top: 20px;
}

input, textarea {
  width: 90%;
  max-width: 400px;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  border: none;
  background: #b81e4b;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #8f163a;
}

/* Footer */
footer {
  background: #b81e4b;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #b81e4b;
    width: 100%;
    text-align: center;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .card, .price-card {
    width: 100%;
    margin: 10px 0;
  }
}
