/* ============================================
   BLOG POST DETAIL PAGE - Matching Site Style
   Colors: #ff3cac (pink) and #784ba0 (purple)
   Background: #0a0a0a (dark)
   ============================================ */

@keyframes hero-title-neon-multi {
    0% { text-shadow: 0 0 10px #fff, 0 0 20px #ff3cac, 0 0 30px #ff3cac; }
    25% { text-shadow: 0 0 10px #fff, 0 0 20px #784ba0, 0 0 30px #784ba0; }
    50% { text-shadow: 0 0 10px #fff, 0 0 20px #ff3cac, 0 0 30px #ff3cac; }
    75% { text-shadow: 0 0 10px #fff, 0 0 20px #784ba0, 0 0 30px #784ba0; }
    100% { text-shadow: 0 0 10px #fff, 0 0 20px #ff3cac, 0 0 30px #ff3cac; }
}

/* Layout Wrapper - Two Column Layout */
.blog-layout-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-main-content {
    width: 100%;
}

/* Main Container */
.blog-post-detail-container {
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 60, 172, 0.2);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Header Section */
.blog-post-header {
    padding: 40px 40px 30px 40px;
    border-bottom: 2px solid rgba(255, 60, 172, 0.2);
    background: rgba(20, 20, 20, 0.5);
}

.blog-post-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8em;
    font-weight: 900;
    color: #ffffff !important;
    margin: 0 0 20px 0;
    text-shadow: 0 0 20px #ff3cac, 0 0 40px #784ba0;
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-post-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: #aaa;
    font-size: 0.9em;
    flex-wrap: wrap;
}

.blog-post-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-detail-meta span i {
    color: #ff3cac;
    font-size: 1em;
}

/* Featured Image */
.blog-post-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.blog-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-detail-container:hover .blog-post-featured-image img {
    transform: scale(1.05);
}

/* Content Section */
.blog-post-content {
    font-size: 1.2em !important;
    color: #ffffff !important;
    line-height: 1.8 !important;
    padding: 40px !important;
    background: rgba(26, 26, 26, 0.95);
}

.blog-post-content p {
    color: #cccccc !important;
    margin-bottom: 25px !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.blog-post-content p:last-child {
    margin-bottom: 0 !important;
}

/* Tags Section */
.blog-post-tags {
    margin: 0;
    padding: 25px 40px;
    border-top: 2px solid rgba(255, 60, 172, 0.2);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(20, 20, 20, 0.5);
}

.blog-post-tags span {
    font-weight: 700;
    color: #ff3cac;
    font-size: 1em;
}

.blog-post-tags a {
    color: #ffffff;
    background: linear-gradient(90deg, #ff3cac, #784ba0);
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-weight: 600;
}

.blog-post-tags a:hover {
    background: linear-gradient(90deg, #784ba0, #ff3cac);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.4);
}

/* Comments Section */
.comments-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 0;
    padding: 40px;
    margin: 0;
    border-top: 2px solid rgba(255, 60, 172, 0.2);
}

.comments-section h3 {
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 0 15px #ff3cac;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 60, 172, 0.1);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-meta {
    color: #ff3cac;
    font-size: 0.95em;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.comment-meta strong {
    color: #ffffff;
    font-weight: 700;
}

.comment-content {
    color: #cccccc !important;
    line-height: 1.6;
    margin-bottom: 8px;
}

.admin-reply {
    background: rgba(255, 60, 172, 0.1);
    color: #ffffff;
    margin: 15px 0 0 20px;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid #ff3cac;
}

.admin-reply strong {
    color: #ff3cac;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Comment Form Section */
.comment-form-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 0;
    padding: 40px;
    margin: 0;
    border-top: 2px solid rgba(255, 60, 172, 0.2);
}

.comment-form-section h3 {
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 0 15px #ff3cac;
}

.comment-form-section .form-group {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.comment-form-section label {
    color: #ff3cac;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1em;
}

.comment-form-section input[type="text"],
.comment-form-section input[type="email"],
.comment-form-section textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 60, 172, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1em;
    font-family: 'Inter', Arial, sans-serif;
    transition: all 0.3s ease;
}

.comment-form-section input[type="text"]:focus,
.comment-form-section input[type="email"]:focus,
.comment-form-section textarea:focus {
    outline: none;
    border-color: #ff3cac;
    box-shadow: 0 0 15px rgba(255, 60, 172, 0.3);
    background: rgba(10, 10, 10, 0.95);
}

.comment-form-section textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(90deg, #ff3cac, #784ba0);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.3);
    font-family: 'Orbitron', sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #784ba0, #ff3cac);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 60, 172, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Success and Error Messages */
.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .blog-post-detail-container {
        border-radius: 12px;
        border-width: 1px;
    }
    
    .blog-post-header {
        padding: 24px 20px 20px;
    }
    
    .blog-post-header h1 {
        font-size: 1.6em;
        letter-spacing: 0.5px;
        text-shadow: 0 0 12px #ff3cac, 0 0 24px #784ba0;
    }
    
    .blog-post-detail-meta {
        gap: 12px;
        font-size: 0.85em;
    }
    
    .blog-post-featured-image {
        height: 280px;
    }
    
    .blog-post-content {
        font-size: 1.05em !important;
        padding: 24px 20px !important;
        line-height: 1.75 !important;
    }
    
    .blog-post-content p {
        margin-bottom: 18px !important;
    }
    
    .blog-post-tags {
        padding: 18px 20px;
        gap: 8px;
    }
    
    .comments-section,
    .comment-form-section {
        padding: 24px 20px;
    }
    
    .comments-section h3,
    .comment-form-section h3 {
        font-size: 1.3em;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .blog-layout-wrapper {
        padding: 0 12px 30px 12px;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sidebar-card {
        padding: 20px 15px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7em;
    }
    
    .sidebar-card h3 {
        font-size: 1.2em;
    }
    
    .related-post-item {
        flex-direction: column;
    }
    
    .related-post-image {
        width: 100%;
        height: 150px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }
    
    .blog-post-detail-container {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .blog-post-header h1 {
        font-size: 1.8em;
    }
    
    .blog-post-detail-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9em;
    }
    
    .blog-post-content {
        font-size: 1.05em !important;
        line-height: 1.8 !important;
        padding: 15px 0 !important;
    }
    
    .blog-post-content p {
        margin-bottom: 20px !important;
    }
    
    .blog-post-tags {
        gap: 8px;
    }
    
    .blog-post-tags a {
        padding: 8px 16px;
        font-size: 0.9em;
    }
    
    .comments-section,
    .comment-form-section {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .comments-section h3,
    .comment-form-section h3 {
        font-size: 1.2em;
    }
    
    .admin-reply {
        margin-left: 10px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px 25px;
    }
}

/* ============================================
   SIDEBAR - Matching Blog.php Style
   ============================================ */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-sidebar h3 {
    font-size: 1.5em;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 15px #ff3cac;
}

/* CTA Text Section */
.sidebar-cta-section {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255, 60, 172, 0.2);
    text-align: center;
}

.cta-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    color: #ffffff !important;
    margin: 0 0 15px 0;
    text-shadow: 0 0 20px #ff3cac, 0 0 40px #784ba0;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.cta-description {
    color: #cccccc;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

/* Events Section */
.sidebar-events-section {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255, 60, 172, 0.2);
}

.events-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: #fff !important;
    margin: 0 0 25px 0;
    text-shadow: 0 0 15px #ff3cac;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.sidebar-events-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

/* Sidebar Event Card */
.sidebar-event-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 60, 172, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.sidebar-event-card:hover {
    border-color: #ff3cac;
    box-shadow: 0 8px 25px rgba(255, 60, 172, 0.3);
    transform: translateY(-5px);
}

.sidebar-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.sidebar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.sidebar-event-card:hover .sidebar-card-image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.sidebar-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.sidebar-card-content {
    padding: 20px;
}

.sidebar-card-title {
    font-size: 1.2em;
    font-weight: 900;
    color: #ffffff !important;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-family: 'Orbitron', sans-serif;
}

.sidebar-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85em;
}

.sidebar-card-date,
.sidebar-card-time {
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-card-date i,
.sidebar-card-time i {
    color: #ff3cac;
}

.sidebar-reserve-btn {
    width: 100%;
    background: linear-gradient(90deg, #ff3cac, #784ba0);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9em;
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.3);
}

.sidebar-reserve-btn:hover {
    background: linear-gradient(90deg, #784ba0, #ff3cac);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 60, 172, 0.5);
}

/* View All Events Button */
.view-all-events-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid rgba(255, 60, 172, 0.4);
    border-radius: 10px;
    color: #ff3cac;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-all-events-btn:hover {
    background: rgba(255, 60, 172, 0.1);
    border-color: #ff3cac;
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.3);
    transform: translateY(-3px);
}

/* Newsletter CTA */
.sidebar-newsletter-cta {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255, 60, 172, 0.2);
    text-align: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    background: linear-gradient(90deg, #ff3cac, #784ba0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.4);
}

.sidebar-newsletter-cta h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: #ffffff !important;
    margin: 0 0 12px 0;
    text-shadow: 0 0 15px #ff3cac;
    font-weight: 900;
}

.sidebar-newsletter-cta p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-size: 0.95em;
}

.newsletter-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff3cac, #784ba0);
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.3);
}

.newsletter-btn:hover {
    background: linear-gradient(90deg, #784ba0, #ff3cac);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 60, 172, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN - SIDEBAR & FULL MOBILE
   ============================================ */

/* === READING PROGRESS BAR === */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff3cac, #784ba0, #2b86c5);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 60, 172, 0.5);
}

/* === SCROLL ANIMATIONS === */
.blog-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.blog-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.blog-animate-delay-1 { transition-delay: 0.1s; }
.blog-animate-delay-2 { transition-delay: 0.2s; }
.blog-animate-delay-3 { transition-delay: 0.3s; }

/* === SHARE BUTTONS (Floating on mobile) === */
.blog-share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 60, 172, 0.15);
    background: rgba(15, 15, 15, 0.6);
}
.blog-share-bar span {
    color: #ff3cac;
    font-weight: 700;
    font-size: 0.9em;
    white-space: nowrap;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 60, 172, 0.3);
    background: rgba(255, 60, 172, 0.08);
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.share-btn:hover {
    background: linear-gradient(135deg, #ff3cac, #784ba0);
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.4);
}

/* === MOBILE FLOATING SHARE === */
.mobile-share-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
}
.mobile-share-fab.open .fab-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.fab-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3cac, #784ba0);
    border: none;
    color: #fff;
    font-size: 1.3em;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 60, 172, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fab-trigger:active {
    transform: scale(0.92);
}
.fab-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.fab-options .share-btn {
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 60, 172, 0.3);
    color: #ff3cac;
    font-size: 1.1em;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.back-to-top.visible {
    display: flex;
}
.back-to-top:hover {
    background: linear-gradient(135deg, #ff3cac, #784ba0);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

/* === ESTIMATED READ TIME BADGE === */
.read-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 60, 172, 0.1);
    border: 1px solid rgba(255, 60, 172, 0.25);
    border-radius: 20px;
    color: #ff3cac;
    font-size: 0.8em;
    font-weight: 600;
}

/* Large Tablet */
@media (max-width: 1200px) {
    .blog-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px 60px 30px;
    }
    
    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sidebar-cta-section {
        grid-column: 1 / -1;
    }
    
    .sidebar-events-section {
        grid-column: 1 / -1;
    }
    
    .sidebar-events-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .blog-layout-wrapper {
        padding: 0 20px 50px 20px;
        gap: 40px;
    }
    
    .blog-post-detail-container {
        border-radius: 14px;
    }
    
    .blog-post-header {
        padding: 28px 24px 22px;
    }
    
    .blog-post-header h1 {
        font-size: 1.8em;
    }
    
    .blog-post-featured-image {
        height: 300px;
    }
    
    .blog-post-content {
        padding: 28px 24px !important;
        font-size: 1.1em !important;
    }
    
    .blog-post-tags {
        padding: 20px 24px;
    }
    
    .blog-share-bar {
        padding: 18px 24px;
    }
    
    .comments-section,
    .comment-form-section {
        padding: 28px 24px;
    }
    
    .sidebar-events-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    .blog-layout-wrapper {
        padding: 0 16px 40px 16px;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-post-header h1 {
        font-size: 1.5em;
        letter-spacing: 0.5px;
    }
    
    .blog-post-detail-meta {
        gap: 10px;
        font-size: 0.82em;
    }
    
    .blog-post-featured-image {
        height: 240px;
    }
    
    .blog-share-bar {
        display: none;
    }
    
    .mobile-share-fab {
        display: flex;
    }
    
    .comments-section h3,
    .comment-form-section h3 {
        font-size: 1.4em;
    }
}

/* Mobile */
@media (max-width: 600px) {
    main {
        padding-top: 80px !important;
    }
    
    .blog-layout-wrapper {
        padding: 0 12px 30px 12px;
        gap: 24px;
    }
    
    .blog-post-detail-container {
        border-radius: 12px;
        border-width: 1px;
    }
    
    .blog-post-header {
        padding: 20px 16px 16px;
    }
    
    .blog-post-header h1 {
        font-size: 1.35em;
        letter-spacing: 0;
        text-shadow: 0 0 8px #ff3cac;
        line-height: 1.3;
    }
    
    .blog-post-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-size: 0.8em;
    }
    
    .blog-post-featured-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 20px 16px !important;
        font-size: 1em !important;
        line-height: 1.75 !important;
    }
    
    .blog-post-content p {
        margin-bottom: 16px !important;
    }
    
    .blog-post-content h2, .blog-post-content h3 {
        font-size: 1.15em !important;
        margin: 24px 0 12px !important;
    }
    
    .blog-post-tags {
        padding: 16px;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .blog-post-tags a {
        padding: 6px 14px;
        font-size: 0.82em;
        border-radius: 6px;
    }
    
    .comments-section,
    .comment-form-section {
        padding: 20px 16px;
    }
    
    .comments-section h3,
    .comment-form-section h3 {
        font-size: 1.2em;
        margin-bottom: 20px;
    }
    
    .comment-meta {
        flex-direction: column;
        gap: 4px;
        font-size: 0.85em;
    }
    
    .admin-reply {
        margin-left: 8px;
        padding: 12px 14px;
        font-size: 0.92em;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9em;
    }
    
    /* Sidebar Mobile */
    .cta-main-title {
        font-size: 1.4em;
    }
    
    .cta-description {
        font-size: 0.95em;
    }
    
    .sidebar-newsletter-cta,
    .sidebar-events-section,
    .sidebar-cta-section {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .sidebar-card-image {
        height: 180px;
    }
    
    .sidebar-card-title {
        font-size: 1em;
    }
    
    .sidebar-card-content {
        padding: 14px;
    }
    
    .sidebar-reserve-btn {
        padding: 10px 16px;
        font-size: 0.82em;
    }
    
    .events-section-title {
        font-size: 1.2em;
    }
    
    .newsletter-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4em;
    }
    
    .newsletter-btn {
        padding: 12px 28px;
        font-size: 0.85em;
    }
    
    .back-to-top {
        bottom: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
    }
    
    .mobile-share-fab {
        bottom: 16px;
        right: 16px;
    }
    
    .fab-trigger {
        width: 48px;
        height: 48px;
        font-size: 1.1em;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .blog-layout-wrapper {
        padding: 0 8px 24px 8px;
    }
    
    .blog-post-header {
        padding: 16px 12px 14px;
    }
    
    .blog-post-header h1 {
        font-size: 1.2em;
    }
    
    .blog-post-featured-image {
        height: 180px;
    }
    
    .blog-post-content {
        padding: 16px 12px !important;
        font-size: 0.95em !important;
    }
    
    .comments-section,
    .comment-form-section {
        padding: 16px 12px;
    }
    
    .sidebar-card-image {
        height: 150px;
    }
}

/* ============================================
   VIDEO PLAYER
   ============================================ */
.blog-post-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin: 24px 0;
    background: #111;
    border: 1px solid rgba(255,60,172,0.15);
}
.blog-post-video iframe,
.blog-post-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.blog-post-gallery {
    margin: 30px 0;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,60,172,0.1);
}
.blog-post-gallery h3 {
    color: #fff;
    font-size: 1.3em;
    margin: 0 0 18px;
    font-weight: 700;
}
.blog-post-gallery h3 i {
    color: #ff3cac;
    margin-right: 8px;
}
.blog-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.blog-gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255,60,172,0.2);
    border-color: rgba(255,60,172,0.3);
}
.blog-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.blog-gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.blog-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.blog-lightbox.active {
    display: flex;
}
.blog-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    background: rgba(255,60,172,0.25);
    border: 1px solid rgba(255,60,172,0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100000;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,60,172,0.5);
}
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1rem;
    background: rgba(0,0,0,0.5);
    padding: 6px 16px;
    border-radius: 20px;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .blog-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .blog-post-gallery {
        padding: 16px;
        margin: 20px 0;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}
@media (max-width: 480px) {
    .blog-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .blog-post-video {
        border-radius: 10px;
        margin: 16px 0;
    }
}