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

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #0f0f0f;
  color: white;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

header h1 {
  font-size: 4.5rem;
  text-align: center;
}

main {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.card {
  background-color: #181614;
  padding: 20px 70px;
  border-radius: 30px;
  border: 1px solid transparent;
  box-shadow: inset 6px 6px 10px -10px #4f3823;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease-in-out;
}

.card:first-child {
  border: 1px solid #e48328;
  box-shadow: inset 1px 1px 20px #4d2e11;
}

.card:hover {
  border: 1px solid #e48328;
  box-shadow: inset 1px 1px 20px #4d2e11;
}

.card-container:hover .card:first-child {
  border: 1px solid transparent;
  box-shadow: inset 6px 6px 10px -10px #4f3823;
}

.card-img {
  width: 160px;
  height: 320px;
}

.card-img img {
  width: 100%;
  height: 100%;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card-content h2 {
  font-size: 1.9rem;
  font-weight: 500;
}

.card-content p {
  font-size: 1.1rem;
  color: #7a7a7a;
  font-weight: 500;
  padding-bottom: 5px;
}

.divider {
  height: 0.5px;
  width: 60px;
  background-color: #e48328;
}

.price {
  color: #e48328;
  font-size: 1.6rem;
  font-weight: 600;
}

.chef-special {
  display: flex;
  margin: 0px 60px;
  box-shadow: inset 6px 6px 6px -4px #4f3823;
  border-radius: 30px;
  overflow: hidden;
  background-color: #0b0b0b;
}

.img-main {
  padding: 0px 40px;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.content h2 {
  font-size: 1.1rem;
  color: #e48328;
  letter-spacing: 3px;
}

.content h3 {
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 0.8;
}

.content p {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #5c5c5c;
}

.content button {
  padding: 15px 30px;
  display: flex;
  border: 1px solid #e48328;
  font-size: 1.2rem;
  border-radius: 30px;
  gap: 30px;
  color: #e48328;
  background-color: #0e0e0e;
  cursor: pointer;
}

.content button:active {
  transform: translate(0, 1.5px);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  border-top: 1px solid #2b1d15;
  background-color: #080808;
  margin-top: 30px;
}

footer a {
  text-decoration: none;
}

.copyright {
  color: #8f8f8f;
  font-size: 1.3rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-links a {
  color: #8f8f8f;
  font-size: 1.3rem;
}

.footer-links span {
  color: #ff8c32;
}

.social-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-section p {
  color: #8f8f8f;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  width: 28px;
  height: 28px;
  border: 1px solid #ff8c32;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff8c32;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #ff8c32;
  color: #141211;
}
