/*
Theme Name: Living Water
Theme URI: https://example.com/living-water
Author: Antigravity
Author URI: https://example.com
Description: A custom WordPress theme designed for Living Water, featuring a responsive layout, mega menu, and flexible page builder components.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: living-water
Tags: education, university, custom-colors, responsive-layout, accessibility-ready
*/

/* 
 * CSS Variables are defined in theme.json and output by WordPress.
 * We add some base resets and utility classes here that might not be covered by blocks.
 */

:root {
    --lw-container-width: 1200px;
    --lw-header-height: 80px;
    --lw-transition: all 0.3s ease;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--wp--preset--font-family--primary, sans-serif);
    color: var(--wp--preset--color--text-main);
    background-color: var(--wp--preset--color--bg-light);
    line-height: 1.6;
}

/* Container Utility */
.container {
    max-width: var(--lw-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
