/*=========================================================
    PROJECT : Hope & Harmony Spectrum Inc.
    FILE    : style.css
    AUTHOR  : Prempeh Moore
    PURPOSE : Global Website Styles
=========================================================*/
/*=========================================================
                CSS VARIABLES
=========================================================*/

:root{

    /* Brand Colours */
    --primary-color:#275DA9;
    --secondary-color:#47A6A9;
    --accent-color:#F0BE69;
    --dark-blue:#0C3B7D;
    --purple:#8173C4;
    --red:#CB2943;

    /* Neutral Colours */
    --white:#FFFFFF;
    --off-white:#F8F9FA;
    --light-bg:#EEE8E4;
    --text-color:#444444;
    --heading-color:#222222;
    --border-color:#E4E4E4;

    /* Typography */
    --heading-font:'Poppins',sans-serif;
    --body-font:'Open Sans',sans-serif;
    --logo-font:'Times New Roman',serif;

    /* Shadows */
    --shadow-sm:0 4px 12px rgba(0,0,0,.08);
    --shadow-md:0 10px 25px rgba(0,0,0,.10);
    --shadow-lg:0 18px 40px rgba(0,0,0,.15);

    /* Border Radius */
    --radius-sm:8px;
    --radius-md:16px;
    --radius-lg:25px;
    --radius-pill:50px;

    /* Animation */
    --transition:.35s ease;

}
/*=========================================================
                GLOBAL RESET
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--body-font);
    font-size:16px;
    line-height:1.7;
    color:var(--text-color);
    background:var(--white);
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;
    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    cursor:pointer;
    border:none;
    outline:none;
    transition:var(--transition);

}
/*=========================================================
                TYPOGRAPHY
=========================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:var(--heading-font);
    color:var(--heading-color);
    font-weight:700;

}

h1{

    font-size:3.8rem;

}

h2{

    font-size:2.7rem;

}

h3{

    font-size:1.6rem;

}

p{

    margin-bottom:20px;

}
/*=========================================================
                CONTAINER
=========================================================*/

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}
/*=========================================================
                SECTIONS
=========================================================*/

section{

    padding:100px 0;

}

/*=========================================================
                BUTTONS
=========================================================*/

.btn{

    display:inline-block;
    padding:15px 35px;
    border-radius:var(--radius-pill);
    font-weight:600;
    transition:var(--transition);

}

.btn-primary{

    background:var(--primary-color);
    color:var(--white);

}

.btn-primary:hover{

    background:var(--dark-blue);
    transform:translateY(-4px);

box-shadow:0 12px 25px rgba(39,93,169,.25);

}

.btn-secondary{

    background:var(--accent-color);
    color:var(--heading-color);

}

.btn-secondary:hover{

    transform:translateY(-4px);

box-shadow:0 12px 25px rgba(39,93,169,.25);

}
/*=========================================================
                UTILITIES
=========================================================*/

.text-center{

    text-align:center;

}

.mb-1{

    margin-bottom:10px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:40px;

}

.shadow{

    box-shadow:var(--shadow-md);

}

.rounded{

    border-radius:var(--radius-md);

}
/*=========================================================
            WHITE OUTLINE BUTTON
=========================================================*/

.btn-outline-light{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 32px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s ease;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary-color);

}