/* Zodiac Calculator Specific Styles */

/* Tool Page Common Styles */
.tool-page {
    padding-top: 0;
}

.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-purple);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--border-color);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}

.tool-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.tool-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.tool-icon-large {
    font-size: 72px;
    margin-bottom: 20px;
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

.tool-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.tool-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tool-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 16px;
}

.meta-separator {
    opacity: 0.5;
}

.tool-content {
    padding: 60px 20px;
    background: var(--bg-light);
}

/* Zodiac Calculator Container */
.zodiac-calc-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.zodiac-calc-header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.zodiac-calc-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.zodiac-calc-header p {
    font-size: 16px;
    opacity: 0.9;
}

.zodiac-input-group {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.zodiac-input-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.zodiac-input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.zodiac-input-group input:focus {
    outline: none;
    border-color: #667eea;
}

.zodiac-calc-btn {
    width: 100%;
    padding: 15px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.zodiac-calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Zodiac Result */
.zodiac-result {
    margin-top: 25px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    display: none;
}

.zodiac-result.show {
    display: block;
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zodiac-result-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 3px solid #667eea;
    margin-bottom: 25px;
}

.zodiac-icon-result {
    font-size: 80px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.zodiac-title-result h3 {
    font-size: 36px;
    color: #667eea;
    margin-bottom: 5px;
    font-weight: 900;
}

.zodiac-hindi {
    font-size: 20px;
    color: #764ba2;
    font-weight: 600;
    margin-bottom: 5px;
}

.zodiac-dates {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Zodiac Details Grid */
.zodiac-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.zodiac-detail-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.zodiac-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.detail-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.zodiac-detail-card h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zodiac-detail-card p {
    font-size: 18px;
    color: #667eea;
    font-weight: 700;
}

/* Personality Traits */
.zodiac-personality {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.zodiac-personality h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
}

.traits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.trait-item {
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid;
}

.trait-item.positive {
    background: #e8f5e9;
    border-left-color: #4CAF50;
}

.trait-item.negative {
    background: #ffebee;
    border-left-color: #f44336;
}

.trait-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trait-item.positive strong {
    color: #2e7d32;
}

.trait-item.negative strong {
    color: #c62828;
}

.trait-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Description */
.zodiac-description {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.zodiac-description h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
}

.zodiac-description p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* Compatibility */
.zodiac-compatibility {
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #ffc0cb;
}

.zodiac-compatibility h4 {
    font-size: 22px;
    color: #d81b60;
    margin-bottom: 15px;
    font-weight: 800;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.compat-item strong {
    display: block;
    margin-bottom: 8px;
    color: #d81b60;
    font-size: 14px;
}

.compat-item p {
    color: #555;
    font-size: 15px;
    font-weight: 600;
}

/* Info Box */
.zodiac-info-box {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
}

.zodiac-info-box h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.zodiac-info-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.zodiac-info-box ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
}

.zodiac-info-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* SEO Content Styles */
.seo-content {
    padding: 80px 20px;
    background: white;
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-article h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-article h2:first-child {
    margin-top: 0;
}

.content-article h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.content-article p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
}

.content-article ul,
.content-article ol {
    margin-bottom: 25px;
    padding-left: 30px;
    color: var(--text-gray);
}

.content-article li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.content-article strong {
    color: var(--text-dark);
    font-weight: 700;
}

.related-tools {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.related-tools h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.related-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.related-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.related-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #667eea;
}

.related-tool-card .tool-icon {
    font-size: 42px;
}

.related-tool-card .tool-name {
    font-weight: 700;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tool-header h1 {
        font-size: 32px;
    }
    
    .tool-subtitle {
        font-size: 16px;
    }
    
    .tool-icon-large {
        font-size: 52px;
    }
    
    .tool-meta {
        font-size: 14px;
    }
    
    .zodiac-calc-container {
        padding: 20px;
    }
    
    .zodiac-calc-header h2 {
        font-size: 24px;
    }
    
    .zodiac-result {
        padding: 20px;
    }
    
    .zodiac-result-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .zodiac-icon-result {
        font-size: 60px;
    }
    
    .zodiac-title-result h3 {
        font-size: 28px;
    }
    
    .zodiac-details-grid {
        grid-template-columns: 1fr;
    }
    
    .traits-grid {
        grid-template-columns: 1fr;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
    
    .content-article h2 {
        font-size: 26px;
    }
    
    .content-article h3 {
        font-size: 20px;
    }
    
    .related-tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tool-header {
        padding: 40px 20px;
    }
    
    .tool-header h1 {
        font-size: 26px;
    }
    
    .zodiac-calc-btn {
        font-size: 16px;
        padding: 12px;
    }
}