@font-face {
  font-family: 'Third Time Lucky'; 
  src: url('/fonts/Third Time Lucky DEMO.otf') format('opentype');
  font-weight: normal; 
  font-style: normal;  
}

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

body {
    background-color: #121212;
    background-image: url('/img/carta-raciones/background4.png');
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}


.menu-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 70px; 
}

.menu-header {
    text-align: center;
    margin-bottom: 20px;
}

.menu-header h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Third Time Lucky', cursive; /* <--- Aquí la aplicas */
}

.menu-header h1 span {
    font-size: 1.3rem;
}

.menu-header h2 {
    font-size: 1.5rem;
    color: #e2b74b;
    font-weight: 400;
    letter-spacing: 1px;
        font-family: 'Third Time Lucky', cursive; /* <--- Aquí la aplicas */

    

}

/* Cajas con Marcos */

.menu-section {
    width: 100%;
}

.content-box {
    position: relative;
    background: transparent;
    border: 2px solid #e2b74b; 
    margin-left: 110px; 
    padding: 30px 40px 30px 120px; 
}

.image-box {
    position: absolute;
    top: 50%;
    left: -90px; 
    transform: translateY(-50%);
    z-index: 10;
}

.image-box img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1c1c1c; 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.7);
}


.section-title {
    font-family: 'Herr Von Muellerhoff', cursive;
    font-size: 4.5rem;
    color: #ffffff;
    font-weight: 400;
    margin-left: 20px; 
    padding: 0 25px; 
}

.menu-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    width: 100%;
}

.item-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: 'Third Time Lucky'; 

}

.item-name {
    color: #ffffff;
}

.item-price {
    color: #e2b74b;
}

.item-description {
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.4;
    max-width: 95%;
}

.menu-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888888;
}


@media (max-width: 768px) {
    .content-box {
        margin-left: 0;
        padding: 40px 20px 30px 20px;
    }
    
   
    .image-box {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        margin-top: -40px;
    }

    .image-box img {
        width: 200px;
        height: 200px;
    }

    .section-title {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: 3.5rem;
    }
}