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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #333;
    max-height: 100vh;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header Section with Logo and Hours */
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px 0px 40px;
    gap: 40px;
    border-radius: 10px 10px 0 0;
    margin-top: 20px;
}

.logo-container {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.address-container {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
    color: #519970;
}

.phone-number {
    font-size: 30px;
    font-weight: 800;
    color: #f4d35e !important;
    text-decoration: none !important;
    pointer-events: auto;
    display: inline-block;
    text-shadow: 0px 1px 2px lab(0% 0 0 / 0.3);
}

/* Empêche le navigateur de transformer le numéro en lien */
.phone-number a {
    color: #519970 !important;
    text-decoration: none !important;
}

.address-link {
    text-decoration: none;
    display: inline-block;
}

.address-link:hover .address {
    text-decoration: underline;
}

/* Hours Container */
.hours-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hours-box {
    border-radius: 10px 10px 0 0;
    padding: 25px 40px;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    background: #5a8a2e;
/*/ 
    /* Ombre intérieure en bas diffuse */
    box-shadow: inset 0px -25px 50px -15px rgba(0,0,0,0.28);

}

.hours-left {
    flex: 1;
    border-right: 2px solid #fff;
    padding-right: 30px;
}

.hours-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hours-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0;
    text-align: center;
    
}

.hours-text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 5px 0 10px 0;
    text-align: center;
}

.hours-text:last-child {
    margin-bottom: 5px;
}

.address {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0px 1px 2px lab(0% 0 0 / 0.3);
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Delivery Info */
.delivery-text {
    text-align: center;
}

.delivery-main {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.delivery-note {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    font-style: italic;
}

.delivery-icon {
    width: 80px;
    height: 50px;
    color: #000;
}

.delivery-icon svg {
    width: 100%;
    height: 100%;
}

/* Menu Navigation */
.menu-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
   /*  background: #ffffff; */
    position: relative;
    background: #f4d35e;
    padding: 20px 0px;
    border-radius: 10px 10px 0 0;
}

.nav-link {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    background: #f4d35e;
    text-shadow: 0px 1px 2px lab(0% 0 0 / 0.5);
}

.nav-link::after {
    content: '-';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    color: #e89a9c;
    font-size: 20px;
}

.nav-link:last-child::after {
    display: none;
}

.nav-link:hover {
    color: #fff;
    border-bottom-color: #f4d35e;
    transform: scale(1.05);
}

/* Page Layout */
.page {
    position: relative;
    background: #fdfbf7;
    page-break-after: always;
    border-left: 50px solid #f4d35e;
    border-right: 50px solid #f4d35e;
    margin-bottom: 20px;
}

/* Yellow Border with Squares */
.yellow-border {
    width: 100%;
    height: 40px;
    background-image: repeating-linear-gradient(
        to right,
        #f4d35e 0,
        #f4d35e 5%,
        transparent 5%,
        transparent 10%
    );
}

.yellow-border.top {
    margin-bottom: 30px;
}

.yellow-border.bottom {
    margin-top: 30px;
}

/* Content */
.content {
    padding: 0 40px 40px;
}

/* Typography */
.main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 56px;
    font-weight: 700;
    color: #5b7fdb;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.main-title.blue {
    color: #5b7fdb;
}

.main-title.center {
    margin-top: 40px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #e89a9c;
    letter-spacing: 2px;
    margin: 25px 0 15px;
    text-transform: uppercase;
}

.section-title.center {
    text-align: center;
}

.cursive-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    font-weight: 600;
    color: #35704f;
    margin: 25px 0 0px;
}

.subtitle-small {
    font-size: 11px;
    color: #e89a9c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 400;
}

