/* ===== BLOG PAGE STYLES ===== */

.blog-main {
    min-height: 100vh;
    padding: 140px 5% 80px;
    background: #060E1C;
    background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.blog-tag {
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.blog-title span {
    color: #D4AF37;
    font-style: italic;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 0; /* Remove padding for full-width image */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.blog-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.blog-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.blog-card:hover .blog-hero-img {
    transform: scale(1.1) rotate(1deg);
}

.blog-card-content {
    padding: 40px;
}

.blog-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: 0.3s;
}

.blog-card:hover h3 {
    color: #D4AF37;
}

.excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Expansion Styles */
.full-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.full-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.read-more-btn {
    background: none;
    border: none;
    color: #D4AF37;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    transition: 0.3s;
}

.read-more-btn:hover {
    letter-spacing: 1px;
}

/* Reply Section */
.reply-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.reply-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.reply-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reply-form textarea, .reply-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    color: #FFF;
    font-family: inherit;
}

.reply-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mini {
    padding: 12px 25px;
    font-size: 0.75rem;
    align-self: flex-start;
}

/* Mobile Fixes */
/* Floating Home Button */
.floating-home {
    position: fixed;
    left: 30px !important;
    right: auto !important;
    bottom: 40px;
    z-index: 9999;
    background: #D4AF37;
    color: #060E1C;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.4);
    animation: float-btn 3s ease-in-out infinite;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-home i {
    width: 20px;
    height: 20px;
}

.floating-home:hover {
    transform: scale(1.1) translateY(-5px);
    background: #FFFFFF;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

@keyframes float-btn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .reply-row {
        grid-template-columns: 1fr;
    }
    
    .floating-home {
        left: 30px !important;
        right: auto !important;
        bottom: 20px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    .floating-home span { display: none; }
}
