/*
Theme Name: Thangs CMS
Theme URI: https://thangs.com/support
Author: Your Name
Author URI: https://thangs.com/support
Description: A custom WordPress theme inspired by the Thangs support site, built with Bootstrap 5, Font Awesome, and jQuery.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thangs-cms
Tags: custom, bootstrap, fontawesome, jquery, cms
*/


/* Import the Inter font from Google Fonts to match the source exactly */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Base styles */
body {
    background-color: #F0F0F5; /* Adjust the gray shade as needed */
	font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}



/* Navbar and Menu */
.navbar, .navbar-nav, .nav-link {
    font-family: 'Inter', sans-serif;
	font-size: 14px;
    font-weight: 550;
    line-height: 2.327rem;
    user-select: none;
    letter-spacing: .1px;
}

.nav-link {    
	opacity: 0.75;
}

.navbar-nav > .nav-item + .nav-item {
    margin-left: 2.5rem;
}


.navbar {
    height: 64px;
    min-height: 64px;
}

.navbar-brand {
    height: 64px;
    padding-right: 40px;
    display: flex;
    align-items: center;
}

/* Ensure that links in the menu are styled appropriately */
.nav-link {
    color: #2c2c2e;
}

.nav-link:hover, .nav-link:focus {
    color: #000;
}

/* Container spacing */
.container {
    margin-top: 20px;
	bgcolor:#F0F0F5;

}

/* Footer styling */
.footer-text {
    font-size: 0.9rem;
    color: #666;
}


/* Full-width page header */
.page-header {
    width: 100%;
	height: 194px;
    background-color: #232530;
    padding: 2rem 0;
    text-align: center;
    color: #fff;
    margin: 0;  /* Remove any default margins */
}

/* Center the content within the header */
.page-header .container {
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
}

/* Page header title styling */
.page-header .page-title {
    font-size: 4rem;
	font-weight: 600;
	letter-spacing: -0.015em;
    margin: 0;
    color: #fff;
}

/* Page header subtitle styling */
.page-header .page-subtitle {
    font-size: 1.25rem;
    margin: 0.5rem 0 0;
    color: #fff;
    opacity: 0.8;
}

/* Updated full-width footer styling */
.footer-full {
    width: 100%;
    height: 49px;
    padding: 16px 14px;
    background-color: #fff; /* White footer background */
    border-top: 1px solid rgba(22, 22, 117, 0.15);
    box-sizing: border-box; /* Includes padding within the total height */
    display: flex;
    align-items: center;
}

/* Footer inner container and columns (as previously defined) */
.footer-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-column {
    width: 33.33%;
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-logo a img {
    max-height: 100%;
}

/* Footer social links styling */

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social a {
    margin-right: 10px;
    color: inherit;
    text-decoration: none;
	padding-right: 20px;
}

.footer-social a path {
	fill: #7a7a7a;
}

.footer-social a {
    margin-right: 10px;
    color: inherit;
	align-items: center;
    text-decoration: none;
    font-size: 1rem;
}

.footer-social a:last-child {
    margin-right: 0;
}


/* Footer secondary menu */
.footer-secondary-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-menu, .footer-menu a {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
	justify-content: flex-end;
    align-items: center;
	color: #2C2C2E;
    font-size: 0.875rem;
    line-break: unset;
    text-align: center;
    line-height: 1rem;
    letter-spacing: 0.1px;
	font-weight: 500;
    text-decoration: none;
}

.footer-menu li {
    margin-left: 20px;
}

.footer-menu li:first-child {
    margin-left: 0;
}