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

body {
font-family: ‘Arial’, sans-serif;
line-height: 1.6;
color: #000;
}

/* Header */
header {
background-color: #000;
padding: 1rem 2rem;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}

.logo-header {
height: 60px;
}

nav ul {
list-style: none;
display: flex;
gap: 2rem;
}

nav a {
color: #FFD700;
text-decoration: none;
font-weight: bold;
font-size: 1.1rem;
transition: color 0.3s;
}

nav a:hover {
color: #FFF;
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
padding: 4rem 2rem;
text-align: center;
}

.hero-content {
max-width: 800px;
margin: 0 auto;
}

.logo-hero {
max-width: 400px;
width: 100%;
margin-bottom: 1rem;
}

.hero h1 {
font-size: 2.5rem;
color: #000;
margin-bottom: 1rem;
}

.hero p {
font-size: 1.3rem;
color: #333;
margin-bottom: 2rem;
}

.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}

.btn {
padding: 1rem 2rem;
font-size: 1.1rem;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
transition: all 0.3s;
display: inline-block;
}

.btn-primary {
background-color: #000;
color: #FFD700;
border: 2px solid #000;
}

.btn-primary:hover {
background-color: #FFD700;
color: #000;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
background-color: #FFF;
color: #000;
border: 2px solid #000;
}

.btn-secondary:hover {
background-color: #000;
color: #FFD700;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Section Styling */
section {
padding: 4rem 2rem;
max-width: 1200px;
margin: 0 auto;
}

section h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 1rem;
color: #000;
}

.section-subtitle {
text-align: center;
color: #666;
margin-bottom: 3rem;
font-size: 1.1rem;
}

/* Come Ordinare */
.ordering-section {
background-color: #FFF9E6;
}

.ordering-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.order-card {
background-color: #FFF;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
text-align: center;
border: 3px solid #FFD700;
}

.order-card.recommended {
border-color: #000;
background-color: #FFFEF0;
}

.order-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #000;
}

.order-card .icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.order-card p {
margin-bottom: 1.5rem;
color: #333;
}

.badge {
display: inline-block;
background-color: #FFD700;
color: #000;
padding: 0.3rem 1rem;
border-radius: 20px;
font-weight: bold;
margin-bottom: 1rem;
}

/* Specialità */
.specialties-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.specialty-card {
text-align: center;
padding: 1.5rem;
background-color: #FFF;
border-radius: 10px;
transition: transform 0.3s;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.specialty-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.specialty-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 1rem;
}

.specialty-card h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: #000;
}

.specialty-card p {
color: #666;
}

/* Dove Siamo */
.location-section {
background-color: #F5F5F5;
}

.location-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: start;
}

.location-info {
background-color: #FFF;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.location-info h3 {
font-size: 1.8rem;
margin-bottom: 1.5rem;
color: #000;
}

.info-item {
margin-bottom: 1.5rem;
display: flex;
align-items: flex-start;
gap: 1rem;
}

.info-item .icon {
font-size: 1.5rem;
color: #FFD700;
min-width: 30px;
}

.info-item div h4 {
font-size: 1.2rem;
margin-bottom: 0.3rem;
color: #000;
}

.info-item div p {
color: #666;
}

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
height: 400px;
}

.map-container iframe {
width: 100%;
height: 100%;
border: none;
}

/* Social Section */
.social-section {
text-align: center;
background-color: #000;
color: #FFF;
}

.social-section h2 {
color: #FFD700;
}

.social-links {
display: flex;
justify-content: center;
gap: 3rem;
flex-wrap: wrap;
}

.social-link {
text-align: center;
color: #FFF;
text-decoration: none;
transition: transform 0.3s;
}

.social-link:hover {
transform: scale(1.1);
}

.social-link .icon {
font-size: 4rem;
color: #FFD700;
margin-bottom: 0.5rem;
}

.social-link p {
font-size: 1.1rem;
}

/* Footer */
footer {
background-color: #000;
color: #FFF;
padding: 2rem;
text-align: center;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
}

.footer-links {
margin: 1rem 0;
}

