/* Blog Detail Page Styles */

/* Article Hero Section */
.article-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-foreground) 100%);
  color: white;
  padding: 4rem 0;
}

.article-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-manrope);
    font-size: 0.875rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-family: var(--font-manrope);
    font-size: 0.875rem;
    opacity: 0.9;
}

.article-meta .category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.article-hero h1 {
    font-family: var(--font-geist);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.article-excerpt {
    font-family: var(--font-manrope);
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

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

.article-tags .tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-family: var(--font-manrope);
    font-size: 0.75rem;
    font-weight: 500;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Article Content Section */
.article-content-section {
    padding: 4rem 0;
    background: var(--background);
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.article-main {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-body {
    font-family: var(--font-manrope);
    line-height: 1.8;
    color: var(--foreground);
}

.article-body h2 {
    font-family: var(--font-geist);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.article-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    font-family: var(--font-geist);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.5rem 0 0.75rem 0;
}

.article-body h4 {
    font-family: var(--font-geist);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.25rem 0 0.5rem 0;
}

.article-body p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.article-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

/* Price Table */
.price-table {
    background: var(--secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-manrope);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .destination {
    font-weight: 500;
    color: var(--foreground);
}

.price-row .price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.cta-section h3 {
    font-family: var(--font-geist);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-section p {
    font-family: var(--font-manrope);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-family: var(--font-geist);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

/* Quick Booking Widget */
.quick-booking {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Popular Destinations Widget */
.popular-destinations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.destination-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.destination-link:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.destination-link img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.destination-info h4 {
    font-family: var(--font-geist);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--foreground);
}

.destination-info .price {
    font-family: var(--font-manrope);
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

/* Related Articles Widget */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.related-article:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-article img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.article-info h4 {
    font-family: var(--font-geist);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--foreground);
    line-height: 1.3;
}

.article-info .date {
    font-family: var(--font-manrope);
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-hero h1 {
        font-size: 2rem;
    }
    
    .hero-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 2rem 0;
    }
    
    .article-content-section {
        padding: 2rem 0;
    }
    
    .article-main {
        padding: 1.5rem;
    }
    
    .article-hero h1 {
        font-size: 1.75rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .cta-section h3 {
        font-size: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .destination-link,
    .related-article {
        padding: 0.5rem;
    }
    
    .destination-link img,
    .related-article img {
        width: 50px;
        height: 50px;
    }
}

/* Print Styles */
@media print {
    .article-sidebar,
    .newsletter-section,
    .footer {
        display: none;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-main {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
