/*
Theme Name: Yarnagula4
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A WordPress theme supporting post formats: standard, gallery, video, audio, and quote.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yarnagula4
Tags: custom-background, custom-logo, custom-menu, post-formats, responsive-layout
*/

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Sree+Krushnadevaraya&display=swap');

/* Global box-sizing for consistency */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

/* Container with spacing */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header and footer styling */
.site-header,
.site-footer {
    background: #333;
    color: #fff;
    padding: 15px 0;
}

.site-header a,
.site-footer a {
    color: #fff;
    text-decoration: none;
}

/* Entry header styling */
.entry-header h1.entry-title,
.entry-header h2.entry-title {
    margin: 0 0 10px;
}

/* Quote styling */
.quote-content {
    font-style: italic;
    padding: 20px;
    background: transparent !important; /* Ensure no background */
    border-left: 5px solid #333;
    margin: 20px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Sree Krushnadevaraya', serif !important; /* Apply font to quotes */
    font-size: 1.4em; /* Slightly increase size for readability */
    color: #222 !important; /* Dark gray for better contrast */
}

.quote-content blockquote {
    margin: 0;
    padding: 0;
    font-family: 'Sree Krushnadevaraya', serif !important;
}

/* Quote Author Styling */
.quote-content cite {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFFFF !important; /* Pure White */
    font-family: 'Sree Krushnadevaraya', serif !important; /* Ensure font is applied */
    text-align: right;
    margin-top: 10px;
    text-transform: uppercase; /* Optional: Make the author name uppercase */
}

/* Ensure proper font styling inside blockquotes */
blockquote,
blockquote p,
blockquote cite {
    font-family: 'Sree Krushnadevaraya', serif !important;
}

/* Remove background color from all post text */
.entry-content, 
.entry-content p, 
blockquote, 
blockquote p {
    background: transparent !important;
    color: #222 !important; /* Ensure dark gray text for readability */
}

/* Ensure proper border styling for blockquotes */
blockquote {
    border-left: 5px solid #333;
    padding: 15px;
    margin: 15px 0;
}


/* Social Media Share Buttons */
.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 10px 0;
}

.social-share-buttons a {
    text-decoration: none;
    padding: 12px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    font-size: 20px;
}

.social-share-buttons a:hover {
    background-color: #ddd;
}

.social-share-buttons i {
    color: #333;
}

.social-share-buttons a:hover i {
    color: #0077b5; /* Change color on hover for example */
}