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

:root {
    /* Primary Colors */
    --primary-bg: #F8F8FF;
    --section-bg-dark: #660000;
    --section-bg-black: #1C1C1C;
    --accent-gold: #D4AF37;
    --crimson: #8B0000;
    --royal-purple: #4B0082;
    --forest-green: #006400;
    
    /* Text Colors */
    --text-dark: #1C1C1C;
    --text-light: #F8F8FF;
    --text-gold: #D4AF37;
    --text-crimson: #8B0000;
    
    /* Button Colors */
    --btn-primary: #8B0000;
    --btn-secondary: #660000;
    --btn-text-gold: #D4AF37;
    
    /* Border Colors */
    --border-gold: #D4AF37;
    --border-crimson: #660000;
    --border-purple: #4B0082;
}

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.6;
    color: #F8F8FF;
    background-color: #1C1C1C;
    font-size: 1.1rem;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #D4AF37;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

p {
    font-family: 'Crimson Text', 'Georgia', serif;
    margin-bottom: 1rem;
    color: #F8F8FF;
    font-size: 1.1rem;
    line-height: 1.7;
}

.dark-section p {
    color: #F8F8FF;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
    color: #D4AF37;
}

/* Buttons */
.btn {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: #8B0000;
    color: #D4AF37;
    border-color: #8B0000;
}

.btn-primary:hover {
    background-color: #8B0000;
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background-color: #660000;
    color: #F8F8FF;
    border-color: #660000;
}

.btn-secondary:hover {
    background-color: #660000;
    color: #F8F8FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #4B0082;
    border-color: #4B0082;
}

.btn-outline:hover {
    background-color: #4B0082;
    color: #F8F8FF;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.95) 0%, rgba(28, 28, 28, 0.7) 50%, rgba(28, 28, 28, 0.3) 80%, transparent 100%);
    backdrop-filter: blur(10px);
    border-bottom: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.98) 0%, rgba(28, 28, 28, 0.8) 50%, rgba(28, 28, 28, 0.4) 80%, transparent 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 70px;
}