.subtitle-center {
    text-align: center;
    font-size: 14px;
    color: #5a8a2e;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Wine Section */
.section-vino {
    margin-bottom: 30px;
}

.section-vino .section-title {
    display: inline-block;
    margin: 15px 0 15px 0;
    width: auto;
    min-width: 200px;
}

.table-header {
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 8px 0;
    margin-bottom: 5px;
    width: calc(100% - 220px);
    vertical-align: middle;
}

.header-item {
    font-size: 13px;
    color: #e89a9c;
    text-align: right;
    font-weight: 500;
}

.header-item.first {
    text-align: left;
}

.wine-item {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 8px 0;
    align-items: center;
}

.wine-item.simple {
    grid-template-columns: 200px 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.wine-name {
    font-size: 15px;
    color: #5a8a2e;
    font-weight: 600;
}

.wine-name.special {
    color: #35704f;
    font-weight: 600;
}

.price {
    font-size: 14px;
    color: #5a8a2e;
    text-align: right;
    font-weight: 700;
}

.price.right {
    text-align: right;
}

.special-wine {
    margin: 25px 0;
}

/* Two Columns Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.column {
    display: flex;
    flex-direction: column;
}

/* Menu Items (Drinks, etc) */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    gap: 10px;
}

.item-name {
    font-size: 14px;
    color: #5a8a2e;
    font-weight: 600;
    flex: 1;
}

.item-name.light {
    font-weight: 400;
    font-size: 12px;
    font-style: italic;
}

.menu-item .price {
    font-size: 14px;
    color: #5a8a2e;
    font-weight: 700;
    white-space: nowrap;
}

.menu-item.small {
    padding: 3px 0;
}

/* Desserts Section */
.desserts .menu-item {
    padding: 8px 0;
}

/* Pizza Section */
.pizzas {
    margin-top: 20px;
}

.pizza-item {
    margin-bottom: 18px;
}

.pizza-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.pizza-name {
    font-size: 15px;
    color: #5a8a2e;
    font-weight: 700;
}

.pizza-desc {
    font-size: 12px;
    color: #35704f;
    line-height: 1.5;
    font-weight: 500;
}

.pizza-desc.small {
    font-size: 11px;
    margin-top: -5px;
    color: #35704f;
}

.pizza-desc.centered {
    text-align: center;
    color: #5a8a2e;
    font-weight: 600;
}

.spicy {
    font-size: 16px;
    margin-left: 10px;
}

/* Highlighted Pizza */
.pizza-item.highlight .pizza-name {
    color: #5a8a2e;
    font-weight: 800;
}

/* Special Box (La Verde, La Pizza du Mois) */
.pizza-item.special-box {
    background: #5a8a2e;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
}

.special-box {
    background: #5a8a2e;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
}

.pizza-item-in-box {
    margin-bottom: 15px;
}

.pizza-item-in-box:last-child {
    margin-bottom: 0;
}

.special-box .pizza-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.special-box .pizza-desc {
    color: #ffffff;
    font-size: 13px;
    margin-top: 5px;
}

/* Menu Bambino */
.menu-bambino-title {
    margin-top: 30px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    body {
       
    }

    .menu-container {
        border-width: 20px;
    }

    .header-section {
        flex-direction: column;
        padding: 30px 20px 0px 20px;
        gap: 30px;
    }

    .logo-container {
        width: 190px;
        height: 190px;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .hours-container {
        width: 100%;
        align-items: center;
    }

    .hours-box {
        padding: 20px 25px;
        gap: 25px;
    }

    .hours-left {
        padding-right: 20px;
    }

    .hours-right {
        gap: 12px;
    }

    .hours-title {
        font-size: 18px;
    }

    .hours-text {
        font-size: 16px;
    }

    .address {
        font-size: 18px;
    }

    .delivery-main {
        font-size: 18px;
    }

    .delivery-note {
        font-size: 13px;
    }

    .delivery-icon {
        width: 70px;
        height: 45px;
    }

    .menu-nav {
        gap: 30px;
        padding: 25px 20px;
        flex-wrap: wrap;
        border-radius: 10px 10px 0 0;
    }

    .nav-link {
        font-size: 24px;
        padding: 6px 0;
    }

    .nav-link::after {
        right: -18px;
        font-size: 16px;
    }

    .content {
        padding: 0 20px 30px;
    }

    .main-title {
        font-size: 42px;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .table-header {
        font-size: 11px;
    }

    .wine-item {
        font-size: 13px;
    }

    .section-title {
        font-size: 16px;
    }

    .cursive-subtitle {
        font-size: 22px;
    }

    .header-item {
        font-size: 8px;
    }

    .price {
        font-size: 8px;
    }

    .page {
        border-width: 20px;
    }
}

@media screen and (max-width: 480px) {
    body {
      
    }

    .header-section {
        padding: 20px 15px 0 15px;
        gap: 20px;
    }

    .logo-container {
        width: 170px;
        height: 170px;
    }

    .logo {
        width: 130px;
        height: 130px;
    }

    .hours-box {
        padding: 15px 20px;
        border-width: 3px;
        border-radius: 20px;
        flex-direction: column;
        gap: 20px;
        border-radius: 10px 10px 0 0;
    }

    .hours-left {
        border-right: none;
        border-bottom: 2px solid #fff;
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
    }

    .hours-right {
        width: 100%;
        gap: 10px;
    }

    .hours-title {
        font-size: 16px;
    }

    .hours-text {
        font-size: 14px;
    }

    .address {
        font-size: 16px;
    }

    .delivery-main {
        font-size: 16px;
    }

    .delivery-note {
        font-size: 12px;
    }

    .delivery-icon {
        width: 60px;
        height: 38px;
    }

    .menu-nav {
        flex-direction: column;
        gap: 18px;
        padding: 20px 15px;
    }

    .nav-link {
        font-size: 22px;
        padding: 5px 0;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .main-title {
        font-size: 34px;
    }

    .content {
        padding: 0 15px 20px;
    }

    .yellow-border {
        height: 30px;
    }

    .table-header {
        grid-template-columns: 40px 1fr 1fr 1fr 1fr;
        font-size: 9px;
    }

    .wine-item {
        grid-template-columns: 200px 1fr 1fr 1fr 1fr;
        font-size: 12px;
    }

    .wine-name {
        font-size: 13px;
    }

    .price {
        font-size: 8px;
    }

    .page {
        border-width: 20px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .page {
        page-break-after: always;
        min-height: 100vh;
    }

    .page:last-child {
        page-break-after: avoid;
    }
}

