/**
 * Theme Name:  CC Blocks
 * Template:    twentytwentyfive
 * Author:      Chanel C
 * Description: Gonna do a code thing
 * Version:     1.0
 */

:root {
    --vertical-gaps: 36px;
    --primary-bg-color: #543279;
    --section-padding: 72px;
}

* {
    font-family: 'ApexSans', sans-serif;
}

p {
    font-size: 18px;
}

.subtitle {
    font-size: 24px;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
}

.site-logo {
    height: 100px;
}

.side-by-side-container {
    padding: var(--section-padding) 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--vertical-gaps);
}

.side-by-side-img-container {
    flex: 1; 
    min-width: 0;
    overflow: hidden;
}

.side-by-side-text-container {
    flex: 1; 
}

.side-by-side-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.custom-justified-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
}


/*****************************************************
* Hero
******************************************************/



/*****************************************************
* Footer
******************************************************/

footer {
    color: #fff;
    background-color: var(--primary-bg-color);
}
