/* WARFARE HERO - Brand New Hero Section */
/* Black and White Theme with Subtle Grey Touches */

/* Remove any potential white lines */
*, *::before, *::after {
    box-sizing: border-box;
}

.warfare-hero * {
    border: none !important;
    outline: none !important;
}

.warfare-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    margin-top: 85px;
    border: none;
    outline: none;
}

/* Animated Background Grid */
.warfare-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 40s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Background Profile Image */
.hero-profile-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background-image: url('../images/profile_image.jpeg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 2;
    pointer-events: none;
    animation: subtleMove 30s ease-in-out infinite;
    filter: contrast(1.1) brightness(1.05);
}

@keyframes subtleMove {
    0%, 100% { 
        background-position: center right;
        transform: scale(1);
    }
    50% { 
        background-position: 30% center;
        transform: scale(1.02);
    }
}

.hero-profile-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(0, 0, 0, 0.2) 40%, 
        rgba(0, 0, 0, 0.5) 70%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* Main Container */
.warfare-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

/* Main Title */
.warfare-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.1;
}

/* Subtitle */
.warfare-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: #b0b0b0;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Strategic Actions Container */
.strategic-actions {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Individual Action Card */
.action-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out both;
    text-decoration: none;
}

.action-card:nth-child(1) { animation-delay: 0.8s; }
.action-card:nth-child(2) { animation-delay: 1s; }
.action-card:nth-child(3) { animation-delay: 1.2s; }

