/* =========================================================
   MEYER QUESTIONED DOCUMENT EXAMINATION
   SHARED WEBSITE STYLES
   ========================================================= */


/* ---------------------------------------------------------
   COLOR PALETTE
   --------------------------------------------------------- */

:root {

    --black: #0d0d0e;
    --charcoal: #252629;
    --charcoal-light: #34363a;
    --gold: #9d8b4c;
    --gold-light: #b6a567;
    --ivory: #f5f3ed;
    --white: #ffffff;
    --text-dark: #202124;
    --text-light: #eeeeea;
    --text-muted: #b6b7b8;
    --border-dark: #44464a;
}

/* ---------------------------------------------------------
   BASIC PAGE SETTINGS
   --------------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    background-color: var(--ivory);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    background: linear-gradient(
        to bottom,
        #18191b 0%,
        #0d0d0e 100%
    );

    color: var(--white);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}


/* ---------------------------------------------------------
   TOP PORTION OF HEADER
   --------------------------------------------------------- */

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px 10px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* =========================================================
   BRANDING
   ========================================================= */

.branding {

    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

/* LOGO */

.logo {

    width: 92px;
    height: 92px;
    object-fit: contain;
}


/* BUSINESS NAME AREA */

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-name {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: normal;
    letter-spacing: 0.035em;
    line-height: 1.2;
}

.business-subtitle {
    margin-top: 6px;
    color: var(--gold-light);
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* =========================================================
   HEADER CONTACT INFORMATION
   ========================================================= */

.header-contact {
    text-align: right;
    white-space: nowrap;
}

.contact-label {
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.phone-number {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    text-decoration: none;
}

.phone-number:hover {
    color: var(--gold-light);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
    background-color: rgba(0, 0, 0, 0.22);
    border-top: 1px solid var(--border-dark);
}

.nav-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* NAVIGATION LINKS */

.nav-list a {
    position: relative;
    display: block;
    padding: 14px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.035em;
}

.nav-list a:hover {
    color: var(--gold-light);
    background-color: rgba(255, 255, 255, 0.035);
}

/* GOLD LINE UNDER NAVIGATION LINKS */

.nav-list a::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 7px;
    height: 2px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

/* CURRENT PAGE */

.nav-list a.active {
    color: var(--gold-light);
}

/* ---------------------------------------------------------
   CONTACT BUTTON
   --------------------------------------------------------- */

.nav-list .contact-button {
    margin-left: 12px;
    padding: 9px 18px;
    border: 1px solid var(--gold);
    border-radius: 3px;
    color: var(--gold-light);
}

.nav-list .contact-button:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* NO UNDERLINE EFFECT ON CONTACT BUTTON */

.nav-list .contact-button::after {
    display: none;
}

/* =========================================================
TABLET
========================================================= */

@media screen and (max-width: 850px) {


.header-top {
	flex-direction: column;
	text-align: center;
	gap: 10px;
}

.branding {
	justify-content: center;
}

.header-contact {
	text-align: center;
}

.nav-list {
	flex-wrap: wrap;
}

.nav-list a {
	padding: 12px 13px;
}

.nav-list .contact-button {
	margin-left: 0;
}
}

/* =========================================================
PHONE
========================================================= */

@media screen and (max-width: 550px) {

.header-top {
	padding: 12px 18px;
}

.logo {
	width: 72px;
	height: 72px;
}

.business-name {
	font-size: 1.18rem;
}

.business-subtitle {
	font-size: 0.70rem;
}

.nav-list {
	padding: 0 10px;
	gap: 0;
}

.nav-list a {
	padding: 11px 9px;
	font-size: 0.83rem;
}
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
   
.button {
display: inline-block;
padding: 13px 22px;
border-radius: 3px;
text-decoration: none;
font-size: 0.94rem;
font-weight: bold;
letter-spacing: 0.025em;
}

.button-primary {
background-color: var(--gold);
border: 1px solid var(--gold);
color: var(--black);
}

.button-primary:hover {
background-color: var(--gold-light);
border-color: var(--gold-light);
}

.button-secondary {
background-color: transparent;
border: 1px solid #8a8c8f;
color: var(--charcoal);
}

.button-secondary:hover {
border-color: var(--gold);
color: var(--gold);
}

/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.section-heading {
    max-width: 800px;
    margin: 0 auto 45px auto;
    text-align: center;
}


.section-eyebrow {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.80rem;
    font-weight: bold;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 18px 0;
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: normal;
    line-height: 1.2;
}


.section-heading p {
    max-width: 730px;
    margin: 0 auto;
    color: #5b5d60;
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================================
   SITE FOOTER
   ========================================================= */

.site-footer {
	background-color: var(--black);
	color: var(--text-muted);
	border-top: 1px solid #3a3b3e;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 38px 28px 32px 28px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	gap: 45px;
	align-items: start;
}

/* ---------------------------------------------------------
   FOOTER BRAND
   --------------------------------------------------------- */

.footer-name {
    margin-bottom: 7px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

.footer-subtitle {
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    line-height: 1.5;
}

/* ---------------------------------------------------------
   FOOTER LINKS
   --------------------------------------------------------- */

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 9px 25px;
}

.footer-links a {
    color: #ccccca;
    font-size: 0.83rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold-light);
}

/* ---------------------------------------------------------
   FOOTER CONTACT
   --------------------------------------------------------- */

.footer-contact {
    text-align: right;
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-contact a {
    display: inline-block;
    margin-bottom: 3px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

/* ---------------------------------------------------------
   FOOTER BOTTOM
   --------------------------------------------------------- */

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 28px 18px 28px;
    border-top: 1px solid #2f3032;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #858689;
    font-size: 0.74rem;
}

.footer-bottom a {
    color: #858689;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

.footer-divider {
    margin: 0 8px;
    color: #55575a;
}

/* =========================================================
   FOOTER - TABLET / PHONE
   ========================================================= */

@media screen and (max-width: 800px) {

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media screen and (max-width: 550px) {

    .footer-inner {
        padding: 32px 20px 26px 20px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 15px 20px 18px 20px;
        flex-direction: column;
        gap: 5px;
    }
}