@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8f9fa;
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gradient:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.1) 0%, rgba(248, 249, 250, 1) 40%);
    min-height: 80vh;
}

.max-w-700 {
    max-width: 700px;
}

/* Tool Cards */
.tool-container {
    max-width: 1100px;
}

.tool-card {
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.custom-textarea {
    resize: none;
    min-height: 450px;
    font-size: 1.05rem;
    line-height: 1.6;
    background-color: transparent !important;
}

.custom-textarea:focus {
    outline: none;
    box-shadow: none;
}

.output-card {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

/* Article Styling */
.article-section {
    position: relative;
    z-index: 1;
}

.custom-quote {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid #667eea;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box {
    transition: all 0.3s;
}

.feature-box:hover {
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-icons a:hover {
    color: #667eea !important;
}