/* Modern Styles for Nitro Bert Theme - نسخه 1.0.1 */

/* Test styles to verify changes are applied */
body {
    /* This should be visible if CSS is loading */
    border-top: 3px solid #c36 !important;
}

.site-header {
    /* Modern header with backdrop filter */
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-title a {
    /* Gradient text effect */
    background: linear-gradient(135deg, #c36, #336);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern button styles */
button, .button, input[type="submit"] {
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
}

button:hover, .button:hover, input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(204, 51, 102, 0.2);
}

/* Modern form inputs */
input[type="text"], input[type="email"], input[type="password"], 
textarea, select {
    border-radius: 0.375rem;
    border: 1px solid #666;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    accent-color: #c36;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus,
textarea:focus, select:focus {
    border-color: #333;
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Modern card styles */
.post, .page {
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease-in-out;
}

.post:hover, .page:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Modern navigation */
.site-navigation-toggle {
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease-in-out;
}

.site-navigation-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Version indicator */
body::before {
    content: "Nitro Bert v1.0.1 - Modern Styles Active";
    position: fixed;
    top: 0;
    right: 0;
    background: #c36;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    z-index: 9999;
    border-radius: 0 0 0 5px;
}
