/*
Theme Name: Legion Six Victrix
Theme URI: https://legionsix.org
Author: Legion Six Historical Foundation
Author URI: https://legionsix.org
Description: A vintage Americana-themed WordPress theme for the Legion Six Victrix Los Angeles Historical Foundation
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: legion-six
Tags: vintage, military, heritage, historical, custom-menu
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #f5f1e8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Page Structure */
.page-wrapper {
    min-height: 100vh;
    position: relative;
}

.vintage-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: url('assets/vintage-flag-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    filter: sepia(0.4) brightness(1.1);
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

/* Header */
.site-header {
    padding: 2rem 1rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.site-logo {
    width: 12rem;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 2rem;
    font-size: 1.125rem;
}

.nav-link {
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    color: #2c1810;
    text-decoration: none;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #8b4513;
}

.nav-link.active {
    color: #8b4513;
    border-bottom-color: #8b4513;
}

/* Main Content */
.main-content {
    padding: 0 1rem 4rem;
}

.content-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c1810;
}

.text-content {
    font-size: 1.125rem;
    color: #3d2817;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.8;
}

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

.text-muted {
    color: #6b5847;
}

.motto-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #8b4513;
    text-align: center;
}

.motto {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #8b4513;
}

/* Contact Page */
.contact-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #8b4513;
}

.contact-heading {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.125rem;
}

.contact-link:hover {
    color: #a0522d;
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 69, 19, 0.3);
    text-align: center;
}

/* Footer */
.site-footer {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(44, 24, 16, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-email {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #2c1810;
    text-decoration: none;
    font-variant: small-caps;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #8b4513;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #2c1810;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #8b4513;
}

.copyright {
    font-size: 0.875rem;
    color: #6b5847;
    font-variant: small-caps;
}

/* Responsive Design */
@media (min-width: 768px) {
    .site-header {
        padding: 3rem 2rem;
    }

    .site-logo {
        width: 16rem;
    }

    .main-nav {
        font-size: 1.25rem;
    }

    .main-content {
        padding: 0 2rem 4rem;
    }

    .content-card {
        padding: 3.5rem 3rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .text-large {
        font-size: 1.375rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .main-nav {
        gap: 1.5rem;
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .text-large {
        font-size: 1.125rem;
    }

    .contact-social {
        flex-direction: column;
        gap: 0.5rem;
    }
}