.footer-links a {
color: #FFD700;
text-decoration: none;
margin: 0 1rem;
transition: color 0.3s;
}

.footer-links a:hover {
color: #FFF;
}

.footer-info {
margin-top: 1.5rem;
color: #999;
font-size: 0.9rem;
}

/* ============ MENU PAGE STYLES ============ */

/* Page Header */
.page-header {
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
padding: 3rem 2rem;
text-align: center;
}

.page-header h1 {
font-size: 3rem;
color: #000;
margin-bottom: 1rem;
}

.page-header p {
font-size: 1.2rem;
color: #333;
margin-bottom: 1.5rem;
}

.order-reminder {
background-color: #000;
color: #FFD700;
padding: 1rem 2rem;
border-radius: 10px;
display: inline-block;
font-weight: bold;
}

/* Menu Container */
.menu-container {
max-width: 1200px;
margin: 3rem auto;
padding: 0 2rem;
}

/* Tabs */
.tabs {
display: flex;
gap: 0;
border-bottom: 3px solid #FFD700;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.tab-button {
background-color: #FFF;
border: none;
padding: 1rem 2rem;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
border-top: 3px solid transparent;
border-left: 1px solid #DDD;
border-right: 1px solid #DDD;
color: #666;
}

.tab-button:first-child {
border-left: none;
}

.tab-button:hover {
background-color: #FFF9E6;
color: #000;
}

.tab-button.active {
background-color: #FFD700;
color: #000;
border-top-color: #000;
border-bottom: 3px solid #FFD700;
margin-bottom: -3px;
}

/* Tab Content */
.tab-content {
display: none;
animation: fadeIn 0.5s;
}

.tab-content.active {
display: block;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

/* Menu Items */
.menu-section {
margin-bottom: 3rem;
}

.menu-section h2 {
font-size: 2rem;
color: #000;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #FFD700;
}

.menu-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.5rem;
}

.menu-item {
background-color: #FFF;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
display: flex;
flex-direction: column;
}

.menu-item:hover {
transform: translateY(-3px);
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.menu-item-image {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 1rem;
}

.menu-item-content {
flex: 1;
}

.menu-item-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 0.5rem;
}

.menu-item h3 {
font-size: 1.3rem;
color: #000;
flex: 1;
}

.menu-prices {
display: flex;
gap: 1rem;
flex-direction: column;
align-items: flex-end;
}

.price {
font-size: 1.2rem;
font-weight: bold;
color: #FFD700;
background-color: #000;
padding: 0.3rem 0.8rem;
border-radius: 5px;
white-space: nowrap;
}

.price-label {
font-size: 0.8rem;
color: #666;
margin-bottom: -0.3rem;
}

