/* Custom CSS for SEO AI Writer */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Header Styles */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Card Styles */
.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-weight: bold;
}

/* Feature Box */
.feature-box {
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.feature-box i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-weight: bold;
    margin-bottom: 15px;
}

/* Button Styles */
.btn {
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 500;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Form Styles */
.form-control {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.form-label {
    font-weight: 500;
}

/* Dashboard Styles */
.dashboard-stats {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dashboard-stats h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
}

/* Editor Styles */
.editor-container {
    border: 1px solid #ced4da;
    border-radius: 5px;
    overflow: hidden;
}

.editor-toolbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ced4da;
    padding: 10px;
}

.editor-content {
    padding: 15px;
    min-height: 300px;
    background-color: white;
}

/* Article Card */
.article-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.article-card .badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 50px;
}

/* Pricing Table */
.pricing-table {
    text-align: center;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.pricing-table:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    padding: 30px 20px;
    background-color: #0d6efd;
    color: white;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
}

.pricing-price {
    font-size: 3rem;
    font-weight: bold;
    padding: 20px;
}

.pricing-features {
    padding: 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

.pricing-footer {
    padding: 20px;
}

/* Footer */
footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: white;
} 