/*
Theme Name: CorporatePro
Theme URI: https://example.com/corporatepro
Author: Your Name
Author URI: https://example.com
Description: A professional corporate WordPress theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: corporatepro
Tags: corporate, business, professional, responsive
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0073aa;
    --secondary-color: #333333;
    --text-color: #333333;
    --background-color: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #333333;
    --footer-text: #ffffff;
}

/* Dark mode variables */
.dark-mode {
    --primary-color: #4a9eff;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --background-color: #1a1a1a;
    --header-bg: #1a1a1a;
    --footer-bg: #000000;
    --footer-text: #ffffff;
}

body {
    font-family: var(--body-font, 'Roboto'), sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font, 'Montserrat'), sans-serif;
}

/* Header styles */
.site-header {
    background: var(--header-bg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

/* Navigation */
.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* Dark mode toggle */
.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
}

.dark-mode-toggle .light-icon {
    display: none;
}

.dark-mode .dark-mode-toggle .light-icon {
    display: inline;
}

.dark-mode .dark-mode-toggle .dark-icon {
    display: none;
}

/* Content area */
.site-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 2rem;
    text-align: center;
}

/* Team Member Widget */
.team-member {
    text-align: center;
    padding: 1rem;
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-image {
    margin-bottom: 1rem;
}

.team-member-image img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-member-name {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member-position {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.team-member-social a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.team-member-social a:hover {
    color: var(--secondary-color);
} 