/* theme fonts */
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --color-100: #008ce2;
    --color-200: #0d172c;
    --color-300: #2a2b2f;
    --color-400: #bababa;
    --color-600: #707070;
    --color-700: #0070c0;
    --color-800: #16274a;
    --color-gray: #f2f2f2;
    --font-family-one: "Montserrat", sans-serif;
    --font-family-two: "Barlow", sans-serif;
    --font-family-three: "Merriweather", serif;
    --font-family-four: "IBM Plex Sans", sans-serif;
}

body {
    background-image: url("../images/background.svg");
    color: black;
    font-family: var(--font-family-three);
    font-size: 1rem;
    font-weight: 400;
    height: auto;
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--color-200);
    font-family: inherit;
    line-height: 1.4;
}
h1 {
    font-size: 2.5rem;
    font-weight: 300;
}
h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.4rem;
}
ul {
    padding-left: 1.25rem;
}
ul li {
    padding-bottom: 0.625rem;
}
ul li:last-child {
    padding-bottom: 0;
}
p {
    font-size: 1.1rem;
}
p.gc-bullet {
    text-indent: 0; /* No indentation for the first line */
    padding-left: 28px; /* Indents all lines */
    text-indent: -26px; /* Moves the first line back */
}
a {
    color: var(--color-100);
    cursor: pointer;
    font-family: var(--font-family-two);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}
a:hover {
    color: var(--color-black);
    text-decoration: none;
}
a:focus {
    outline: none;
}

/* ----- menu ----- */
.fullscreen-offcanvas {
    background-color: var(--color-100);
    color: white;
    padding-top: 2rem;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1055;
}
.navbar ul li {
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.25);
    padding-bottom: 0;
}
.navbar ul li:first-child {
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.25);
}
.navbar ul li a {
    color: white;
    display: block;
    font-size: 1.5rem;
    letter-spacing: 1.2px;
    padding: 0.5em 0;
}
.navbar ul li a:hover {
    color: black;
}
.btn-close {
    background-image: none;
    opacity: 1;
    width: auto;
    height: auto;
    padding: 0.25rem;
    top: 0.5rem !important;
    right: 1rem !important;
    margin: 0;
    position: absolute;
}

/* ----- section containers ----- */
.container-xxl-max {
    margin-left: auto;
    margin-right: auto;
    max-width: 1320px;
}
.container-xl-max {
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
}
.container-lg-max {
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
}
.container-md-max {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

/* ----- colors ----- */
.blue { color: var(--color-100) !important; }
.navy { color: var(--color-200) !important; }
.darkblue { color: var(--color-800) !important; }
.light-gray { color: #999999; }
.bg-blue { background-color: var(--color-100) !important; }
.bg-lightgray { background-color: var(--color-gray) !important; }

/* ----- buttons ----- */
.btn-gc {
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.4rem;
    font-family: var(--font-family-two);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-gc-blue {
    background-color: var(--color-100);
    border-color: var(--color-100);
    color: white;
}
.btn-gc-blue:hover {
    background-color: var(--color-800);
    border-color: var(--color-100);
    color: white;
}
.btn-gc-white {
    background-color: white;
    border-color: var(--color-100);
    color: var(--color-100);
}
.btn-gc-white:hover {
    background-color: var(--color-800);
    border-color: var(--color-800);
    color: white;
}
.btn-gc-dd {
    align-items: center;
    background-color: white;
    border-color: var(--color-100);
    color: var(--color-100);
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem !important;
    text-align: left;
    width: 100%;
}
.btn-gc-dd:hover {
    background-color: var(--color-100);
    border-color: var(--color-100);
    color: white;
}
@media (max-width: 767px) {
    .btn-gc-dd { font-size: 1rem; }
}
.button-share {
    all: unset;
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.2s ease;
}
.button-share:focus {
    outline: none;
    box-shadow: none;
}
.button-share:hover {
    all: unset;
    cursor: pointer;
}
.button-share:hover img {
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
    border-radius: 4px;
}


/* ----- home page ----- */
.home-hero-text h1 {
    color: var(--color-700);
    font-family: var(--font-family-four);
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 1199px) {
    .home-hero-text h1 { font-size: clamp(3.1rem, 3.5vw, 3.5rem); }
}
@media (max-width: 991px) {
    .home-hero-text h1 { font-size: clamp(2.6rem, 3.3vw, 3.2rem); }
}
@media (max-width: 879px) {
    .home-hero-text h1 { font-size: clamp(2.2rem, 4.5vw, 2.9rem); }
}
@media (max-width: 767px) {
    .home-hero-text h1 { font-size: clamp(1.5rem, 8vw, 2.5rem); }
    .home-hero-text h1 span { display: block; }
}
@media (max-width: 575px) {
    .home-hero-text h1 { font-size: clamp(1.5rem, 8vw, 2.5rem); }
}
a.unified-link {
    display:block;
    font-size: 0.85rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font-family-two);
    margin-top: 10px;
}
a.unified-link:hover {
    color: var(--color-black);
}
#unified-list,
#unified-list2 {
    scroll-margin-top: 100px;
    transition: all 0.3s ease-in-out;
}
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease-out forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- page title + category drop down section ----- */
.hero-title {
    border-bottom: 1px solid var(--color-200);
    margin: 0.4rem 0 1.5rem 0;
    padding-bottom: 0.25rem;
}
.choose-category {
    width: 265px;
}
.category-menu {
    background-color: var(--color-100);
    border-radius: 0.3125rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    left: 0;
    padding: 0.75rem 1rem;
    position: absolute;
    text-align: left;
    top: 100%;
    width: 265px;
    z-index: 1050;
}
.category-menu a {
    color: white;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0;
}
.category-menu a:hover {
    color: black;
}
.sticky-nav, .sticky-nav2 {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}
span.label {
    color: var(--color-600);
    display: block;
    font-size: 1rem;
    font-family: var(--font-family-two);
    font-weight: 700;
    letter-spacing: 0.6px;
    margin:5px 0;
}
.dd-menu {
    background-color: white;
    border-radius: 0.3125rem;
    position: relative;
    width: auto;
}
.dd-menu .dropdown-menu {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.dd-menu ul, .dd-menu ul li {
    margin:0;
    padding:0;
}
.dd-menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--color-100);
}
.dd-menu a {
    color: var(--color-100);
    display: block;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 0.45rem 1.75rem;
    text-transform: uppercase;
}
.dd-menu a:hover {
    background-color: var(--color-100);
    color: white;
}
.dd-menu a.selected {
    color: black;
}

