/* YFC-BD Brand Overrides */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #E6007E;
    /* Magenta/Pink */
    --secondary-color: #FFC107;
    /* Orange/Yellow */
    --text-color: #333333;
}

body {
    font-family: 'Roboto', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.navbar-nav a {
    font-family: 'Poppins', sans-serif !important;
}

/* Color Overrides */
::-moz-selection {
    background-color: var(--primary-color) !important;
}

::selection {
    background-color: var(--primary-color) !important;
}

/* Modern Gradients & Styling */
.primary-btn,
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff4d9e) !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.3);
    transition: all 0.3s ease;
}

.primary-btn:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #ff4d9e, var(--primary-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 126, 0.4);
    color: #fff !important;
}

.primary-btn2 {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-nav a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--secondary-color) !important;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-area {
    border-top: 5px solid;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
}

.section-title h2 span {
    color: var(--primary-color);
}

/* Card & Section Enhancements */
.single_cause,
.event_item {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.single_cause:hover,
.event_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}