﻿/* Recaptcha */
.grecaptcha-badge {
	display: none !important;
}

.small-recaptcha {
	font-size: 0.84rem; 
	opacity: 0.8;
}

/* Biography Section Styles */
.biography {
    background-color: #f9f9f9;
}

.biography .ceo-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.biography .ceo-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 14, 104, 0.1) 0%, rgba(139, 14, 104, 0) 100%);
    border-radius: 12px;
}

.biography .ceo-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.biography h2 {
    color: #8b0e68;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.biography h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #8b0e68;
    border-radius: 2px;
}

.biography h3 {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.biography p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.biography a[href^="mailto:"] {
    color: #8b0e68;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #8b0e68;
    border-radius: 25px;
    margin-top: 1rem;
}

.biography a[href^="mailto:"]:hover {
    color: #fff;
    background-color: #8b0e68;
}

@media screen and (max-width: 640px) {
    .biography .grid-x {
        flex-direction: column;
    }
    
    .biography .ceo-photo {
        margin-bottom: 2rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .biography h2 {
        font-size: 1.75rem;
    }
    
    .biography h3 {
        font-size: 1.1rem;
    }
}