/* assets/css/style.css */

/* Custom Gradients & Colors for consistency */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.header-bg {
    background-color: #6f42c1; /* Darker purple from index.php */
}

/* Navbar link hover effect */
.nav-link:hover {
    color: #a5b4fc !important; /* Tailwind's indigo-200 equivalent */
}

/* Buttons */
.btn-primary {
    background-color: #667eea; /* Gradient start color */
    border-color: #667eea;
}
.btn-primary:hover {
    background-color: #764ba2; /* Gradient end color */
    border-color: #764ba2;
}
.btn-submit {
    background-image: linear-gradient(to right, #8b5cf6, #6366f1); /* Tailwind purple-600 to indigo-600 */
    color: white;
    font-weight: bold;
    padding-top: 0.75rem; /* py-3 */
    padding-bottom: 0.75rem; /* py-3 */
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem; /* px-6 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* shadow-md */
    transition: background-position 0.3s ease-in-out; /* Smooth transition for hover */
    background-size: 200% auto; /* For linear-gradient hover effect */
}
.btn-submit:hover {
    background-position: right center; /* Shifts gradient on hover */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


/* Text colors */
.text-purple-800 {
    color: #4a148c; /* Darker purple for titles */
}

/* Card Hover Effects */
.testimonial-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.package-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.package-card:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* FAQ Item Animations */
.animated-arrow {
    transition: transform 0.3s ease;
}
.faq-item:hover .animated-arrow {
    transform: rotate(90deg);
}

/* Fade-in Animation for Sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Input Styles */
.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem; /* p-3 */
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.375rem; /* rounded-md */
    outline: none;
    transition: all 0.2s ease-in-out;
}

.form-input:focus, .form-textarea:focus {
    border-color: #8b5cf6; /* focus:ring-purple-500 equivalent */
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3); /* focus:ring-2 focus:ring-purple-500 equivalent */
}

/* Blog Page Specific Styles (if you want to move them from blog.php) */
/* .blog-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.blog-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.pagination .page-link {
    color: #667eea;
    border-color: #667eea;
}
.pagination .page-item.active .page-link {
    background-color: #667eea;
    border-color: #667eea;
    color: white;
}
.pagination .page-link:hover {
    background-color: #e0e7ff;
    border-color: #667eea;
}
.no-posts-found {
    text-align: center;
    padding: 5rem 0;
    color: #6b7280; /* gray-500 */
    font-size: 1.5rem; /* text-2xl */
} */

/* Single Blog Post Specific Styles (if you want to move them from single.php) */
/* .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.post-content h2, .post-content h3 {
    color: #4a148c; /* Darker purple */
    margin-top: 30px;
    margin-bottom: 15px;
}
.post-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}
.post-content ul, .post-content ol {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 20px;
}
.post-content ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}
.post-content ol li {
    list-style-type: decimal;
    margin-bottom: 5px;
}
.post-meta {
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 30px;
} */