/*
Theme Name: Davidson Dental
Description: A child theme of Twenty Twenty-Four with maximum customization options.
Template: twentytwentyfour
Version: 1.0.0
Author: Rafael Madeira
Text Domain: davidson-dental.com
*/

/* Import parent theme styles */
@import url("../twentytwentyfour/style.css");

/* 
 * Custom styles for Davidson Dental
 * Add your custom CSS below this line
 */

/* Root variables for easy customization */
:root {
    --dental-primary-color: #0073aa;
    --dental-secondary-color: #005177;
    --dental-accent-color: #00a0d2;
    --dental-text-color: #333333;
    --dental-light-gray: #f8f9fa;
    --dental-medium-gray: #6c757d;
    --dental-dark-gray: #343a40;
    --dental-white: #ffffff;
    --dental-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --dental-heading-font: inherit;
    --dental-border-radius: 8px;
    --dental-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --dental-transition: all 0.3s ease;
}

/* Custom utility classes */
.dental-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dental-section {
    padding: 60px 0;
}

.dental-card {
    background: var(--dental-white);
    border-radius: var(--dental-border-radius);
    box-shadow: var(--dental-box-shadow);
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--dental-transition);
}

.dental-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.dental-button {
    background: var(--dental-primary-color);
    color: var(--dental-white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--dental-border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--dental-transition);
    font-weight: 600;
    text-align: center;
}

.dental-button:hover {
    background: var(--dental-secondary-color);
    color: var(--dental-white);
    text-decoration: none;
}

.dental-button-secondary {
    background: transparent;
    color: var(--dental-primary-color);
    border: 2px solid var(--dental-primary-color);
}

.dental-button-secondary:hover {
    background: var(--dental-primary-color);
    color: var(--dental-white);
}

/* Header customizations */
.site-header {
    /* Add your header customizations here */
}

/* Navigation customizations */
.main-navigation {
    /* Add your navigation customizations here */
}

/* Content area customizations */
.site-main {
    /* Add your main content customizations here */
}

/* Footer customizations */
.site-footer {
    /* Add your footer customizations here */
}

/* Custom post type styles */
/* Archive page styles */

/* Custom styles */

/* Responsive design */
@media (max-width: 768px) {
    .dental-container {
        padding: 0 15px;
    }
    
    .dental-section {
        padding: 40px 0;
    }
    
    .dental-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .dental-section {
        padding: 30px 0;
    }
    
    .dental-button {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Print styles */
@media print {
    .dental-button,
    .main-navigation {
        display: none;
    }
}

/* 
 * Additional custom styles
 * Use this section to add more specific customizations
 */