/* Teglie special styling */
.teglie-item {
background: linear-gradient(135deg, #FFFEF0 0%, #FFF9E6 100%);
border: 2px solid #FFD700;
}

.teglie-prices {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.teglie-price {
flex: 1;
text-align: center;
}

.teglie-price .size-label {
font-size: 0.9rem;
color: #666;
margin-bottom: 0.3rem;
font-weight: bold;
}

/* Specialità styling */
.specialita-item {
background-color: #FFF9E6;
}

.note {
font-style: italic;
color: #666;
font-size: 0.9rem;
margin-top: 0.5rem;
}

/* Info Box */
.info-box {
background-color: #000;
color: #FFD700;
padding: 2rem;
border-radius: 10px;
text-align: center;
margin-top: 3rem;
margin-bottom: 2rem;
}

.info-box h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.info-box p {
font-size: 1.1rem;
line-height: 1.8;
}

/* CTA Section */
.cta-section {
text-align: center;
margin: 3rem 0;
}

/* ============ CHI SIAMO PAGE STYLES ============ */

.locale-image-section {
margin-bottom: 4rem;
text-align: center;
}

.locale-image {
width: 100%;
max-width: 800px;
height: 400px;
object-fit: cover;
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.image-placeholder {
width: 100%;
max-width: 800px;
height: 400px;
background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: #999;
font-size: 1.2rem;
margin: 0 auto;
border: 3px dashed #ccc;
}

.content-section {
margin-bottom: 4rem;
}

.content-section h2 {
font-size: 2.5rem;
color: #000;
margin-bottom: 1.5rem;
text-align: center;
position: relative;
padding-bottom: 1rem;
}

.content-section h2:after {
content: ‘’;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background-color: #FFD700;
border-radius: 2px;
}

.content-section p {
font-size: 1.2rem;
line-height: 1.9;
color: #333;
margin-bottom: 1.5rem;
text-align: justify;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.value-card {
background-color: #FFF;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
border-top: 4px solid #FFD700;
}

.value-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.value-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.value-card h3 {
font-size: 1.5rem;
color: #000;
margin-bottom: 1rem;
}

.value-card p {
font-size: 1rem;
color: #666;
text-align: center;
}

.highlight-box {
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
padding: 3rem;
border-radius: 15px;
text-align: center;
margin: 4rem 0;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.highlight-box h3 {
font-size: 2rem;
color: #000;
margin-bottom: 1rem;
}

.highlight-box p {
font-size: 1.3rem;
color: #333;
line-height: 1.8;
text-align: center;
}

/* ============ CONTATTI PAGE STYLES ============ */

.alert-box {
background-color: #000;
color: #FFD700;
padding: 2rem;
border-radius: 10px;
text-align: center;
margin-bottom: 3rem;
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.alert-box h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
}

.alert-box p {
font-size: 1.2rem;
line-height: 1.8;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-bottom: 4rem;
}

.contact-info {
background-color: #FFF;
padding: 2.5rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-info h2 {
font-size: 2rem;
color: #000;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 3px solid #FFD700;
}

.info-icon {
font-size: 2rem;
color: #FFD700;
min-width: 40px;
background-color: #000;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.info-content h3 {
font-size: 1.3rem;
color: #000;
margin-bottom: 0.5rem;
}

.info-content p {
font-size: 1.1rem;
color: #666;
line-height: 1.8;
}

.info-content a {
color: #000;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}

.info-content a:hover {
color: #FFD700;
}

.hours-table {
margin-top: 0.5rem;
}

.hours-row {
display: flex;
justify-content: space-between;
padding: 0.5rem 0;
border-bottom: 1px solid #eee;
}

.hours-row:last-child {
border-bottom: none;
}

.day {
font-weight: bold;
color: #000;
}

.time {
color: #666;
}

.closed {
color: #999;
font-style: italic;
}

.map-section {
background-color: #FFF;
padding: 2.5rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-section h2 {
font-size: 2rem;
color: #000;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 3px solid #FFD700;
}

.order-methods {
margin-top: 4rem;
}

.order-methods h2 {
font-size: 2.5rem;
color: #000;
text-align: center;
margin-bottom: 3rem;
}

.methods-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.method-card {
background-color: #FFF;
padding: 2.5rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
border-top: 4px solid #FFD700;
}

.method-card.recommended {
background: linear-gradient(135deg, #FFFEF0 0%, #FFF9E6 100%);
border-top: 4px solid #000;
}

.method-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.method-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
}

.method-card h3 {
font-size: 1.8rem;
color: #000;
margin-bottom: 1rem;
}

.method-card p {
font-size: 1.1rem;
color: #666;
margin-bottom: 1.5rem;
line-height: 1.8;
}

/* ============ PRIVACY & COOKIE PAGE STYLES ============ */

.content-container {
max-width: 1000px;
margin: 4rem auto;
padding: 0 2rem;
}

.policy-content {
background-color: #FFF;
padding: 3rem;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.policy-content h2 {
font-size: 1.8rem;
color: #000;
margin-top: 2rem;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #FFD700;
}

.policy-content h2:first-child {
margin-top: 0;
}

.policy-content h3 {
font-size: 1.3rem;
color: #000;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
}

.policy-content p {
font-size: 1rem;
color: #333;
margin-bottom: 1rem;
line-height: 1.8;
}

.policy-content ul {
margin-left: 2rem;
margin-bottom: 1rem;
}

.policy-content li {
font-size: 1rem;
color: #333;
margin-bottom: 0.5rem;
line-height: 1.8;
}

.policy-content strong {
color: #000;
}

.update-date {
font-style: italic;
color: #666;
margin-bottom: 2rem;
font-size: 0.95rem;
}

.back-link {
display: inline-block;
margin-top: 2rem;
padding: 1rem 2rem;
background-color: #000;
color: #FFD700;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: all 0.3s;
}

.back-link:hover {
background-color: #FFD700;
color: #000;
}

/* Responsive */
@media (max-width: 768px) {
/* Header */
.header-container {
flex-direction: column;
gap: 1rem;
padding: 0.5rem;
}

```
nav ul {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    font-size: 0.9rem;
}

/* Hero */
.hero h1 {
    font-size: 1.8rem;
}

.hero p {
    font-size: 1rem;
}

/* General sections */
section {
    padding: 2rem 1rem;
}

section h2 {
    font-size: 1.5rem;
}

.section-subtitle {
    font-size: 0.9rem;
}

/* Location */
.location-content {
    grid-template-columns: 1fr;
}

.info-item {
    padding: 1rem;
}

.info-item h4 {
    font-size: 1rem;
}

.info-item p {
    font-size: 0.85rem;
}

/* Buttons */
.cta-buttons {
    flex-direction: column;
    gap: 1rem;
}

.btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

/* Ordering section */
.ordering-cards {
    flex-direction: column;
    gap: 1rem;
}

.order-card {
    padding: 1.5rem 1rem;
}

.order-card h3 {
    font-size: 1.2rem;
}

.order-card p {
    font-size: 0.9rem;
}

.badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Specialties */
.specialties-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.specialty-card {
    padding: 1rem;
}

.specialty-card h3 {
    font-size: 1.1rem;
}

.specialty-card p {
    font-size: 0.85rem;
}

.specialty-card img {
    height: 150px;
}

/* Social section */
.social-section {
    padding: 2rem 1rem;
}

.social-section h2 {
    font-size: 1.3rem;
}

.social-links {
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    padding: 1rem;
    max-width: 100%;
}

.social-link .icon {
    font-size: 2rem;
}

.social-link p {
    font-size: 0.9rem;
}

/* Menu page */
.page-header h1 {
    font-size: 1.8rem;
}

.page-header p {
    font-size: 0.9rem;
}

.order-reminder {
    font-size: 0.85rem;
    padding: 0.8rem;
}

.tabs {
    flex-direction: column;
    gap: 0;
}

.tab-button {
    border: 1px solid #DDD;
    border-bottom: none;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
}

.tab-button:last-child {
    border-bottom: 1px solid #DDD;
}

.tab-button.active {
    border: 2px solid #FFD700;
    margin-bottom: 0;
}

.menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.menu-section h2 {
    font-size: 1.5rem;
}

.menu-item h3 {
    font-size: 1.1rem;
}

.price {
    font-size: 1rem;
}

.info-box {
    padding: 1rem;
}

.info-box h3 {
    font-size: 1.1rem;
}

/* Chi Siamo page */
.values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.value-card {
    padding: 1.5rem;
}

.value-card h3 {
    font-size: 1.1rem;
}

.content-section h2 {
    font-size: 1.5rem;
}

/* Contatti page */
.contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
}

.alert-box {
    padding: 1rem;
    font-size: 0.9rem;
}

.hours-table {
    font-size: 0.85rem;
}

.methods-grid {
    grid-template-columns: 1fr;
}

.method-card {
    padding: 1.5rem;
}

.method-card h3 {
    font-size: 1.3rem;
}

.method-icon {
    font-size: 3rem;
}

/* Privacy & Cookie pages */
.content-container {
    padding: 0 1rem;
    margin: 2rem auto;
}

.policy-content {
    padding: 1.5rem;
}

.policy-content h2 {
    font-size: 1.3rem;
}

.policy-content h3 {
    font-size: 1.1rem;
}

.policy-content p,
.policy-content li {
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 1.5rem 1rem;
}

.footer-content p {
    font-size: 0.85rem;
}

.footer-links {
    font-size: 0.8rem;
}

.footer-links a {
    font-size: 0.8rem;
}

}