/*
Theme Name: Vessel
Theme URI: https://www.dissidentchoir.com
Author: Subverse LLC
Author URI: https://dissidentchoir.com
Description: An empty vessel for the masses.
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vessel
Tags: 
*/

:root {
    --navy: #0f1e3d;
    --navy-mid: #1a3058;
    --navy-light: #2a4a7a;
    --gold: #d4a84b;
    --gold-light: #e8c36a;
    --gold-pale: #faf3e3;
    --cream: #fdfbf7;
    --cream-warm: #f8f4ec;
    --text: #1a1a1a;
    --text-muted: #5c5c5c;
    --white: #ffffff;
    --shadow-soft: 0 4px 24px rgba(15, 30, 61, 0.06);
    --shadow-medium: 0 8px 40px rgba(15, 30, 61, 0.1);
    --shadow-strong: 0 24px 64px rgba(15, 30, 61, 0.14);
    --shadow-gold: 0 8px 32px rgba(212, 168, 75, 0.25);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.15;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header - St. Raphael Style */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-utility {
    background: var(--navy);
    padding: 0;
}

.header-utility .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-utility-links {
    display: flex;
}

.header-utility-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 12px;
    padding: 10px 16px;
    transition: var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header-utility-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.header-utility-links a.utility-cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
}

.header-utility-links a.utility-cta:hover {
    background: var(--gold-light);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    background: #fff;
    border-bottom: 2px solid #e5e5e5;
    margin: 0 -48px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 95px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 0;
}

nav a {
    padding: 12px 20px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
}

/* Footer - Cathedral Catholic Style */
footer {
    background: #0a1428;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-crest {
    width: 60px;
    height: 60px;
    background: var(--navy-mid);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(212, 168, 75, 0.3);
}

.footer-crest span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.footer-tagline {
    display: flex;
    flex-direction: column;
}

.tagline-main {
    font-size: 14px;
    color: var(--gold-light);
    text-transform: lowercase;
    letter-spacing: 0.1em;
}

.tagline-sub {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--white);
}

.footer-cta {
    text-align: right;
}

.footer-cta span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-cta strong {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact {
    text-align: center;
    margin-bottom: 40px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

@media (max-width: 1000px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-strong);
        transition: var(--transition);
        z-index: 1001;
    }

    nav.active {
        right: 0;
    }

    nav a {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    nav a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    .header-utility-links a {
        padding: 8px 12px;
        font-size: 11px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta {
        text-align: center;
    }
}