/*
Theme Name: meit theme
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/


.meit-logo-box {
display: flex;
align-items: center;
justify-content: center;
width: 35px;
height: 35px;
background-color: #3b82f6; / Accent Blue */
color: #ffffff;
font-weight: bold;
font-size: 20px;
border-radius: 6px;
line-height: 1;
}

/* 2. Text Gradient (Für "ChatGPT?" in der Headline) */
.text-gradient-blue {
background: linear-gradient(to right, #60a5fa, #818cf8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
}

/* 3. Navigation Links Hover Effect */
.meit-nav-link {
color: #9ca3af;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: color 0.3s ease;
}

.meit-nav-link:hover {
color: #ffffff;
}

/* 4. Ambient Glow Background Effect (Optional für Container) */
.glow-accent {
position: relative !important;
z-index: 1 !important;
}

.glow-accent::before {
content: '';
position: absolute;
top: -100px;
right: 45%;
width: 300px;
height: 300px;
background: rgba(59, 130, 246, 0.25); /* Soft blue glow */
border-radius: 50%;
filter: blur(80px);
z-index: -1;
pointer-events: none;
}