/*
Theme Name: Emmaus Theme P0 Test
Theme URI: https://immaculatechurch.com
Author: Johnson A
Description: Project Emmaus - Digital Parish Platform
Version: 0.1.0
Requires at least: 6.8
Requires PHP: 8.2
Text Domain: emmaus
*/

:root{
    --primary:#123b6d;
    --secondary:#c9a227;
    --white:#ffffff;
    --light:#f7f8fa;
    --text:#222;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.emmaus-container{
    width:min(1200px,92%);
    margin:auto;
}