/* Vigsø Menukort Frontend Styles */

@font-face {
    font-family: 'Gloucester MT Extra Condensed';
    src: url('../fonts/Gloucester MT Extra Condensed Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* A4 dimensioner: 210mm x 297mm */
@page {
    size: A4 portrait;
    margin: 0;
}

.vigsoe-menukort-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Print knap */
.vigsoe-print-btn {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #3a8bc2;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(58, 139, 194, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.vigsoe-print-btn:hover {
    background: #2d6a9f;
    transform: translateY(-2px);
}

/* A4 container */
.vigsoe-a4-page {
    width: 210mm;
    min-height: 297mm;
    background-image: var(--vigsoe-bg-image, url('https://familierestaurantvigsoe.dk/wp-content/uploads/2026/02/headerbaggrund-scaled.png'));
    background-size: cover;
    background-position: center;
    padding: 12mm 15mm;
    position: relative;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.vigsoe-menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Header sektion */
.vigsoe-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 0mm 5mm 0mm;
}

.vigsoe-category-title {
    font-family: 'Righteous', cursive;
    font-size: 48px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

.vigsoe-a-la-carte {
    font-family: 'Margarine', cursive;
    font-size: 42px;
    color: #4a9fd4;
    font-weight: 400;
}

/* Menu kort */
.vigsoe-menu-card {
    background: #fff;
    border-radius: 6px;
    padding: 8mm 10mm 8mm 10mm;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vigsoe-menu-items {
    flex: 1;
}

/* Menu items */
.vigsoe-menu-item {
    padding: 4mm 0;
    border-bottom: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5mm;
    align-items: start;
}

.vigsoe-menu-item:last-child {
    border-bottom: none;
}

.vigsoe-item-content {
    padding-right: 5mm;
}

.vigsoe-item-title {
    font-family: 'Gloucester MT Extra Condensed', serif;
    font-size: 20px;
    color: #000;
    font-weight: normal;
    margin: 0 0 1mm 0;
    letter-spacing: 0.5px;
}

.vigsoe-item-description {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
}

.vigsoe-item-description .highlight {
    color: #3a8bc2;
    font-weight: 500;
}

.vigsoe-item-price {
    font-family: 'Gloucester MT Extra Condensed', serif;
    font-size: 20px;
    color: #111;
    font-weight: normal;
    white-space: nowrap;
}

/* Footer */
.vigsoe-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 5mm;
    margin-top: auto;
}

.vigsoe-contact-info {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    color: #555;
    line-height: 1.7;
}

.vigsoe-contact-info a {
    color: #3a8bc2;
    text-decoration: none;
}

.vigsoe-logo-container {
    width: 27mm;
    position: absolute;
    right: 20px;
    bottom: 10px;
    height: auto;
}

.vigsoe-logo-container img {
    width: 100%;
    height: auto;
}

/* Print styles */
@media print {
    body {
        background: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body * {
        visibility: hidden;
    }

    .vigsoe-menukort-wrapper,
    .vigsoe-menukort-wrapper * {
        visibility: visible;
    }

    .vigsoe-menukort-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        padding: 0;
    }

    .vigsoe-print-btn {
        display: none !important;
    }

    .vigsoe-a4-page {
        width: 210mm;
        height: 297mm;
        min-height: 297mm;
        max-height: 297mm;
        box-shadow: none;
        margin: 0;
        padding: 12mm 15mm;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .vigsoe-menu-card {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* Responsive - for visning på mindre skærme */
@media screen and (max-width: 800px) {
    .vigsoe-a4-page {
        width: 100%;
        min-height: auto;
        padding: 20px;
    }

    .vigsoe-category-title {
        font-size: 32px;
    }

    .vigsoe-a-la-carte {
        font-size: 28px;
    }

    .vigsoe-print-btn {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
    }
}
