/* ANA Website Fallback CSS - No Build Required */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.6;
}

/* ANA Brand Colors */
:root {
    --ana-blue: #1e40af;
    --ana-orange: #f97316;
    --ana-lightblue: #0ea5e9;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Colors */
.text-gray-900 { color: var(--gray-900); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-500 { color: var(--gray-500); }
.text-white { color: #ffffff; }
.text-ana-blue { color: var(--ana-blue); }
.text-ana-orange { color: var(--ana-orange); }
.text-ana-lightblue { color: var(--ana-lightblue); }

.bg-ana-blue { background-color: var(--ana-blue); }
.bg-ana-orange { background-color: var(--ana-orange); }
.bg-ana-lightblue { background-color: var(--ana-lightblue); }
.bg-white { background-color: #ffffff; }

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

.flex {
    display: flex;
}

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Mission & Vision Section Specific */
.mission-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 25%, #dbeafe 50%, #fef3e2 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.mission-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(30, 64, 175, 0.1);
    color: var(--ana-blue);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.mission-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25;
}

.mission-gradient-text {
    background: linear-gradient(135deg, var(--ana-blue) 0%, var(--ana-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.625;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-2px);
}

.commitment-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.commitment-icon:hover {
    transform: scale(1.1);
}

.commitment-icon.blue {
    background: linear-gradient(135deg, var(--ana-blue) 0%, var(--ana-lightblue) 100%);
}

.commitment-icon.orange {
    background: linear-gradient(135deg, var(--ana-orange) 0%, #ea580c 100%);
}

.commitment-icon.red {
    background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
}

.commitment-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.commitment-content p {
    font-size: 1rem;
    color: var(--gray-600);
}

.mission-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--ana-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.btn-secondary {
    border: 2px solid var(--ana-orange);
    color: var(--ana-orange);
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: var(--ana-orange);
    color: white;
}

/* Visual Circle */
.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mission-circle {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(14, 165, 233, 0.3) 50%, rgba(249, 115, 22, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-circle-inner {
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ana-blue) 0%, var(--ana-lightblue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Floating animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-8px) rotate(1deg); 
    }
    66% { 
        transform: translateY(-12px) rotate(-1deg); 
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Enhanced visual effects */
.enhanced-shadow {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-effect {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (min-width: 640px) {
    .mission-title { font-size: 3rem; }
    .mission-buttons { 
        flex-direction: row; 
        gap: 1rem;
    }
    .commitment-item { gap: 1rem; }
}

@media (min-width: 1024px) {
    .mission-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .mission-title { font-size: 3rem; }
}