/*
Theme Name: Onmarx Design
Theme URI: https://onmarxdesign.com
Description: Modernes WordPress-Theme für Webdesign- und E-Commerce-Agenturen mit Tailwind CSS
Version: 1.0.0
Author: Onmarx Design
Author URI: https://onmarxdesign.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onmarx-design
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* Checkbox styling */
.custom-check:checked + div {
    background-color: #f6ad55;
    border-color: #f6ad55;
    color: black;
}

.custom-check:checked + div svg {
    display: block;
}

/* Subtle grid pattern for background */
.bg-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Specific Glow for Pricing */
.pricing-glow {
    box-shadow: 0 0 40px -10px rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.2);
}

/* WordPress-spezifische Styles */
body {
    font-family: 'Inter', sans-serif;
}

.wp-block-image {
    margin: 1.5rem 0;
}

.wp-block-image img {
    border-radius: 0.75rem;
}

.wp-block-quote {
    border-left: 4px solid #f6ad55;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.wp-block-quote p {
    color: #94a3b8;
}

a {
    color: #3b82f6;
    text-decoration: none;
}

a:hover {
    color: #f6ad55;
}

.wp-block-button__link {
    background-color: #f6ad55;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    background-color: #3b82f6;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}
