/*
Theme Name: Made by Ram Custom
Description: A clean, minimal portfolio theme inspired by leerob.com. Features responsive design, Inter font, and minimalist aesthetics perfect for developers and product managers.
Version: 1.0.0
Author: Ram Nimbalkar
Author URI: https://madebyram.com
Contact: hello@madebyram.com
Theme URI: https://madebyram.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: madebyram-custom
Tags: portfolio, minimal, clean, responsive, one-page, developer, product-manager
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 200px;
}

/* Main Content */
main.container {
    padding-top: 0;
}

/* Profile Section */
.profile-section {
    margin-bottom: 20px;
}

.profile-intro {
    margin-bottom: 30px;
}

.profile-text {
    width: 100%;
}

.profile-text h1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.profile-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.recent-activity {
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.recent-activity strong {
    color: #000;
    font-weight: 400;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.social-links a {
    color: #000;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.2s ease;
    font-weight: 400;
}

.social-links a:hover {
    color: #666;
}

/* Featured Content */
.featured-content {
    margin-bottom: 30px;
}

.featured-content:first-of-type {
    margin-top: 0;
}

.featured-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 400;
}

.writing-list {
    list-style: none;
    padding-left: 0;
}

.writing-list li {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
}

/* Links - Minimal styling */
a {
    color: #000;
    text-decoration: underline;
    transition: color 0.2s ease;
    font-weight: 400;
}

a:hover {
    color: #666;
}

/* Blog Posts */
.post-list {
    margin-bottom: 60px;
}

.post-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.post-item:last-child {
    border-bottom: none;
}

.post-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.post-title a {
    color: #000;
    text-decoration: underline;
}

.post-title a:hover {
    color: #666;
}

.post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Single Post */
.post-content {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 400;
}

.post-content h1 {
    font-size: 28px;
}

.post-content h2 {
    font-size: 24px;
}

.post-content h3 {
    font-size: 20px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content blockquote {
    border-left: 3px solid #ddd;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.post-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
}

.post-content pre {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 20px 0;
}


/* Projects Page */
.projects-list {
    margin-bottom: 40px;
}

.project-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.project-item:last-child {
    border-bottom: none;
    margin-bottom: 20px;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.project-title a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.project-title a:hover {
    color: #666;
}

.project-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.project-meta {
    font-size: 14px;
}

.project-link {
    color: #000;
    text-decoration: underline;
    font-weight: 400;
}

.project-link:hover {
    color: #666;
}

.project-separator {
    color: #666;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .profile-intro {
        text-align: left;
    }
    
    .profile-text h1 {
        font-size: 16px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-text h1 {
        font-size: 16px;
    }
    
    .profile-text p {
        font-size: 14px;
    }
}

/* 404 Error Page Styles */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-404 h1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.error-404 p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

.error-404 a {
    color: #000;
    text-decoration: underline;
}

/* Page Template Styles */
.page-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.page-body {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.page-body h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.page-body h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 25px 0 10px 0;
}

.page-body p {
    margin-bottom: 15px;
}

.page-body ul, .page-body ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-body li {
    margin-bottom: 5px;
}