/* Additional styles for all pages with light red/pink accent colors */

:root {
    --lotus-red: #ff6b6b;
    --lotus-pink: #ff8ba7;
    --lotus-coral: #ffa69e;
    --lotus-light-pink: #ffc7c7;
    --lotus-peach: #ffe5e5;
}

/* Page Header Styling */
.page-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8ba7 50%, #ffa69e 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-60px); }
}

/* Gradient Primary with Red Tones */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #ff6b6b 50%, #ffa69e 100%) !important;
}

/* Hero Pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

/* Icon Circles with Red Variations */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-square {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Button Variations with Red */
.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8ba7);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252, #ff7096);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-outline-primary {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.btn-outline-primary:hover {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
}

/* Card Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

/* Step Numbers */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8ba7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

/* Avatar Styles */
.avatar-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8ba7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.avatar-lg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8ba7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8ba7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto;
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, #ff6b6b, #ffa69e);
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 2rem;
}

/* Badge Variations */
.badge.bg-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8ba7) !important;
}

/* Card Image Placeholders */
.card-img-placeholder {
    min-height: 200px;
    border-radius: 12px 12px 0 0;
}

/* Accent Colors for Different Sections */
.text-primary {
    color: #ff6b6b !important;
}

.border-primary {
    border-color: #ff6b6b !important;
}

.bg-primary {
    background-color: #ff6b6b !important;
}

/* Light Red Backgrounds */
.bg-light-red {
    background-color: var(--lotus-peach);
}

.bg-coral {
    background-color: var(--lotus-coral);
}

/* Testimonial Quote */
.bi-quote {
    color: #ff6b6b;
}

/* Impact Stats Animation */
.impact-stat {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Active State */
.nav-link.active {
    color: #ff6b6b !important;
    font-weight: 600;
}

.nav-link:hover {
    color: #ff6b6b !important;
}

/* Form Focus States */
.form-control:focus,
.form-select:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

/* Accordion Buttons */
.accordion-button:not(.collapsed) {
    background-color: var(--lotus-peach);
    color: #ff6b6b;
}

.accordion-button:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

/* Links */
a {
    color: #ff6b6b;
}

a:hover {
    color: #ff5252;
}

/* Success States with Red Tones */
.text-success {
    color: #ff6b6b !important;
}

.bg-success {
    background-color: #ff8ba7 !important;
}

/* Decorative Elements */
.featured-image-placeholder {
    min-height: 400px;
}

/* Pagination */
.page-item.active .page-link {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.page-link {
    color: #ff6b6b;
}

.page-link:hover {
    color: #ff5252;
    background-color: var(--lotus-peach);
}

/* Modal Headers */
.modal-header {
    border-bottom: 2px solid var(--lotus-peach);
}

/* Special Sections */
.bg-gradient-coral {
    background: linear-gradient(135deg, #ffa69e 0%, #ffc7c7 100%);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, #ff8ba7 0%, #ffc7c7 100%);
}

/* Alert Boxes */
.alert-info {
    background-color: var(--lotus-peach);
    border-color: var(--lotus-pink);
    color: #d63031;
}

/* Progress Bars */
.progress-bar {
    background: linear-gradient(90deg, #ff6b6b, #ff8ba7);
}

/* Dropdown Menus */
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--lotus-peach);
    color: #ff6b6b;
}

/* Social Links */
footer a:hover {
    color: var(--lotus-pink) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b6b, #ff8ba7);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff5252, #ff7096);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Additional Red Accent Borders */
.border-top-red {
    border-top: 3px solid #ff6b6b !important;
}

.border-left-red {
    border-left: 3px solid #ff6b6b !important;
}

/* Card Accents */
.card-accent {
    border-top: 4px solid #ff6b6b;
}

/* Highlight Text */
.highlight-red {
    background: linear-gradient(120deg, var(--lotus-peach) 0%, var(--lotus-peach) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    padding: 0 0.2em;
}

/* Info Boxes */
.info-box {
    background: var(--lotus-peach);
    border-left: 4px solid #ff6b6b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Feature Lists */
.feature-list li::before {
    content: "❤️";
    margin-right: 0.5rem;
}

/* Section Dividers */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    margin: 3rem 0;
}