/* Blog Specific Styles - Navy & Gold Luxury Theme */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d3a5f 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(201, 169, 97, 0.1)"/></svg>');
    opacity: 0.3;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.blog-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-gold);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Blog Featured Image */
.blog-featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Blog Header */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-date {
    color: var(--gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date i {
    color: var(--primary-gold);
}

.blog-category {
    background: linear-gradient(135deg, var(--primary-gold), #d4b876);
    color: var(--primary-navy);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blog Content */
.blog-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.blog-card p:last-child {
    margin-bottom: 0;
}

/* Blog Highlights Box */
.blog-highlights {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.03), rgba(201, 169, 97, 0.05));
    border-left: 3px solid var(--primary-gold);
    padding: 1.75rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.blog-highlights h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-highlights ul li {
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

.blog-highlights ul li:last-child {
    margin-bottom: 0;
}

.blog-highlights ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.blog-highlights ul li strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.blog-highlights p {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d3a5f 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
}

.cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-navy);
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: transparent;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1.1rem;
    }

    .blog-section {
        padding: 60px 0;
    }

    .blog-grid {
        gap: 2rem;
    }

    .blog-card {
        padding: 1.75rem;
    }

    .blog-featured-image {
        height: 250px;
    }

    .blog-card h2 {
        font-size: 1.6rem;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-highlights {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }

    .blog-highlights h3 {
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-card {
        padding: 1.5rem;
    }

    .blog-card h2 {
        font-size: 1.4rem;
    }

    .blog-card p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}
