/* Food Mama's Kitchen – Transparent Block Styles */

.fmk-hero {
    background: transparent;
    padding: 100px 20px;
    text-align: center;
}

.fmk-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #ffffff;
}

.fmk-tagline {
    font-size: 28px;
    font-weight: 600;
    color: #f1c94a;
    margin-bottom: 15px;
}

.fmk-divider {
    width: 120px;
    height: 4px;
    background-color: #8ccf7e;
    margin: 20px auto;
}

.fmk-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
}

.fmk-title .food,
.fmk-title .kitchen {
    color: #8ccf7e;
}

.fmk-title .mama {
    color: #f1c94a;
}

.fmk-description {
    font-size: 20px;
    line-height: 1.6;
    margin: 30px 0;
}

.fmk-phone {
    font-size: 42px;
    font-weight: 700;
    margin: 40px 0;
}

.fmk-phone a {
    color: #8ccf7e;
    text-decoration: none;
}

.fmk-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.fmk-social a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fmk-social svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.fmk-facebook { background-color: #1877f2; }
.fmk-instagram { background-color: #e1306c; }
.fmk-youtube { background-color: #ff0000; }

@media (max-width: 768px) {
    .fmk-title { font-size: 40px; }
    .fmk-phone { font-size: 32px; }
    .fmk-description { font-size: 18px; }
}
/* Fade-in animation for Food Mama's Kitchen block */

@keyframes fmkFadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fmk-content {
    animation: fmkFadeIn 1.2s ease-out both;
}

/* Accessibility: reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
    .fmk-content {
        animation: none;
    }
}


/* Welcome Section – Correct Full-Width Banner */

.fmk-welcome {
    background-color: #6f7f5c;
    padding: 24px 16px; /* compact height */
    text-align: center;

    /* Proper full-width without shifting */
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}


.fmk-welcome-inner {
    max-width: 1100px;
    margin: 0 auto;
    color: #f5f5e8;
    font-family: "Segoe UI", Arial, sans-serif;
}

.fmk-welcome-title {
    font-family: "Oswald", Arial, sans-serif;
    font-size: 36px; /* reduced */
		font-style: normal; 
    font-weight: 600;
    margin: 0 0 14px 0;
    letter-spacing: 0 px;
    text-transform: uppercase;
}

.fmk-welcome-title .highlight {
    color: #f1c94a;
}

.fmk-welcome-text {
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
}

.fmk-welcome-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Mobile refinement */
@media (max-width: 768px) {
    .fmk-welcome {
        padding: 22px 14px;
    }

    .fmk-welcome-title {
        font-size: 28px;
    }

    .fmk-welcome-text {
        font-size: 16px;
    }
}
/* Remove theme padding from full-width welcome banner */
.fmk-welcome {
    padding-left: 0;
    padding-right: 0;
}