* {
    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;
    line-height: 1.6;
}

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);
}

.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%;
}

/* Mobile Navigation */
@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::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);
    }
}

/** Blog Post Styles **/
.blog-post-container {
    max-width: 800px;
    margin: 120px auto 0;
    padding: 0 2rem;
    background: #fefae0;
    min-height: calc(100vh - 120px);
}

.breadcrumb {
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #e85a85;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ff69b4;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.blog-post-header {
    text-align: center;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid rgba(232, 90, 133, 0.1);
}

.blog-post-category {
    background: rgba(232, 90, 133, 0.1);
    color: #e85a85;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(232, 90, 133, 0.05);
    border-radius: 15px;
}

.author-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e85a85, #ff69b4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-details h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ffdaf9, #e85a85);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(232, 90, 133, 0.15);
}

.blog-post-content {
    padding: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    color: #e85a85;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content blockquote {
    background: rgba(232, 90, 133, 0.08);
    border-left: 4px solid #e85a85;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    color: #555;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 218, 249, 0.3), rgba(232, 90, 133, 0.1));
    border: 1px solid rgba(232, 90, 133, 0.2);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box h3 {
    color: #e85a85;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 3rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 90, 133, 0.1);
}

.blog-post-tag {
    background: rgba(232, 90, 133, 0.1);
    color: #e85a85;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-post-tag:hover {
    background: #e85a85;
    color: white;
    transform: translateY(-2px);
}

.social-share {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(232, 90, 133, 0.1);
    border-bottom: 1px solid rgba(232, 90, 133, 0.1);
    margin: 2rem 0;
}

.social-share h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.related-posts {
    padding: 3rem 0;
}

.related-posts h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #e85a85;
    margin-bottom: 2rem;
    font-weight: 600;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 90, 133, 0.15);
}

.related-post-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-content {
    padding: 1.2rem;
}

.related-post-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-post-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.back-to-blog {
    text-align: center;
    margin: 3rem 0;
}

.back-to-blog-btn {
    background: #e85a85;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(232, 90, 133, 0.2);
}

.back-to-blog-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-post-container {
        padding: 0 1.5rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-post-image {
        height: 300px;
        font-size: 3rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .social-buttons {
        gap: 0.8rem;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        margin-top: 100px;
        padding: 0 1rem;
    }

    .blog-post-author-info {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .author-avatar-large {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .blog-post-image {
        height: 250px;
        font-size: 2.5rem;
        margin: 2rem 0;
    }

    .blog-post-content {
        font-size: 1rem;
        padding: 1.5rem 0;
    }

    .blog-post-content blockquote {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }

    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .subscribe-form {
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        padding: 1.5rem 0 0.5rem;
    }

    .blog-post-header {
        padding: 1.5rem 0 2rem;
    }

    .blog-post-tags {
        justify-content: center;
    }

    .social-buttons {
        justify-content: center;
    }

    .blog-post-content blockquote {
        padding: 1rem;
        margin: 1rem 0;
    }

    .related-post-image {
        height: 120px;
        font-size: 1.8rem;
    }

    .related-post-content {
        padding: 1rem;
    }
}