/*
Theme Name: DailyBhava Secure
Theme URI: https://dailybhava.asia
Author: DailyBhava
Author URI: https://dailybhava.asia
Description: Modern secure blogging theme with Bootstrap styling.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPLv2 or later
Text Domain: dailybhava
*/
body {
    padding-top: 70px;
}


:root {
    --primary: #111827;
    --accent: #6366f1;
    --light: #f9fafb;
    --text: #1f2937;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
	
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(17, 24, 39, 0.9) !important;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    text-align: center;
}

.hero h1 {
    font-weight: 700;
    font-size: 3rem;
}

.hero p {
    opacity: 0.8;
    margin-top: 10px;
}

.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.btn-dark {
    background: var(--accent);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
}

.btn-dark:hover {
    background: #4f46e5;
}

footer {
    background: #111827;
    color: #9ca3af;
}