/*
Theme Name: Sarh Law Firm
Description: A professional WordPress theme for law firms built with Bootstrap
Version: 1.0.0
Author: Sarh Law Firm
*/

/* CSS Variables */
:root {
    --primary-color: #ad9560;
    --secondary-color: #454546;
    --accent-color: #c9af7f;
    --text-dark: #454546;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --overlay-color: rgba(0, 0, 0, 0.3);
}

/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', 'Amiri', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Main content */
.site-main {
    padding: 2rem 0;
}

/* Post styles */
.post-item .card {
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
    background: transparent;
}

.post-item .card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Team page styles */
.team-member-card {
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
    background: transparent;
}

.team-member-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.member-avatar {
    color: var(--text-light);
}

/* Footer styles */
.site-footer {
    background-color: var(--accent-color);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

/* Utility classes */
.text-decoration-none {
    text-decoration: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-main {
        padding: 1rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}
