/* Custom CSS for PetScreeningReview.com */

:root {
    --dark-blue: #1e3a8a;
    --bs-primary: #1e3a8a;
    --bs-primary-rgb: 30, 58, 138;
    --bs-warning: #1e3a8a;
    --bs-warning-rgb: 30, 58, 138;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Hero Section Styling */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248,249,250,0.9) 0%, rgba(233,236,239,0.9) 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Profile Image Styling */
.profile-image-container {
    position: relative;
}

.profile-image-container img {
    border: 3px solid #1e3a8a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 280px;
    width: 100%;
}

.large-profile-image {
    max-width: 450px !important;
}

.profile-image-container:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.article-image-thumb {
    max-height: 320px;
    width: 100%;
    object-fit: contain;
    background: #fff;
    cursor: zoom-in;
}

@media (max-width: 576px) {
    .article-image-thumb {
        max-height: 220px;
    }
}

/* Investigation Section */
.investigation-section {
    background: rgba(0,0,0,0.3);
}

.investigation-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s ease;
}

.investigation-item:hover {
    color: #1e3a8a !important;
}

.investigation-item:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.cta-card {
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Button Enhancements */
.btn {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Form Controls */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6c757d;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.15);
}

.input-group .btn {
    border-radius: 0 8px 8px 0;
}

.input-group .form-control {
    border-radius: 8px 0 0 8px;
}

/* Credentials Styling */
.credentials-section {
    margin-top: 1.5rem;
}

.credential-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.credential-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #1e3a8a;
}

.credential-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.credential-org {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Decorative Bullet Points */
.decorative-bullets {
    list-style: none;
    padding-left: 0;
}

.decorative-bullets li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}

.decorative-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 3px;
    width: 30px;
    height: 30px;
    background-color: #1F3A8A;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.bullet-link {
    color: #1F3A8A !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bullet-link:hover {
    color: #0f172a !important;
    text-decoration: underline !important;
}

/* Typography Improvements */
.display-4 {
    letter-spacing: -1px;
    line-height: 1.2;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Badge Styling */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Card Enhancements */
.card {
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .profile-image-container img {
        max-width: 220px;
    }
}

/* Animation for coming soon badge */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.badge {
    animation: pulse 2s infinite;
}

/* Navbar enhancement */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Footer styling */
footer {
    background: rgba(33,37,41,0.9) !important;
}
