/* Blog Page Unique Styles */

/* Blog Hero with Premium Design */
.blog-hero {
    background: var(--color-cream-dark);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

.blog-hero .lead {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Magazine-style Article Cards */
.blog-grid {
    display: grid;
    gap: 3rem;
    margin-top: 4rem;
}

.article-card-magazine {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    box-shadow: none;
    border: 1px solid var(--color-border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.article-card-magazine::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .article-card-magazine {
        flex-direction: column;
    }
    
    .article-thumbnail {
        width: 100%;
        height: 200px;
    }
}

.article-card-magazine:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.article-card-magazine:hover::after {
    width: 100%;
}

.article-thumbnail {
    position: relative;
    overflow: hidden;
    width: 380px;
    flex-shrink: 0;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card-magazine:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-category-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    padding: 0.375rem 1rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.article-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

.article-content h3 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: var(--font-serif);
}

.article-subtitle {
    font-size: 1.125rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    font-style: italic;
}

.article-excerpt {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.9375rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: transparent;
    color: var(--color-text-secondary);
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--color-border-light);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.read-time {
    color: #6B7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Featured Articles Carousel */
.featured-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 5rem;
}

.featured-slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.featured-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.featured-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    color: #ffffff;
    max-width: 800px;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.7;
}

.featured-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.featured-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: var(--font-serif);
    line-height: 1.3;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Category Filter Pills */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.5rem 1.5rem;
    background: #ffffff;
    border: 2px solid #E8ECF0;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.filter-pill:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-pill.active {
    background: #667eea;
    color: #ffffff;
    border-color: #667eea;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    border-radius: 0;
    font-weight: 400;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-gold);
    transition: width 0.3s ease;
    z-index: -1;
}

.load-more-btn:hover {
    color: white;
    border-color: var(--color-gold);
}

.load-more-btn:hover::before {
    width: 100%;
}

/* Article Skeleton Loading */
.article-skeleton {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.article-skeleton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    to { left: 100%; }
}

.skeleton-thumbnail {
    width: 100%;
    height: 200px;
    background: #E8ECF0;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.skeleton-title {
    width: 70%;
    height: 24px;
    background: #E8ECF0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-text {
    width: 100%;
    height: 16px;
    background: #E8ECF0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Button Styles for Blog */
.btn-white {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--color-text);
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-text);
}

.btn-white:hover {
    background: var(--color-gold);
    color: white;
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* Newsletter Section - Premium Design */
.newsletter-section {
    background: linear-gradient(180deg, #FAFAF9 0%, #F5F5F0 100%);
    padding: 5rem 0;
    border-top: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.newsletter-content {
    position: relative;
}

.newsletter-badge {
    display: inline-block;
    background: var(--color-gold);
    color: white;
    padding: 0.375rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 500px;
}

@media (max-width: 768px) {
    .newsletter-description {
        margin: 0 auto;
    }
}

.newsletter-form-elegant {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.form-row {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #E8E8E8;
    border-right: none;
    font-size: 1rem;
    background: #FAFAFA;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.newsletter-input:focus {
    outline: none;
    background: white;
    border-color: var(--color-gold);
}

.newsletter-submit {
    padding: 1rem 2rem;
    background: var(--color-text);
    color: white;
    border: 2px solid var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.newsletter-submit:hover svg {
    transform: translateX(3px);
}

.newsletter-submit svg {
    transition: transform 0.3s ease;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-right: 2px solid #E8E8E8;
        border-bottom: none;
    }
    
    .newsletter-submit {
        width: 100%;
        justify-content: center;
    }
}