/*
Theme Name: DrComics
Description: A child theme of Frost designed for comic book websites and digital comic creators. Features comic-inspired styling and layouts perfect for showcasing comic content.
Author: Your Name
Author URI: https://yourwebsite.com
Template: frost
Version: 1.0.0
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: drcomics
Tags: child-theme, comics, frost, block-patterns, full-site-editing
Network: false
*/

/* Import parent theme styles */
@import url("../frost/style.css");

/* Custom styles for DrComics theme */

/* Comic-inspired typography */
.comic-heading {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Comic book panel styling */
.comic-panel {
    border: 3px solid #000;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    background: linear-gradient(45deg, #fff 25%, transparent 25%), 
                linear-gradient(-45deg, #fff 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #fff 75%), 
                linear-gradient(-45deg, transparent 75%, #fff 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Speech bubble styling */
.speech-bubble {
    position: relative;
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 15px 20px;
    margin: 20px 0;
    font-weight: bold;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #000;
    border-bottom: 0;
    margin-left: -10px;
    margin-bottom: -10px;
}

.speech-bubble:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #fff;
    border-bottom: 0;
    margin-left: -8px;
    margin-bottom: -8px;
}

/* Comic book colors */
.comic-red {
    background-color: #ff4444;
    color: #fff;
}

.comic-blue {
    background-color: #4444ff;
    color: #fff;
}

.comic-yellow {
    background-color: #ffff44;
    color: #000;
}

.comic-green {
    background-color: #44ff44;
    color: #000;
}

/* Action text styling */
.action-text {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
    text-align: center;
    margin: 10px 0;
}

/* Comic grid layout */
.comic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comic-panel {
        margin: 10px 0;
        padding: 15px;
    }
    
    .comic-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .speech-bubble {
        padding: 12px 15px;
    }
}
