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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

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

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
    margin-top: auto;
}

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

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

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Split-Screen Layout */
.split-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    margin-top: 0;
}

/* Left Section - Card Panel */
.left-panel {
    width: 400px;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Design */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Center Divider */
.center-divider {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    z-index: 2;
}

/* Right Section - Main Content */
.right-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub-heading {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
}

/* Hero Section */
.hero {
    width: 100%;
    background: #000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-photo {
    margin-top: 20px;
    margin-bottom: 0;
}

.org-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.center-photo {
    max-width: 500px;
    max-height: 700px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.7;
}

.hero-quote {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.8;
    text-align: center;
}

.hero-quote .author {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 14px;
    opacity: 0.7;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffffff;
    color: #000000;
}

/* Vision-Mission Page Responsive Design */
@media (max-width: 1024px) {
    .left-panel {
        width: 350px;
        padding: 40px 30px;
    }
    
    .right-content {
        padding: 60px 40px;
    }
    
    .main-heading {
        font-size: 36px;
    }
    
    .sub-heading {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .split-container {
        flex-direction: column;
    }
    
    .left-panel {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 20px;
    }
    
    .center-divider {
        width: 100%;
        height: 60px;
        flex-direction: row;
    }
    
    .divider-line {
        width: 100%;
        height: 2px;
    }
    
    .right-content {
        padding: 40px 20px;
    }
    
    .main-heading {
        font-size: 32px;
    }
    
    .sub-heading {
        font-size: 18px;
    }
    
    .content-text {
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    /* Index page mobile styles */
    .nav-links {
        display: none;
    }
    
    nav {
        padding: 15px 20px;
    }
    
    .center-photo {
        max-width: 300px;
        max-height: 420px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }
    
    .nav-logo {
        font-size: 18px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .left-panel {
        padding: 30px 15px;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .card-header {
        gap: 15px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .right-content {
        padding: 30px 15px;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .sub-heading {
        font-size: 16px;
    }
    
    .content-text {
        font-size: 15px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .footer-links {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    /* Index page mobile styles */
    .center-photo {
        max-width: 250px;
        max-height: 350px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .org-name {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .hero-quote {
        font-size: 13px;
        max-width: 95%;
    }
    
    .hero-quote .author {
        font-size: 11px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* Page-specific styles */
.page-vision {
    background: #070707;
}

.page-vision .page-hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 80px 20px 40px;
    color: #ffffff;
}

.page-vision .page-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.page-vision .hero-copy {
    max-width: 720px;
}

.page-vision .hero-label {
    display: inline-block;
    margin-bottom: 28px;
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.page-vision .hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0;
    max-width: 11ch;
}

.page-vision .hero-text {
    margin-top: 30px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    max-width: 680px;
}

.page-vision .hero-text + .hero-text {
    margin-top: 24px;
}

.page-vision .hero-image {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.page-vision .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.08) brightness(0.95);
}

.page-vision .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.page-vision .page-divider {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1040px) {
    .page-vision .page-wrapper {
        grid-template-columns: 1fr;
    }

    .page-vision .hero-image {
        min-height: 420px;
    }
}

@media (max-width: 680px) {
    .page-vision .page-hero {
        padding: 60px 16px 24px;
    }

    .page-vision .hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .page-vision .hero-text {
        font-size: 1rem;
    }
}

.page-enter {
    background: #070707;
}

.page-enter .hero-video {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
}

.page-enter .hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8) contrast(1.2);
    transition: all 0.5s ease;
    cursor: pointer;
}

.page-enter .hero-video-element.colorful {
    filter: brightness(0.9) contrast(1.1);
}

.page-enter .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.page-enter .enter-bulwark-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.page-enter .hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.page-enter .hero-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-enter .hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-enter .entry-design-section {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.page-enter .entry-content {
    max-width: 760px;
}

.page-enter .entry-tag {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.65);
}

.page-enter .entry-title {
    font-size: clamp(4.2rem, 7vw, 6.4rem);
    line-height: 0.95;
    margin: 0;
    letter-spacing: -0.04em;
    max-width: 10ch;
}

.page-enter .entry-copy {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    font-size: 1.05rem;
}

.page-enter .entry-copy + .entry-copy {
    margin-top: 24px;
}

.page-enter .entry-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    background: #111;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.page-enter .entry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.08) brightness(0.95);
}

.page-enter .entry-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.66) 100%);
    pointer-events: none;
}

@media (max-width: 1040px) {
    .page-enter .entry-design-section {
        grid-template-columns: 1fr;
    }

    .page-enter .entry-image {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .page-enter .enter-bulwark-container {
        padding: 60px 15px 30px;
    }
}
