/*
 Theme Name:   ANaukri GeneratePress Child
 Description:  Responsive-optimized child theme for GeneratePress
 Author:       Manish Tomar
 Template:     generatepress
 Version:      1.1.0
*/

/* --- 1. CSS Variables (Easier management) --- */

/* --- 2. Foundation & Typography --- */
* {
    /* Base size 16px for rem scaling */
    margin: 0;
    padding: 0;
 
}

body *{
    /* Base size 16px for rem scaling */
    font-size: 1rem;

}

h1{
    font-size: 24px;
    font-weight: 600;
}

.entry-meta {
    margin: 0;
}

.anaukri-article-style h2,h3 {
    background-color: #7c2b0c;
    color: white;
    font-size: 1.2rem;
    padding-top: .1em;
    padding-bottom: .1em;
    text-align: center;
}

a {
    text-decoration: none;
}

/* Container for the buttons */
.anaukri-social-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
    justify-content: center; /* Centers buttons, remove if you want them left-aligned */
}

/* Base button styling */
.anaukri-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff !important; /* Forces white text */
    font-size: 16px;
    transition: transform 0.2s ease;
}

.anaukri-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.anaukri-btn img {
    margin-right: 10px;
}

/* Green for WhatsApp */
.btn-whatsapp {
    background-color: #25d366;
}

/* Blue for Telegram */
.btn-telegram {
    background-color: #0088cc;
}

.btn-text {
    color: white;
}

.entry-content:not(:first-child), .entry-summary:not(:first-child), .page-content:not(:first-child) {
    margin-top: 1em;
}

.post-image-above-header .inside-article .featured-image, .post-image-above-header .inside-article .post-image {
    margin-top: 0;
    margin-bottom: 1em;
}

/* Add a bottom border to the header */
.site-header {
    border-bottom: 1px solid #eeeeee;
}

/* Add a top border to the footer */
.site-footer {
    border-top: 1px solid #eeeeee;
    margin-top: auto; /* Helps keep the footer at bottom if using Flexbox */
}

.inside-header {
    padding: 10px 20px;
}


@media (max-width: 768px) {
    .separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .separate-containers .paging-navigation, .one-container .site-content, .inside-page-header {
        padding: 10px;
    }
}