.action-card:hover {
    transform: translateY(-10px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Action Icon */
.action-icon {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.action-card:hover .action-icon {
    transform: scale(1.2);
    color: #f0f0f0;
}

/* Action Label */
.action-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.action-card:hover .action-label {
    color: #f0f0f0;
}

/* CTA Section */
.warfare-cta {
    animation: fadeInUp 1s ease-out 1.5s both;
    text-align: center;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.scroll-arrow {
    font-size: 2rem;
    color: #ffffff;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    color: #e0e0e0;
    transform: scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.08;
    animation: float 15s ease-in-out infinite;
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 1;
}

/* Strategic Positioning for All Elements */
.element-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 12%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
    font-size: 2rem;
}

.element-4 {
    top: 30%;
    right: 8%;
    animation-delay: 3s;
    font-size: 1.8rem;
}

.element-5 {
    top: 80%;
    left: 25%;
    animation-delay: 4s;
}

.element-6 {
    top: 10%;
    right: 25%;
    animation-delay: 5s;
}

.element-7 {
    bottom: 40%;
    right: 20%;
    animation-delay: 6s;
}

.element-8 {
    top: 50%;
    left: 5%;
    animation-delay: 7s;
    font-size: 1.2rem;
}

.element-9 {
    bottom: 15%;
    right: 30%;
    animation-delay: 1.5s;
}

.element-10 {
    top: 25%;
    left: 30%;
    animation-delay: 3.5s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.08;
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.1);
        opacity: 0.12;
    }
    50% { 
        transform: translateY(-25px) rotate(180deg) scale(0.9); 
        opacity: 0.15;
    }
    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.05);
        opacity: 0.1;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .warfare-hero {
        margin-top: 80px;
        padding: 2rem 0;
        border: none;
        outline: none;
        box-shadow: none;
    }
    
    .hero-profile-bg {
        width: 100%;
        opacity: 0.2;
        background-position: center top;
        filter: contrast(1.15) brightness(1.1);
    }
    
    .hero-profile-bg::after {
        background: linear-gradient(to bottom, 
            transparent 0%, 
            rgba(0, 0, 0, 0.3) 30%, 
            rgba(0, 0, 0, 0.6) 70%, 
            rgba(0, 0, 0, 0.85) 100%);
    }
    
    .warfare-container {
        padding: 1rem;
        border: none;
    }
    
    .warfare-title {
        font-size: clamp(2rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
    }
    
    .warfare-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 3rem;
    }
    
    .strategic-actions {
        gap: 2rem;
    }
    
    .action-card {
        width: 100px;
        height: 100px;
        padding: 1rem 0.5rem;
    }
    
    .action-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .action-label {
        font-size: 1rem;
    }
    
    .warfare-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .floating-element {
        font-size: 1rem;
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .warfare-hero {
        padding: 1rem 0;
        border: none;
        outline: none;
    }
    
    .action-card {
        width: 80px;
        height: 80px;
        padding: 0.8rem 0.3rem;
        border: none;
        outline: none;
    }
    
    .action-icon {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .action-label {
        font-size: 0.9rem;
    }
    
    .strategic-actions {
        gap: 1.5rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .warfare-hero {
        background: #000000;
    }
    
    .action-card {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .warfare-title {
        background: #ffffff;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .warfare-hero::before,
    .floating-element,
    .gridMove {
        animation: none;
    }
    
    .action-card:hover {
        transform: translateY(-5px);
    }
    
    .action-card:hover .action-icon {
        transform: scale(1.1);
    }
}

/* ===============================================
   EMPIRE STORY SECTION - CLEAN SIMPLE DESIGN
   =============================================== */

.empire-story-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
    text-align: center;
}

.empire-container {
    max-width: 900px;
    margin: 0 auto;
}

.empire-name {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.empire-highlight {
    background: linear-gradient(135deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empire-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #666;
    margin-bottom: 40px;
    line-height: 1.4;
}

.empire-main {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: #2a2a2a;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Empire Divider */
.empire-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    gap: 20px;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #333 50%, transparent 100%);
    flex: 1;
    max-width: 120px;
}

.divider-icon {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
}

/* Empire Content Sections */
.empire-weapon {
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    line-height: 1.3;
}

.empire-conquest {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #2a2a2a;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.empire-truth {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: #1a1a1a;
    line-height: 1.5;
    font-weight: 600;
    max-width: 700px;
    margin: 30px auto 0 auto;
    text-align: center;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .empire-story-section {
        padding: 40px 15px;
    }
    
    .empire-name {
        margin-bottom: 15px;
    }
    
    .empire-tagline {
        margin-bottom: 30px;
    }
}

/* ===============================================
   WARFARE MANIFESTO SECTION - WHITE BACKGROUND
   =============================================== */

.warfare-manifesto {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.manifesto-container {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-weapon {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.manifesto-conquest {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: #2a2a2a;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.manifesto-truth {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #1a1a1a;
    line-height: 1.4;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
}

.truth-highlight {
    font-weight: 800;
    color: #d32f2f;
}

/* Mobile optimizations for manifesto */
@media (max-width: 768px) {
    .warfare-manifesto {
        padding: 60px 15px;
    }
    
    .manifesto-weapon {
        margin-bottom: 30px;
    }
    
    .manifesto-conquest {
        margin-bottom: 30px;
    }
}

/* ===============================================
   EMPIRE BUILDER SECTION - MATCHES SITE THEME
   =============================================== */

.empire-builder-section {
    background: #ffffff;
    padding: 60px 20px 20px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.builder-container {
    max-width: 900px;
    margin: 0 auto;
}

.builder-mission {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    line-height: 1.2;
}

.conquest-principles {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.principle-item {
    position: relative;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
}

.principle-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.principle-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    color: #1a1a1a;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    letter-spacing: -0.01em;
}

.principle-text::before {
    content: "⚔";
    color: #666;
    margin-right: 15px;
    font-style: normal;
    font-size: 1.2em;
    opacity: 0.8;
}

.empire-ctas {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-card:hover::before {
    opacity: 0.7;
}

.cta-card:active {
    transform: translateY(-5px) scale(1.02);
}

.cta-card .action-icon {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.cta-card:hover .action-icon {
    transform: scale(1.2);
    color: #000000;
}

.cta-card .action-label {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-card:hover .action-label {
    color: #000000;
    font-weight: 700;
}

/* Mobile optimizations for builder section */
@media (max-width: 768px) {
    .empire-builder-section {
        padding: 40px 15px 15px 15px;
    }
    
    .builder-mission {
        margin-bottom: 30px;
    }
    
    .conquest-principles {
        margin-bottom: 40px;
        gap: 20px;
    }
    
    .principle-item {
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .empire-ctas {
        gap: 20px;
    }
    
    .cta-card {
        width: 100px;
        height: 100px;
    }
    
    .cta-card .action-icon {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .cta-card .action-label {
        font-size: 0.85rem;
    }
}
