/* Eatfluence Public Styles */

/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

.eatfluence-section {
    margin: 30px 0;
    padding: 0;
    text-align: center;
}

.eatfluence-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    text-align: center;
}

.eatfluence-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 25px 0;
    color: #4a4a4a;
    text-align: center;
}

.eatfluence-content {
    margin-top: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .eatfluence-headline {
        font-size: 2.5em;
    }
    
    .eatfluence-subheadline {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .eatfluence-headline {
        font-size: 2em;
    }
    
    .eatfluence-subheadline {
        font-size: 1em;
    }
}
