/**
          font-family: "Quicksand", sans-serif;
          font-family: "Jost", sans-serif;
          font-family: "Comfortaa", sans-serif;
          font-family: "Baloo 2", sans-serif;
          font-family: "Poppins", sans-serif;
        **/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #ffdaf9;
    overflow-x: hidden;
}

button {
    cursor: pointer;
    outline: none;
    border: none;
    background: none;
}

button,
input,
a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

button:focus,
input:focus,
a:focus {
    outline: none;
}

/** Navbar Section **/

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-links a {
    color: #2d2d2d;
}

.navbar .nav-links a:hover {
    color: #e85a85;
}

#navbar .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e85a85;
}

.navbar .brand a {
    display: flex;
    align-items: center;
}

.navbar .brand h2 {
    margin-left: 0.5rem;
    font-size: 1.8rem;
    color: #e85a85;
    transition: color 0.3s;
}

.navbar .brand h2:hover {
    color: #ff69b4;
}

.navbar .brand img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav-links a {
    text-decoration: none;
    color: #2d2d2d;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 1.3rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e85a85;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-links a:hover {
    color: #e85a85;
}

.nav-links a:hover::after {
    left: 0;
    width: 50%;
}

.navbar .donate-btn {
    background-color: #e85a85;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(232, 90, 133, 0.12);
}

.navbar .donate-btn:hover {
    background-color: #ff69b4;
    box-shadow: 0 2px 8px rgba(232, 90, 133, 0.2);
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    color: #e85a85;
    padding: 0.5rem;
    transition: background 0.2s;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 24px rgba(232, 90, 133, 0.08);
        border-radius: 0 0 18px 18px;
        padding: 2rem 1rem 1.5rem 1rem;
        text-align: center;
        z-index: 998;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.2rem;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: #e85a85;
        padding: 0.7rem 0;
        border-radius: 12px;
        transition: background 0.2s, color 0.2s;
    }

    .nav-links a:hover {
        color: #e85a85;
    }

    .nav-links a:hover::after {
        left: 0;
        width: 100%;
    }

    .donate-btn {
        background: #e85a85;
        padding-left: 2rem;
        padding-right: 2rem;
        color: #fff !important;
        font-weight: bold;
        margin-top: 0.5rem;
        padding: 0.7rem 1.2rem;
        border-radius: 24px;
        box-shadow: 0 2px 8px rgba(232, 90, 133, 0.12);
    }

    .menu-toggle {
        display: block;
    }

    .navbar .brand img {
        height: 50px;
        width: auto;
    }

    .navbar .brand h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .navbar .brand img {
        height: 90px;
    }

    .navbar .brand h2 {
        font-size: 2.3rem;
    }

    .menu-toggle {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .navbar .brand img {
        height: 50px;
    }

    .navbar .brand h2 {
        font-size: 1.2rem;
    }

    .menu-toggle {
        font-size: 2rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/** End of Navbar Section **/

/** Blog Hero Section **/
.blog-hero {
    padding: 120px 10% 80px;
    background: #e85a85;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.blog-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 120px;
}

.blog-stat h3 {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.blog-stat p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/** Blog Content Section **/
.blog-section {
    padding: 80px 10% 100px;
    background-color: #fefae0;
    position: relative;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #e85a85;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    color: #666;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e85a85;
    color: white;
    border-color: #e85a85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 90, 133, 0.2);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 90, 133, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(232, 90, 133, 0.15);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #888;
}

.blog-card-category {
    background: rgba(232, 90, 133, 0.1);
    color: #e85a85;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.8rem;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #e85a85;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e85a85, #ff69b4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info h4 {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.author-info p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.read-more {
    color: #e85a85;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 0.6rem;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: #e85a85;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(232, 90, 133, 0.2);
}

.load-more-btn:hover {
    background: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 90, 133, 0.3);
}

/** Footer Section **/
.site-footer {
    background-color: #000;
    color: white;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.logo {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav li a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: #fb6f92;
}

.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-right h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form input {
    padding: 10px 15px;
    border: 2px solid #212529;
    border-radius: 10px;
    background-color: #212529;
    color: white;
    flex: 1;
    min-width: 200px;
    transition: 0.3s;
}

.subscribe-form input:focus {
    outline: none;
    border: 2px solid #fb6f92;
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background-color: #fb6f92;
    color: white;
}

.privacy-note {
    margin-top: 10px;
    font-size: 13px;
    color: #ccc;
}

.privacy-note a {
    color: #fff;
    text-decoration: underline;
}

hr {
    margin: 40px 0 20px;
    border-color: #333;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
    font-size: 14px;
}

.footer-links a {
    margin-right: 20px;
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.footer-links a:hover {
    color: #fb6f92;
}

footer .copyright {
    color: #ccc;
}

footer .copyright a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .blog-section {
        padding: 60px 5%;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .blog-hero {
        padding: 100px 5% 60px;
    }

    .blog-stats {
        gap: 1rem;
    }

    .blog-stat {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }

    .blog-filters {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .subscribe-form {
        justify-content: center;
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-hero {
        padding: 90px 3% 50px;
    }

    .blog-section {
        padding: 50px 3%;
    }

    .blog-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .blog-stat {
        width: 200px;
    }

    .blog-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-card-content {
        padding: 1.2rem;
    }

    .blog-card h3 {
        font-size: 1.1rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }
}