@media (max-width: 767px) {
    .dd a { font-size: 1rem; }
}
a.disabled-link {
    pointer-events: none;
    cursor: default;
    color: black;
    text-decoration: none;
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes dropdownFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}
.animate__fadeIn {
    animation: dropdownFadeIn 0.2s ease-out forwards;
}
.animate__fadeOut {
    animation: dropdownFadeOut 0.2s ease-in forwards;
}


/* ----- daily inspiration section ----- */
.daily h3 {
    background-image: url("../images/gc-logo-40.png");
    background-position: right 20px center;
    background-repeat: no-repeat;
    font-size: 3rem;
    font-weight: 300;
    border-bottom: 1px solid var(--color-200);
    margin-bottom: 1.3125rem;
    line-height: 1.8em;
}
@media (max-width: 575px) {
    .daily h3 {
        background-image: url("../images/gc-logo-30.png");
        background-position: right 10px center;
        font-size: 2rem;
        line-height: 1.5em;
    }
}
@media (max-width: 400px) {
    .daily h3 {
        background-image: url("../images/gc-logo-25.png");
        background-position: right 5px center;
        font-size: 1.7rem;
        line-height: 1.25em;
        padding-right: 30px;
    }
}
.daily-box {
    background-color: var(--color-200);
    padding: 2.625rem 3.125rem;
    border-radius: 0.5rem;
    margin-bottom: 30px;
}
.daily-content {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.2em;
    width: auto;
    max-width: 47.4375rem;
}
.daily-author {
    font-size: 1.125rem;
    margin-top: 1.25rem;
}
.daily-info {
    border-top: 0.0625rem solid white;
    letter-spacing: 0.4px;
    margin-top: 2.3125rem;
    margin-bottom: 0.75rem;
    padding-top: 1rem;
}
.daily-info span {
    color: var(--color-400);
    font-family: var(--font-family-one);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 20px;
}
.daily-info a {
    color: var(--color-white);
    display: block;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-family-two);
    margin-top: 10px;
    text-transform: uppercase;
}
.daily-info a:hover {
    color: var(--color-100);
}

