/* styles_light.css */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Jura', sans-serif;
    color: #1A3C34;
    /* Dark Forest Green for text */
    overflow-y: auto;
    background-color: #F4F7F5;
    /* Sage/Cream Light Background */
}

/* Identical typography/layout rules */
.mission-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    /* Maybe 400 for better visibility specific to light? sticking to 300 */
    line-height: 1.6;
    margin-top: 2rem;
    margin-bottom: 3rem;
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
    color: #1A3C34;
    text-wrap: balance;

    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 2.5s;
}

/* Background setup for Light Mode */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #F4F7F5;
    overflow: hidden;
}

/* Lighter, subtle pattern */
.background-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background-image: url('background_geometric.jpg');
    background-size: 400px;
    background-repeat: repeat;

    animation: organicMove 60s infinite alternate ease-in-out;
    opacity: 0.25;
    /* Balanced opacity */
    mix-blend-mode: multiply;
    /* Back to multiply to blend nicely with cream bg */
    filter: grayscale(0) contrast(1.1);
    /* Slightly softer contrast */
}

@keyframes organicMove {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(2%, 2%) scale(1.02) rotate(1deg);
    }
}

/* Overlay - maybe just a subtle gradient to center focus */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Inverted vignette: White at edges? Or just subtle shadow in center? */
    /* Let's do a very subtle white center glow to ensure text readability */
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.card-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
    z-index: 2;
}

h1 {
    font-weight: 700;
    font-size: clamp(2.5rem, 9vw, 5.5rem);
    margin: 0;
    letter-spacing: 0.1em;
    /* Dark green shadow instead of black */
    text-shadow: 0 4px 15px rgba(26, 60, 52, 0.2);
    line-height: 1;
    color: #112A23;
    /* Even darker for title */

    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 0.5s;
}

h2 {
    font-weight: 400;
    font-size: clamp(1.2rem, 4.5vw, 2.9rem);
    margin: 0.2rem 0 3rem 0;
    letter-spacing: 0.29em;
    text-transform: uppercase;
    color: #2E6B5C;
    /* Accent color for Intelligence */
    margin-left: 0.29em;

    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 1.5s;
}

.content-placeholder {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

.content-placeholder .contact-info.fade-in-4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: #1A3C34;

    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 3.5s;
}

.content-placeholder a {
    color: #2E6B5C;
    text-decoration: none;
    border-bottom: 1px solid rgba(46, 107, 92, 0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.content-placeholder a:visited {
    color: #2E6B5C;
}

.content-placeholder a:hover {
    border-color: #1A3C34;
    color: #1A3C34;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-switch {
    font-family: 'Roboto', sans-serif;
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 100;
}

.language-switch a {
    color: #1A3C34;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 16px;
    border: 1px solid rgba(26, 60, 52, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.language-switch a:visited {
    color: #1A3C34;
}

.language-switch a:hover {
    background: rgba(26, 60, 52, 0.05);
    border-color: #1A3C34;
}

.footer-info {
    font-family: 'Roboto', sans-serif;
    position: fixed;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    /* Higher opacity for light mode */
    z-index: 10;
    color: #1A3C34;
}

.footer-info a {
    color: #1A3C34;
    text-decoration: none;
    margin-left: 10px;
    border-bottom: 1px dotted rgba(26, 60, 52, 0.5);
    transition: all 0.3s ease;
}

.footer-info a:visited {
    color: #1A3C34;
}

.footer-info a:hover {
    opacity: 1;
    border-bottom-style: solid;
}

/* Privacy Policy Page */
.privacy-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    /* Light mode background */
    border-radius: 8px;
    border: 1px solid rgba(26, 60, 52, 0.1);
    backdrop-filter: blur(10px);
    font-family: 'Roboto', sans-serif;
    color: #1A3C34;
}

.privacy-container h1 {
    font-family: 'Jura', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    opacity: 1;
    animation: none;
    color: #112A23;
    text-shadow: none;
    /* No heavy shadow for document title */
}

.privacy-container h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2E6B5C;
    letter-spacing: 0.1em;
    text-transform: none;
    margin-left: 0;
    opacity: 1;
    animation: none;
}

.privacy-container p {
    line-height: 1.6;
    color: #1A3C34;
    margin-bottom: 1rem;
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    color: #2E6B5C;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.back-link:visited {
    color: #2E6B5C;
}

.back-link:hover {
    border-bottom-color: #2E6B5C;
    color: #1A3C34;
}