/* ===== Gutenberg Block Compatibility for Festival Della Pasta ===== */

/* Container / spacing */
.entry-content .wp-block-group {
    margin-bottom: 2rem;
}
.entry-content .wp-block-columns {
    margin-bottom: 2rem;
}

/* Headings */
.wp-block-heading {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}
.wp-block-heading.has-text-align-left { text-align: left; }
.wp-block-heading.has-text-align-center { text-align: center; }

/* Paragraph */
.entry-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

/* Buttons */
.wp-block-button__link {
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
    font-size: 17px !important;
    letter-spacing: 0.5px;
    padding: 12px 36px !important;
    border-radius: 0 !important;
    text-transform: none !important;
    background: var(--gold) !important;
    color: var(--white) !important;
    transition: var(--transition);
}
.wp-block-button__link:hover {
    background: var(--wine) !important;
}

/* Columns – info-box style */
.fdp-info-box {
    text-align: center;
}
.fdp-info-box h3 {
    color: var(--gold) !important;
    font-size: 22px !important;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.fdp-info-box p {
    font-size: 14px;
    line-height: 22px;
    color: #000;
}

/* Gallery */
.wp-block-gallery {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.wp-block-gallery .blocks-gallery-grid {
    gap: 10px;
}
.wp-block-gallery img {
    border-radius: 4px;
}

/* Image centering */
.wp-block-image.aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Separator with diamond icon */
.fdp-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}
.fdp-separator::before,
.fdp-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
}
.fdp-separator span {
    font-size: 1.2rem;
    color: var(--gold);
}

/* Restaurant page – historia section */
.fdp-historia {
    padding: 60px 0;
    background: #fff;
}
.fdp-historia h2 {
    font-size: 60px;
    line-height: 54px;
    color: #000;
    margin-bottom: 24px;
}
.fdp-historia p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 1.5rem;
}

/* Restaurant page – chef info */
.fdp-chef-name {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #000;
    margin-bottom: 4px;
}
.fdp-chef-role {
    font-size: 13px;
    color: var(--gold);
}

/* Environments page – gallery section */
.fdp-section-heading {
    padding-top: 25px;
    margin-bottom: 20px;
    text-align: center;
}
.fdp-section-heading h2 {
    font-size: 60px;
    color: #000;
}

/* PDF link image pages */
.fdp-pdf-page {
    text-align: center;
    padding: 2rem 0;
}
.fdp-pdf-page img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .fdp-historia h2 {
        font-size: 36px;
        line-height: 40px;
    }
    .fdp-section-heading h2 {
        font-size: 32px;
    }
    .wp-block-button__link {
        font-size: 15px !important;
        padding: 10px 24px !important;
    }
}