/* ----- mission section ----- */
.mission h5 {
    font-family: var(--font-family-two);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 0.375rem;
    line-height: 1.7em;
}
.mission h3 {
    font-weight: 300;
}
.mission a {
    font-size: 0.875rem;
    letter-spacing: 0.7px;
}
.mission p {
    font-size: 0.95rem;
    line-height: 2em;
}
.mission-long { border-left: 1px solid var(--color-300); }
@media (max-width: 767px) {
    .mission-long { border-left: none; }
}

/* ----- footer section ----- */
a.footer {
    font-size: 0.75rem;
    text-transform: uppercase;
}
.footer button {
    font-size: 1.25rem;
    line-height: 1;
}
.footer small {
    font-size: 0.75rem;
}

/* ----- vault page ----- */
.gray-box {
    background-color: var(--color-gray);
    border: #cccccc 1px solid;
    border-radius: 0.5rem;
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
}
.pillars .gray-box {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.09);
}
/*
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.09);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
 */
.cat-number {
    color: var(--color-100);
    font-family: var(--font-family-two);
    position: absolute;
    top: 0.3rem;
    left: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
}
.btn-box {
    background-color: white;
    border-color: var(--color-100);
    border-radius: 0.5rem;
    color: var(--color-100);
    font-size: 1.2rem;
    margin: 0.5rem 0 1.5rem 0;
    width: 185px;
}
.btn-box:hover {
    background-color: var(--color-100);
    color: white;
}
.btn-box2 {
    background-color: white;
    border-color: var(--color-100);
    border-radius: 0.5rem;
    color: var(--color-100);
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    padding: 0.5rem 0.9rem !important;
    margin: 1.3rem 0 0.25rem 0;
    width: 128px;
}
.btn-box2:hover {
    background-color: var(--color-100);
    color: white;
}
.block-center {
    display: flex;
    justify-content: center;
}
.gray-box .title {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3em;
    text-align: left;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 375px) {
    .gray-box .title { font-size: 1.3rem; }
}

a.box:hover {
    background-color: var(--color-100);
    border: var(--color-200) 1px solid;
    color: var(--color-white);
}
a.box:hover h3 {
    color: var(--color-white);
    font-weight: 400;
}
.box h3 {
    font-weight: 400;
    margin-bottom: 1.5625rem;
    line-height: 1.3em;
}
.box-number {
    background-color: var(--color-800);
    border: 1px solid var(--color-800);
    border-radius: 50%;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.8em;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-right: 0.25rem;
    vertical-align: 0.1em;
}
a.box:hover .box-number {
    background-color: var(--color-200);
}

/* ----- category pages ----- */
.hero-title h1 span {
    color: var(--color-100);
    font-family: var(--font-family-two);
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.unified-content {
    font-size: 1.4rem;
    font-weight: 300;
    padding-left: 0.5rem;
}
.unified-info-side {
    font-family: var(--font-family-two);
    padding-left: 0.5rem;
}
.unified-info-side span {
    font-size: 0.85rem;
    font-weight: 700;
}
.unified-info-side a {
    font-size: 0.95rem;
}
.separator { border-right: 1px solid var(--color-400); }
@media (max-width: 767px) {
    .separator {
        border-right: none;
        border-bottom: 1px solid var(--color-400);
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }
}

.accordion {
    margin: 2rem auto;
}
.accordion-body {
    padding: 2rem 2rem 1.4rem 2rem;
    position: relative;
}
.accordion-body p {
    margin-bottom: 2rem;
}
.accordion-button::after {
    display: none !important;
}
.accordion-button .accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-button {
    color: var(--color-100);
    font-family: "Open Sans", sans-serif;
    font-size: 1.75rem;
    font-weight: bold;
    padding: 2rem 1rem 1.7rem 1rem;
    cursor: pointer;
    background-color: #f5f5f5;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}
.accordion-button:not(.collapsed) {
    background-color: #e0e0e0;
}
.accordion-button:hover,
.accordion-button:not(.collapsed):hover {
    background-color: var(--color-100);
    color: white;
}
.subcat-principles,
.subcat-quotes {
    opacity: 1;
    position: relative;
    transition: opacity 0.4s ease;
}
.subcat-hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

/* ----- sweet alert adjustments ----- */
.swal2-container {
    z-index: 1000 !important;
}
.swal2-input {
    box-sizing: border-box !important;
    font-size: 16px !important;
    margin: 4px 0 !important;
    width: 100% !important;
}
.circle-share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 5px;
}
.sa-action-button {
    background-color: var(--color-100) !important;
    color: white !important;
}
.sa-action-button:hover {
    background-color: var(--color-800) !important; /* darker blue for hover */
    color: white !important;
}