.nav-logo a {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: 'Crimson Text', 'Georgia', serif;
    color: #F8F8FF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-link:hover {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.3);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #8B0000 0%, #1C1C1C 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(139, 0, 0, 0.1) 25%, 
        rgba(75, 0, 130, 0.1) 50%, 
        rgba(0, 51, 102, 0.1) 75%, 
        rgba(212, 175, 55, 0.1) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.25rem;
    color: #F8F8FF;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.3rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.graphic-circle {
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.graphic-line {
    width: 100px;
    height: 2px;
    background-color: var(--accent-gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.graphic-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.graphic-dots::before,
.graphic-dots::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.graphic-dots::before {
    top: -50px;
    left: -6px;
}

.graphic-dots::after {
    bottom: -50px;
    left: -6px;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Dynamic Text Animation */
.dynamic-text {
    margin: 2rem 0;
}

.changing-text {
    position: relative;
    height: 4rem;
    overflow: hidden;
}

.text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.text-item.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    margin: 2rem 0;
    font-size: 1.2rem;
    color: #F8F8FF;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #660000;
    padding: 80px 0;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-item p {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.1rem;
    color: #F8F8FF;
    line-height: 1.6;
}

/* Mission Timeline */
.mission-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
}

.timeline-item h3 {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timeline-item p {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.2rem;
    color: #F8F8FF;
    line-height: 1.6;
}

.section-title.highlight {
    color: #D4AF37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Portfolio Preview */
.portfolio-preview {
    background-color: #990000;
    padding: 80px 0;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.portfolio-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(28, 28, 28, 0.9);
    border-radius: 12px;
    border: 1px solid #D4AF37;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    background-color: rgba(28, 28, 28, 0.95);
}

.portfolio-logo {
    width: 80px;
    height: 80px;
    background-color: #8B0000;
    color: #F8F8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.portfolio-item h3 {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.portfolio-item p {
    font-family: 'Crimson Text', 'Georgia', serif;
    color: #F8F8FF;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1C1C1C 0%, #8B0000 100%);
    padding: 80px 0;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.cta-title {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-size: 3rem;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cta-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(28, 28, 28, 0.9);
    border-radius: 12px;
    border: 1px solid #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cta-item:hover {
    transform: translateY(-5px);
    background-color: rgba(139, 0, 0, 0.9);
}

.cta-item h3 {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.cta-item p {
    font-family: 'Crimson Text', 'Georgia', serif;
    color: #F8F8FF;
}

/* Paginated Scroll Effect */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.6;
    color: #F8F8FF;
    background-color: #1C1C1C;
    font-size: 1.1rem;
    overflow-x: hidden;
}

/* Full Height Sections */
section {
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(28, 28, 28, 0.9) 100%), 
                url('../imagery/catholic-7.webp') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.philosophy-section {
    background: linear-gradient(135deg, rgba(102, 0, 0, 0.9) 0%, rgba(102, 0, 0, 0.8) 100%), 
                url('../imagery/catholic_3.jpeg') center/cover no-repeat;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.mission-section {
    background: linear-gradient(135deg, rgba(153, 0, 0, 0.9) 0%, rgba(153, 0, 0, 0.8) 100%), 
                url('../imagery/catholic_4.jpeg') center/cover no-repeat;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.portfolio-preview {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.8) 100%), 
                url('../imagery/catholic-6.jpeg') center/cover no-repeat;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.cta-section {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.9) 0%, rgba(139, 0, 0, 0.8) 100%), 
                url('../imagery/Catholic_5.webp') center/cover no-repeat;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.definition-section {
    background: linear-gradient(135deg, rgba(102, 0, 0, 0.9) 0%, rgba(102, 0, 0, 0.8) 100%), 
                url('../imagery/catholic-8.jpg') center/cover no-repeat;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

/* Section Content Containers */
.section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Text readability over background images */
.section-title,
.hero-title,
.hero-subtitle,
.philosophy-item h3,
.philosophy-item p,
.timeline-item h3,
.timeline-item p,
.portfolio-item h3,
.portfolio-item p,
.cta-title,
.cta-item h3,
.cta-item p,
.definition-title,
.definition-item h3,
.definition-quote p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 3;
}

.definition-title {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    font-size: 3rem;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.definition-item {
    text-align: center;
    padding: 2rem;
}

.definition-item h3 {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.3rem;
    color: #F8F8FF;
    line-height: 1.6;
    font-style: italic;
}

.definition-quote {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.definition-quote p {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.2rem;
    color: #F8F8FF;
    margin: 0.5rem 0;
    font-style: italic;
}

/* GIF Overlay */
.gif-overlay {
    position: fixed;
    left: -20%;
    top: 10%;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gif-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: sepia(0.6) hue-rotate(20deg) saturate(1.0) brightness(1.0) contrast(1.2);
}

.gif-overlay:hover {
    opacity: 1;
}

.scroll-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.3);
    border: 2px solid #D4AF37;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    background-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.scroll-indicator.active {
    background-color: #D4AF37;
    transform: scale(1.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #1C1C1C;
    max-width: 600px;
    margin: 0 auto;
}

.dark-section .section-header p {
    color: #F8F8FF;
}

/* About Preview */
.about-preview {
    background-color: #F8F8FF;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #F8F8FF;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #D4AF37;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #1C1C1C;
    font-weight: 500;
}

/* Investment Focus */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.focus-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #F8F8FF;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #D4AF37;
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.focus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.focus-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.focus-card p {
    color: #1C1C1C;
}

/* Portfolio Preview */
.portfolio-preview {
    background-color: #990000;
    padding: 80px 0;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background-color: #F8F8FF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #D4AF37;
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.portfolio-logo {
    width: 60px;
    height: 60px;
    background-color: #8B0000;
    color: #F8F8FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-card h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.portfolio-card p {
    color: #1C1C1C;
    margin-bottom: 1rem;
}

.portfolio-stage {
    display: inline-block;
    background-color: #D4AF37;
    color: #1C1C1C;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.9) 0%, rgba(139, 0, 0, 0.8) 100%), 
                url('../imagery/Catholic_5.webp') center/cover no-repeat;
    color: #F8F8FF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(139, 0, 0, 0.1) 25%, 
        rgba(75, 0, 130, 0.1) 50%, 
        rgba(0, 51, 102, 0.1) 75%, 
        rgba(212, 175, 55, 0.1) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #D4AF37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: #F8F8FF;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #8B0000;
    color: #D4AF37;
    border-color: #8B0000;
}

.cta-section .btn-primary:hover {
    background-color: #8B0000;
    color: #D4AF37;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
}

/* Footer */
.footer {
    background-color: #1C1C1C;
    color: #F8F8FF;
    padding: 3rem 0 1rem;
    border-top: 2px solid #D4AF37;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #F8F8FF;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #F8F8FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid #D4AF37;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #F8F8FF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .focus-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .graphic-circle {
        width: 150px;
        height: 150px;
    }
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--section-bg-dark) 0%, var(--section-bg-black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(139, 0, 0, 0.1) 25%, 
        rgba(75, 0, 130, 0.1) 50%, 
        rgba(0, 51, 102, 0.1) 75%, 
        rgba(212, 175, 55, 0.1) 100%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--text-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: #660000;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    color: var(--text-gold);
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.graphic-element {
    width: 80px;
    height: 80px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.graphic-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.graphic-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.graphic-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Values Section */
.values-section {
    background-color: #990000;
    padding: 80px 0;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: #1C1C1C;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #D4AF37;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-dark);
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
}

.philosophy-text h2 {
    color: var(--text-gold);
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-point {
    padding: 1.5rem;
    background-color: var(--primary-bg);
    border-radius: 12px;
    border-left: 4px solid var(--border-gold);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.philosophy-point h4 {
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.philosophy-point p {
    color: var(--text-dark);
    margin: 0;
}

/* Portfolio Filter */
.portfolio-filter {
    padding: 40px 0;
    background-color: var(--primary-bg);
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-gold);
    background-color: var(--primary-bg);
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--text-crimson);
    color: var(--text-light);
    border-color: var(--text-crimson);
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-item {
    display: none;
}

.portfolio-item.active {
    display: block;
}

.portfolio-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-logo {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.portfolio-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.portfolio-stage {
    display: inline-block;
    background-color: #e0e7ff;
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-sector {
    display: inline-block;
    background-color: var(--royal-purple);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-weight: 600;
    color: var(--text-gold);
}

/* Success Stories */
.success-stories {
    background-color: var(--section-bg-dark);
    padding: 80px 0;
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-card {
    background-color: var(--primary-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gold);
    text-align: center;
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.success-logo {
    width: 60px;
    height: 60px;
    background-color: var(--forest-green);
    color: var(--text-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.success-card h3 {
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.success-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-multiple {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Team Section */
.leadership-section,
.investment-team-section {
    padding: 80px 0;
}

.investment-team-section {
    background-color: var(--primary-bg);
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background-color: var(--primary-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gold);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.team-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background-color: var(--text-crimson);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
}

.team-info h3 {
    color: var(--text-gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.team-title {
    color: var(--text-crimson);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.team-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-link {
    color: var(--royal-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.team-link:hover {
    color: var(--text-gold);
}

/* Advisory Section */
.advisory-section {
    padding: 80px 0;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advisory-card {
    background-color: var(--primary-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gold);
    transition: transform 0.3s ease;
}

.advisory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.advisory-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.advisory-info h3 {
    color: var(--text-gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.advisory-title {
    color: var(--text-crimson);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.advisory-bio {
    color: var(--text-dark);
    text-align: center;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-dark);
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background-color: #1C1C1C;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #D4AF37;
}

.contact-form h3 {
    color: var(--text-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'UnifrakturCook', 'Times New Roman', serif;
    display: block;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Crimson Text', 'Georgia', serif;
    width: 100%;
    padding: 12px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #1C1C1C;
    color: #F8F8FF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Investment Process */
.investment-process {
    background-color: var(--section-bg-dark);
    padding: 80px 0;
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--primary-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gold);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--text-crimson);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-dark);
    margin: 0;
}

/* Investment Criteria */
.investment-criteria {
    padding: 80px 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gold);
    transition: transform 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.criteria-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.criteria-card h3 {
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.criteria-card p {
    color: var(--text-dark);
}

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

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .mission-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }
    
    /* Shadow Header Responsive */
    .navbar {
        background: linear-gradient(180deg, rgba(28, 28, 28, 0.98) 0%, rgba(28, 28, 28, 0.8) 50%, rgba(28, 28, 28, 0.4) 80%, transparent 100%);
    }
    
    .nav-container {
        padding: 10px 20px 20px 20px;
        min-height: 60px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    /* GIF Overlay Responsive */
    .gif-overlay {
        left: -20%;
        top: 10%;
        width: 60%;
        height: 100%;
        opacity: 1;
    }
