/* Big Text Generator Styles - Multi-Font Version */
.big-text-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.big-text-hero {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.big-text-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.big-text-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.big-text-tool-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.big-text-input-container {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.big-text-input-label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
}

.big-text-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s;
}

.big-text-input:focus {
    outline: none;
    border-color: #6e8efb;
}

.big-text-controls {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.big-text-generate-btn, .big-text-clear-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.big-text-generate-btn {
    background-color: #6e8efb;
    color: white;
}

.big-text-generate-btn:hover {
    background-color: #5a7df4;
    transform: translateY(-2px);
}

.big-text-clear-btn {
    background-color: #f5f5f5;
    color: #666;
}

.big-text-clear-btn:hover {
    background-color: #e0e0e0;
}

.big-text-styles-container {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.big-text-styles-title {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 20px;
}

.big-text-styles-output {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.big-text-style-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6e8efb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.big-text-style-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.big-text-style-preview {
    font-size: 1.5rem;
    margin-bottom: 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #eee;
    word-break: break-all;
}

.big-text-style-card h4 {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 5px;
}

.big-text-style-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.big-text-copy-style-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    width: 100%;
}

.big-text-copy-style-btn:hover {
    background-color: #3e8e41;
}

.big-text-info-section {
    margin-bottom: 50px;
}

.big-text-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.big-text-info-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.big-text-info-box:hover {
    transform: translateY(-5px);
}

.big-text-info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.big-text-info-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #444;
}

.big-text-info-desc {
    color: #666;
    line-height: 1.6;
}

.big-text-content-section {
    margin-bottom: 50px;
}

.big-text-content-title {
    font-size: 2rem;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.big-text-content-decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.big-text-content-paragraph {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.big-text-feature-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 5px solid #6e8efb;
}

.big-text-feature-title {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 15px;
}

.big-text-feature-list {
    padding-left: 20px;
}

.big-text-feature-item {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.big-text-subsection-title {
    font-size: 1.5rem;
    color: #444;
    margin: 30px 0 20px;
}

.big-text-styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.big-text-style-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.big-text-style-card:hover {
    transform: translateY(-5px);
}

.big-text-faq-section {
    margin-bottom: 50px;
}

.big-text-faq-title {
    font-size: 2rem;
    color: #444;
    margin-bottom: 30px;
    text-align: center;
}

.big-text-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.big-text-faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.big-text-faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #f9f9f9;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.big-text-faq-question:hover {
    background: #f0f0f0;
}

.big-text-faq-icon {
    font-size: 1.3rem;
}

.big-text-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.big-text-faq-answer p {
    padding: 20px 0;
    color: #555;
    line-height: 1.6;
}

.big-text-faq-item.active .big-text-faq-answer {
    max-height: 500px;
    padding: 0 20px;
}

.big-text-internal-link {
    color: #6e8efb;
    text-decoration: none;
    font-weight: 600;
}

.big-text-internal-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .big-text-title {
        font-size: 2rem;
    }
    
    .big-text-subtitle {
        font-size: 1rem;
    }
    
    .big-text-controls {
        flex-direction: column;
    }
    
    .big-text-generate-btn, .big-text-clear-btn {
        width: 100%;
    }
    
    .big-text-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .big-text-styles-output {
        grid-template-columns: 1fr;
    }
}