/*
Theme Name: Custom Infoseek
Theme URI: https://your-theme-url.com
Author: Alfahad_Infoseek
Description: A custom-built WordPress theme with Elementor integration.
Version: 1.0
License: GPL-2.0
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-infoseek
Requires PHP: 7.4  
Tested up to: 5.8  
Tags: blog, clean, custom, responsive, theme, modern, Elementor
Copyright 2025 Alfahad_Infoseek
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #0073e6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Styles */
.site-footer {
    background-color: #1a0f1c;
    color: #fff;
    padding: 30px 0;
}

.site-footer .footer-widgets {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.site-footer .footer-widgets .footer-col {
    flex: 1;
    margin-right: 20px;
}

.site-footer .footer-widgets .footer-col:last-child {
    margin-right: 0;
}

.site-footer .footer-full-width {
    text-align: center;
}

/* Content Styles */
.main-content {
    padding: 30px;
}

.post-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.text-gray-700 {
    color: #4a4a4a;
}

.text-xl {
    font-size: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

/* Add support for WordPress caption and image alignment styles */
.wp-caption {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
}

.wp-caption-text {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
}

.sticky {
    background-color: #ff0;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    overflow: hidden;
}

/* WordPress Comment Styles */
.comment-reply-link {
    font-size: 1rem;
    color: #0073e6;
}

.comment-reply-link:hover {
    color: #005bb5;
}

