/* about.css - TransMind About Hero Section Styles */

.landing-about {
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.landing-about .container {
    position: relative;
    z-index: 2;
}

.landing-about-badge {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    font-family: var(--font-family-heading);
    font-size: 1.08rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: inline-block;
}

.landing-about-divider {
    width: 60px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.landing-about-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
    font-family: var(--font-family-heading);
    text-shadow: 0 2px 16px rgba(0,0,0,0.10);
    margin-bottom: 1.2rem;
}

.landing-about-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-white);
}

.landing-about .about-bg-pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background: url('data:image/svg+xml,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 100 100\'><defs><pattern id=\'grid\' width=\'10\' height=\'10\' patternUnits=\'userSpaceOnUse\'><path d=\'M 10 0 L 0 0 0 10\' fill=\'none\' stroke=\'%23ffffff15\' stroke-width=\'0.5\'/></pattern></defs><rect width=\'100\' height=\'100\' fill=\'url(%23grid)\'/></svg>');
    z-index: 1;
    pointer-events: none;
}

.landing-about .about-bg-radial {
    position: absolute;
    right: 0; bottom: 0;
    width: 180px; height: 180px;
    opacity: 0.13;
    background: radial-gradient(circle at 70% 80%, #fff 0%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.about-tubitak-link {
    background: none;
    border: none;
    color: inherit;
    text-decoration: underline;
    padding: 0;
}

.about-tubitak-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.about-tubitak-badge i {
    margin-right: 0.25em;
}

@media (max-width: 768px) {
    .landing-about {
        padding: 60px 0 40px 0;
    }
    .landing-about-title {
        font-size: 2.1rem;
    }
    .landing-about-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .landing-about {
        padding: 40px 0 20px 0;
    }
    .landing-about-title {
        font-size: 1.3rem;
    }
    .landing-about-subtitle {
        font-size: 0.98rem;
    }
}
