/* AI Pages Specific Styles */

/* Dropdown menu styling for dark navbar on AI pages */
.header-top-area .dropdown-menu {
    background: rgba(28, 34, 46, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.header-top-area .dropdown-menu > li > a {
    color: #fff !important;
    background: transparent !important;
}

.header-top-area .dropdown-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #f89a59 !important;
}

.header-top-area .dropdown-menu > li.active > a {
    background: rgba(248, 154, 89, 0.2) !important;
    color: #f89a59 !important;
}

/* Mobile dropdown styling for AI pages */
@media (max-width: 767px) {
    .header-top-area .dropdown-menu {
        background: #fff !important;
        border: 1px solid #ddd !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    .header-top-area .dropdown-menu > li > a {
        color: #333 !important;
    }
    
    .header-top-area .dropdown-menu > li > a:hover {
        background: #f5f5f5 !important;
        color: #f89a59 !important;
    }
    
    .header-top-area .dropdown-menu > li.active > a {
        background: rgba(248, 154, 89, 0.1) !important;
        color: #f89a59 !important;
    }
}

/* Additional styles for pages with dark backgrounds */
body[style*="background: rgb(28, 34, 46)"] .header-top-area .dropdown-menu,
body[style*="background: rgb(28, 34, 46)"] .header-top-area .dropdown-menu > li > a {
    background: rgba(28, 34, 46, 0.95) !important;
    color: #fff !important;
}

body[style*="background: rgb(28, 34, 46)"] .header-top-area .dropdown-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #f89a59 !important;
}

/* Ensure dropdown works properly on all dark-themed pages */
.dark-theme .header-top-area .dropdown-menu {
    background: rgba(28, 34, 46, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.dark-theme .header-top-area .dropdown-menu > li > a {
    color: #fff !important;
    background: transparent !important;
}

.dark-theme .header-top-area .dropdown-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #f89a59 !important;
}

/* Additional AI pages specific styles can be added here */

/* AI Hero Section Overrides */
.ai-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 50vh !important;
    background: #1c222e !important;
}

/* AI Character Generation and AI Voice Synthesis hero backgrounds */
.ai-character-generation .ai-hero,
.ai-voice-synthesis .ai-hero {
    background: #2c3e50 !important;
}

.ai-hero .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

.ai-hero .hero-title {
    text-align: center !important;
    display: block !important;
    /* width: 100% !important; */
    margin: 0 auto !important;
    /* color: #2c3e50 !important; */
    text-shadow: none !important;
    box-shadow: none !important;
    font-size: 3.5rem !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(45deg, #ffe66d, #f89a59) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
    width: auto !important;
}

.ai-hero .hero-subtitle {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
} 