/* Logo Component Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Mitr', sans-serif;
}

/* Character Gallery Modern Design */
.character-showcase {
    perspective: 1000px;
}

.character-selector {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.character-display {
    width: 100%;
    height: 400px;
    border-radius: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.character-display:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.character-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.character-image.placeholder {
    font-size: 8rem;
    background: none;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.character-image.placeholder.hidden {
    display: none !important;
}

.character-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.character-nav-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.character-nav-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.character-nav-btn.active {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.character-info {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.character-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    /* Increased margin since no description */
}

.character-description {
    display: none;
    /* Hidden since we removed descriptions */
}

.character-select-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.3);
}

.character-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(249, 115, 22, 0.4);
}

/* Enhanced Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Contact Page Improvements */
.contact-hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fbbf24 100%);
}

.email-contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.email-contact-card:hover {
    border-color: #f97316;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
    transform: translateY(-5px);
}

.email-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.email-address {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    background: linear-gradient(135deg, #f97316, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-break: break-all;
}

@media (max-width: 768px) {
    .character-display {
        height: 300px;
    }

    .character-nav-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }

    .character-name {
        font-size: 1.5rem;
    }
}