body {
    margin: 0;
    font-family: 'Jura', sans-serif;
    background-color: #f6f6f6;
}

header {
    position: relative;
    background-image: url('/img_inicio/comidachina.jpg');
    background-size: cover;
    background-position: center;
    height: 220px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 0;
}

header .top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

header .top nav {
    display: flex;
    gap: 20px;
}

header img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

nav a {
    position: relative;
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Jura', sans-serif;
    font-size: 18px;
    margin-right: 6px;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #E09E59;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

header h1 {
    position: relative;
    font-family: 'Kaushan Script', cursive;
    font-size: 60px;
    text-align: center;
    margin-bottom: 10px;
    z-index: 1;
}

body nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  gap: 40px;
}

body nav ul li {
  display: flex;
  align-items: center;
}

body nav ul li a {
  display: flex;
  align-items: center;
  font-family: 'Jura', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: black;
  text-decoration: none;
}

body nav ul li a img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}


.menu{
    text-align: center;
}

h2{
    text-align: center;
    font-size: 40px;
}

.menu h2{
    font-size: 40px;
}

.container{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.platillo{
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 220px;
    font-family: 'Jura', sans-serif;
}

.platillo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.platillo:hover{
    transform: scale(1.050);
    transition: transform 0.2s ease-in-out;
}

.footer-banner {
    width: 100%;
    height: 200px;
    background-image: url('/img_inicio/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer {
    background-color: #973131;
    color: white;
    font-family: 'Jura', sans-serif;
    padding: 40px 30px;
}

.footer-content {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.footer-logo img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Kaushan Script', cursive;
}

.footer-column p,
.footer-column a {
    font-size: 17px;
    margin: 6px 0;
    color: white;
    text-decoration: none;
    font-family: 'Jura', sans-serif;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column:last-child {
    text-align: right;
}


