body {
    font-family: Arial, sans-serif;
    background-color: #103610; /* Verde scuro */
    color: #ffffff; 
    text-align: center;
  }
  nav{
    font-family: Arial, sans-serif;
    background-color: #16502e;
  }
  
  h1 {
    
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  h2{
    margin-bottom: 20px; /* Adatta il valore in pixel o altre unità */
  }
  
  p {
    
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .menu-container {
    max-width: 800px;
    margin: 50px auto;
    background: #16502e;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border-radius: 15px;
    border: 1px solid #ffe0b2;
}

h1 {
    font-family: Arial, sans-serif;
  
    text-align: center;
    margin-bottom: 30px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid #ffcc80;
}

.menu-item:last-child {
    border-bottom: none;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.dots {
    flex: 1;
    border-bottom: 1px dotted #ffab40;
    margin: 0 10px;
    position: relative;
    top: -2px;
}

.price {
    font-weight: bold;
    color: #ffffff;
}

.description {
    font-style: italic;
    color: #e6e6e6;
}

.form-control {
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 10px 15px;
    border: 2px solid #ffd54f;
    background-color: #fff3e0;
}

.card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 20px;
    text-align: center;
    margin: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.card h3 {
    color: #d32f2f;
    margin-bottom: 15px;
}

.card p {
    font-size: 1.2em;
    color: #757575;
}

footer {
    background-color: #16502e;
    color: black;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}


footer p {
    margin: 5px 0;
    
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    
}
.card-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;}