* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #e4dad0;
    color: #2a2a2a;
    line-height: 1.6;
    overflow-x: hidden;
}

h2, h3 {
    color: #4d5be0;
}

/* Development Header */
.dev-header {
    background-color: rgba(77, 91, 224, 0.15);
    padding: 12px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(77, 91, 224, 0.2);
}

.dev-header p {
    color: #4d5be0;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.dev-header a {
    color: #4d5be0;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.dev-header a:hover {
    opacity: 0.8;
}

/* Blob Shapes */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: #d2cde6;
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background-color: #c87973;
    bottom: -50px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background-color: #c87973;
    top: 50px;
    left: 10%;
    animation: float 18s ease-in-out infinite;
}

.blob-4 {
    width: 380px;
    height: 380px;
    background-color: #d2cde6;
    bottom: 100px;
    right: 5%;
    animation: float 22s ease-in-out infinite reverse;
}

.blob-5 {
    width: 420px;
    height: 420px;
    background-color: #d2cde6;
    top: 20%;
    right: -80px;
    animation: float 24s ease-in-out infinite;
}

.blob-6 {
    width: 360px;
    height: 360px;
    background-color: #e8c4a0;
    bottom: 10%;
    left: -60px;
    animation: float 19s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.logo {
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.hero-text {
    font-size: 3rem;
    font-weight: 600;
    color: #666666;
    text-align: center;
    max-width: 600px;
    line-height: 1.2;
}

/* Team Section */
.team {
    position: relative;
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 102, 102, 0.2);
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    display: block;
    border: 4px solid #999999;
    box-shadow: 0 10px 30px rgba(102, 102, 102, 0.3);
}

.team-name {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-role {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.team-details {
    color: #2a2a2a;
    font-size: 1rem;
    line-height: 1.7;
}

.team-details p {
    margin-bottom: 12px;
}

.team-details p:last-child {
    margin-bottom: 0;
}

/* Mission Section */
.mission {
    position: relative;
    padding: 100px 20px 60px 20px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}
.mission-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}
.mission-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}
.mission-text {
    flex: 1 1 400px;
    min-width: 300px;
    font-size: 1.2rem;
    color: #2a2a2a;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.vireo-highlight {
    color: #4d5be0;
    font-weight: 600;
    font-family: Arial, sans-serif;
}
.mission-photo {
    flex: 0 1 500px;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mission-photo img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(200, 121, 115, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-photo img:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(200, 121, 115, 0.35);
}

.mission-list {
    margin: 18px 0 18px 18px;
    padding-left: 18px;
    font-size: 1.1rem;
    color: #2a2a2a;
    line-height: 1.7;
}
.mission-list li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.mission-subtitle {
    font-size: 2rem;
    color: #c87973;
    margin-top: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .mission-subtitle {
        font-size: 1.3rem;
        margin-top: 24px;
    }
}

@media (max-width: 900px) {
    .mission-flex {
        flex-direction: column;
        gap: 30px;
    }
    .mission-photo {
        flex: 0 1 100%;
    }
    .mission-photo img {
        max-width: 400px;
    }
}
@media (max-width: 480px) {
    .mission {
        padding: 50px 10px 30px 10px;
    }
    .mission-text {
        font-size: 1rem;
    }
    .mission-photo img {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background-color: rgba(102, 102, 102, 0.1);
    padding: 40px 20px;
    text-align: center;
    color: #2a2a2a;
    position: relative;
    z-index: 1;
}

.footer p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer a {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2rem;
    }

    .logo {
        width: 320px;
        height: 320px;
    }

    .hero-content {
        gap: 30px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }

    .blob {
        filter: blur(40px);
    }

    .blob-1, .blob-2, .blob-3, .blob-4, .blob-5, .blob-6 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-name {
        font-size: 1.5rem;
    }
}

