/* WordPress Theme Style - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

/* WordPress Core Compatibility */
.wp-block-group,
.wp-block-columns,
.wp-block-column {
    margin-bottom: 0;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Skip Links */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999999;
    width: auto;
    height: auto;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* WordPress Image Alignment */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* WordPress Gallery */
.wp-block-gallery {
    margin-bottom: 1.5em;
}

/* WordPress Buttons */
.wp-block-button .wp-block-button__link {
    background-color: #0073aa;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    background-color: #005177;
    transform: translateY(-2px);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* WordPress Embeds */
.wp-block-embed {
    margin-bottom: 1.5em;
}

/* WordPress Tables */
.wp-block-table {
    margin-bottom: 1.5em;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.wp-block-table th {
    background-color: #f7fafc;
    font-weight: 600;
}

/* WordPress Lists */
.wp-block-list {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

/* WordPress Quotes */
.wp-block-quote {
    margin: 1.5em 0;
    padding-left: 1.5em;
    border-left: 4px solid #0073aa;
    font-style: italic;
}

/* WordPress Code */
.wp-block-code {
    background-color: #f7fafc;
    padding: 1em;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    margin-bottom: 1.5em;
}

/* WordPress Separator */
.wp-block-separator {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 2em auto;
    width: 100px;
}

/* WordPress Spacer */
.wp-block-spacer {
    clear: both;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}