/* Journey Page Styles */
:root {
    /* Ice Colors */
    --ice-light: rgba(255, 255, 255, 0.9);
    --ice-medium: rgba(240, 248, 255, 0.8);
    --ice-dark: rgba(230, 240, 255, 0.7);
    --ice-shadow: rgba(27, 59, 111, 0.2);
    
    /* Background Colors */
    --bg-primary: #1B3B6F;
    --bg-secondary: #065A82;
    --bg-dark: #0A192F;
    
    /* Text Colors */
    --text-light: #E6F1FF;
    --text-medium: #8892B0;
    --text-dark: #CCD6F6;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(27, 59, 111, 0.95) 0%, rgba(6, 90, 130, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-medium);
    line-height: 1.6;
}

/* Story Section */
.story {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.story-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 25, 47, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
}

.story-text {
    color: var(--text-medium);
    line-height: 2;
    font-size: 1.1rem;
}

.story-text p {
    margin-bottom: 2rem;
}

.story-text p:last-child {
    margin-bottom: 3rem;
}

.story-text strong {
    color: var(--text-light);
    font-weight: 500;
}

.story-quote {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .story {
        padding: 4rem 1.5rem;
    }

    .story-content {
        padding: 2rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .story-quote {
        font-size: 1.2rem;
    }

    .hero {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .story-content {
        padding: 1.5rem;
    }

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

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

/* Footer Styles */
.footer {
    background: var(--bg-primary);
    color: var(--text-light);
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-medium);
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-medium);
}
 