/* Faith Over Fear PC NC — Custom Brand Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Roboto:wght@100;300;400&display=swap');

:root {
    --gold: #c9a227;
    --gold-light: #e8c85a;
    --navy: #1a2040;
    --navy-dark: #10162e;
    --navy-mid: #252d56;
    --cream: #f9f5ef;
    --cream-dark: #f0e9dc;
}

/* Brand fonts */
h1, h2, h3 {
    font-family: 'Playfair Display', serif !important;
}

/* Header overrides */
#header {
    background: rgba(26, 32, 64, 0.97) !important;
    border-bottom: 2px solid var(--gold);
}

#header h1 a,
#header nav ul li a {
    color: #fff !important;
    letter-spacing: 0.05em;
}

#header nav ul li a:hover {
    color: var(--gold) !important;
}

#header nav ul li a.button.primary {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 700;
}

#header nav ul li a.button.primary:hover {
    background-color: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
}

/* Logo text style */
#logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6em;
}

#logo-text img {
    height: 44px;
    width: auto;
}

#logo-text span {
    display: flex;
    flex-direction: column;
}

#logo-text .brand-name {
    font-size: 1em;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#logo-text .brand-tagline {
    font-size: 0.65em;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Banner */
#banner {
    background-color: var(--navy-dark) !important;
}

#banner .content header h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.8em;
    line-height: 1.2;
}

#banner .content header p {
    color: var(--gold-light);
    font-size: 1.1em;
}

/* Buttons */
.button.primary {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy-dark) !important;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.button.primary:hover {
    background-color: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
}

.button {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.button:hover {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy-dark) !important;
}

/* CTA section override — main.css sets red text on style2 primary buttons */
.wrapper.style2 .button.primary {
    color: #fff !important;
}

/* Section 4 features icons */
.icon.solid.alt.major {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}

/* Wrapper styles */
.wrapper.style1 {
    background-color: var(--navy) !important;
}

.wrapper.style2 {
    background-color: var(--navy-mid) !important;
}

/* CTA section */
#cta {
    background-color: var(--navy-dark) !important;
}

#cta input[type="submit"] {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy-dark) !important;
    font-weight: 700;
}

/* Footer */
#footer {
    background-color: var(--navy-dark) !important;
    border-top: 2px solid var(--gold);
}

#footer ul.icons li a {
    color: rgba(255,255,255,0.6) !important;
}

#footer ul.icons li a:hover {
    color: var(--gold) !important;
}

#footer ul.copyright li,
#footer ul.copyright li a {
    color: rgba(255,255,255,0.4) !important;
}

/* Spotlight overrides */
.spotlight.style1 .content {
    background-color: var(--navy) !important;
}

.spotlight.style2 .content {
    background-color: var(--navy-mid) !important;
}

.spotlight.style3 .content {
    background-color: var(--navy-dark) !important;
}

/* Gold accent headings inside spotlights */
.spotlight .content header h2 {
    color: #fff !important;
}

.spotlight .content header p {
    color: var(--gold-light) !important;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.gallery-grid .gallery-item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    background: var(--navy-mid);
    aspect-ratio: 4/3;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    height: 100%;
    background: var(--navy-mid);
}

.gallery-placeholder i {
    font-size: 2.5em;
    color: var(--gold);
    opacity: 0.5;
}

/* FAQ accordion */
.faq-item {
    border-bottom: 1px solid rgba(201,162,39,0.25);
    padding: 1.5rem 0;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question i {
    margin-top: 0.2em;
    flex-shrink: 0;
}

.faq-answer {
    padding-left: 1.75rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* Services cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: 6px;
    padding: 2rem;
    transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    background: rgba(201,162,39,0.05);
}

.service-card .service-icon {
    font-size: 2.2em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.9em;
}

.service-card .price-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3em 0.9em;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 3px;
    text-transform: uppercase;
}

/* Page hero (for interior pages) */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/banner.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.page-hero .inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 3em;
    margin-bottom: 0.5rem;
}

.page-hero .subtitle {
    color: var(--gold);
    font-size: 1.1em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Content page wrapper */
.page-content {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.8em;
}

.page-content h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 0.75rem;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
}

/* Gold divider */
.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem 0 2rem;
}

/* Testimonial quote */
.testimonial-quote {
    background: rgba(201,162,39,0.07);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin: 2rem 0;
    font-size: 1.05em;
    line-height: 1.8;
}

/* Contact form enhancements */
form input,
form textarea,
form select {
    border-color: rgba(201,162,39,0.3) !important;
    background: rgba(255,255,255,0.04) !important;
    color: #fff !important;
}

form input:focus,
form textarea:focus {
    border-color: var(--gold) !important;
}

form input::placeholder,
form textarea::placeholder {
    color: rgba(255,255,255,0.35) !important;
}

form label {
    color: rgba(255,255,255,0.7) !important;
}

/* Expertise badges */
.expertise-badge {
    display: inline-block;
    background: rgba(201,162,39,0.12);
    border: 1px solid rgba(201,162,39,0.4);
    color: var(--gold);
    padding: 0.4em 1em;
    border-radius: 3px;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    margin: 0.25rem;
    text-transform: uppercase;
}

/* JAM credit */
.jam-credit {
    margin-top: 1rem;
    font-size: 0.75em;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.jam-credit a {
    display: inline-flex;
    align-items: center;
    opacity: 0.55;
    transition: opacity 0.2s;
    border-bottom: none !important;
}

.jam-credit a:hover {
    opacity: 1;
}

.jam-credit img {
    height: 22px;
    width: auto;
    vertical-align: middle;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
    .page-hero h1 { font-size: 2em; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    #logo-text .brand-tagline { display: none; }
}
