/*
Theme Name: Morocco Travel Guide
Description: Professional WordPress travel guide theme - Modern, SEO optimized, and feature-rich for Morocco travel guides
Version: 2.0
Author: Morocco Travel Guide Team
Text Domain: moroccotravel
Domain Path: /languages
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: travel, morocco, destinations, guide, responsive, modern, seo, multilingual, tourism, adventure, clean, professional
*/

/* 
======================================
CSS IMPORTS
======================================
*/
@import url('css/travel-content.css');
@import url('css/homepage-layout.css');

/* 
======================================
MODERN HEADER STYLES IMPORT
======================================
Note: Modern header styles are loaded via functions.php
for better performance and modularity
*/

/* Legacy Header Override - Hide old header styles when modern header is active */
body.modern-header-active .site-header.old-header {
    display: none !important;
}

/* Ensure smooth transition between themes */
.site-header {
    transition: all 0.3s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

/* Dark Mode Base Styles */
[data-theme="dark"] body {
    background-color: #1f2937;
    color: #f9fafb;
}

/* Arabic/RTL Support */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .navbar-nav {
    margin-right: auto;
    margin-left: 0;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1538 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #ffd700;
}

/* Hero Section - Blog Style */
.hero-section {
    height: 70vh;
    background: linear-gradient(135deg, rgba(196,30,58,0.9) 0%, rgba(139,21,56,0.8) 100%),
                url('images/morocco-blog-hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c41e3a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #c41e3a;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.read-more-btn {
    background: #c41e3a;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #a01729;
    transform: translateX(3px);
}

.blog-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-tag {
    background: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: #c41e3a;
    color: white;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 3rem;
}

/* Tour Cards */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card-content {
    padding: 1.5rem;
}

.tour-card h3 {
    color: #c41e3a;
    margin-bottom: 0.5rem;
}

.tour-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00a651;
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

/* Featured Posts Section */
.featured-posts {
    background: #f8f9fa;
    padding: 4rem 0;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.main-featured-post {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-featured-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.main-featured-category {
    background: #c41e3a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.main-featured-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.main-featured-title a {
    color: white;
    text-decoration: none;
}

.main-featured-excerpt {
    opacity: 0.9;
    line-height: 1.5;
}

.side-featured-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-featured-post {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.side-featured-post:hover {
    transform: translateX(5px);
}

.side-featured-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
}

.side-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-featured-content {
    padding: 1rem;
    flex: 1;
}

.side-featured-title {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.side-featured-title a {
    color: #333;
    text-decoration: none;
}

.side-featured-title a:hover {
    color: #c41e3a;
}

.side-featured-date {
    font-size: 0.8rem;
    color: #666;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #c41e3a;
}

.category-icon {
    font-size: 3rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.category-count {
    color: #666;
    font-size: 0.9rem;
}

.category-card a {
    text-decoration: none;
    color: inherit;
}

/* Advanced Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #c41e3a;
}

.sidebar-widget h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #c41e3a;
}

/* Popular Posts Widget */
.popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.popular-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.popular-post-content h4 a {
    color: #333;
    text-decoration: none;
}

.popular-post-content h4 a:hover {
    color: #c41e3a;
}

.popular-post-meta {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    gap: 1rem;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    background: #f8f9fa;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #c41e3a;
    color: white;
}

/* Newsletter Advanced */
.newsletter-advanced {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1538 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.newsletter-advanced h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-advanced p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form-advanced {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form-advanced input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form-advanced button {
    padding: 1rem 2rem;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-advanced button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 80px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #c41e3a, #ffd700);
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* Advanced Typography */
.content-area h1,
.content-area h2,
.content-area h3 {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-area h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #c41e3a;
    border-radius: 2px;
}

.content-area blockquote {
    position: relative;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-area blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #c41e3a;
    line-height: 1;
}

/* Advanced Media Queries */
@media (max-width: 768px) {
    .featured-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .main-featured-post {
        height: 300px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form-advanced {
        flex-direction: column;
    }
    
    .newsletter-form-advanced input,
    .newsletter-form-advanced button {
        min-width: auto;
    }
}

/* ===== BLOG-SPECIFIC STYLES ===== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1538 50%, #2d5016 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-newsletter {
    margin-top: 2rem;
}

.newsletter-form .input-group {
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
}

.newsletter-submit {
    padding: 15px 25px;
    border-radius: 0 50px 50px 0;
    background: #d4af37;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: #b8941f;
    transform: translateX(2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.featured-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.featured-post-large {
    height: 500px;
}

.featured-post-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.featured-post-large .featured-post-image {
    height: 300px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.post-meta-overlay {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.post-category {
    background: #c41e3a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-post-content {
    padding: 2rem;
}

.featured-post-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-post-title a:hover {
    color: #c41e3a;
}

.featured-post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.featured-post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

/* Blog Posts Section */
.blog-posts {
    padding: 80px 0;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.posts-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.posts-filter {
    min-width: 200px;
}

.form-select {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    border-color: #c41e3a;
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

/* Blog Post Cards */
.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-format-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(196, 30, 58, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.post-content-wrapper {
    padding: 2rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-badge {
    background: #f8f9fa;
    color: #c41e3a;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: #c41e3a;
    color: white;
}

.post-date {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #c41e3a;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.author-name:hover {
    color: #c41e3a;
}

.author-title {
    font-size: 0.8rem;
    color: #888;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.read-more-btn {
    background: #c41e3a;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn:hover {
    background: #8b1538;
    color: white;
    transform: translateX(2px);
}

.post-share-mini {
    position: relative;
}

.share-toggle {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-toggle:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.share-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.5rem;
    display: none;
    z-index: 10;
    min-width: 150px;
}

.share-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-dropdown a:hover {
    background: #f8f9fa;
    color: #333;
}

/* Categories Section */
.blog-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c41e3a, #8b1538);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-name a:hover {
    color: #c41e3a;
}

.category-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.post-count {
    font-size: 0.9rem;
    color: #888;
}

.category-link {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #8b1538;
    transform: translateX(2px);
}

/* Pagination */
.blog-pagination {
    margin: 3rem 0 2rem;
}

.page-numbers {
    display: inline-flex;
    gap: 0.5rem;
}

.page-numbers a,
.page-numbers span {
    padding: 0.75rem 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-numbers a:hover,
.page-numbers .current {
    background: #c41e3a;
    border-color: #c41e3a;
    color: white;
}

.load-more-section {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: #f8f9fa;
    color: #c41e3a;
    border: 2px solid #c41e3a;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.load-more-btn:hover {
    background: #c41e3a;
    color: white;
}

.load-more-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== SINGLE POST STYLES ===== */

.single-post-main {
    padding-top: 100px;
}

.single-post-header {
    padding: 2rem 0;
    background: #f8f9fa;
}

.post-breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #c41e3a;
}

.breadcrumb-item.active {
    color: #333;
}

.single-post-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1rem 0 2rem;
    color: #333;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.meta-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
}

.author-meta {
    gap: 1rem;
}

.single-post-featured-image {
    margin: 2rem 0;
}

.featured-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.image-caption {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.single-post-content {
    padding: 3rem 0;
}

.table-of-contents {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    display: none;
}

.table-of-contents.has-content {
    display: block;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: #c41e3a;
}

.toc-h2 {
    font-weight: 600;
}

.toc-h3 {
    padding-left: 1rem;
}

.toc-h4 {
    padding-left: 2rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.post-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content h4 {
    font-size: 1.3rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.post-content blockquote {
    border-left: 4px solid #c41e3a;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-radius: 0 10px 10px 0;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
}

.post-content code {
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #c41e3a;
}

.post-content pre {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 2rem 0;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-tags {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.post-tags h4 {
    margin-bottom: 1rem;
    color: #333;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-link {
    background: white;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.tag-link:hover {
    background: #c41e3a;
    color: white;
    border-color: #c41e3a;
}

/* Social Share Section */
.post-share-section {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.social-share h4 {
    margin-bottom: 1.5rem;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn.facebook {
    background: #3b5998;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

/* Author Bio */
.author-bio {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.author-details h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.author-details h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-details h4 a:hover {
    color: #c41e3a;
}

.author-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.twitter { background: #1da1f2; }
.social-link.facebook { background: #3b5998; }
.social-link.linkedin { background: #0077b5; }
.social-link.instagram { background: #e4405f; }

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Related Posts */
.related-posts {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.related-posts h3 {
    margin-bottom: 2rem;
    color: #333;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.related-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #c41e3a;
}

.related-post-date {
    font-size: 0.8rem;
    color: #888;
}

/* Post Navigation */
.post-navigation {
    margin: 3rem 0;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.nav-previous a,
.nav-next a {
    color: #333;
    text-decoration: none;
}

.nav-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    line-height: 1.3;
}

.nav-next {
    text-align: right;
}

/* Sidebar Styles */
.single-post-sidebar {
    padding-left: 2rem;
}

.sticky-sidebar {
    position: sticky;
    top: 120px;
}

.widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c41e3a;
}

.newsletter-widget p {
    color: #666;
    margin-bottom: 1.5rem;
}

.newsletter-widget .form-control {
    margin-bottom: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0.75rem;
}

.newsletter-widget .btn {
    width: 100%;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
}

.popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-post-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.popular-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-post-item a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: #333;
}

.popular-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.popular-post-item:hover h4 {
    color: #c41e3a;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reading-progress.visible {
    opacity: 1;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c41e3a, #d4af37);
    width: 0%;
    transition: width 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #c41e3a;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #8b1538;
    transform: translateY(-2px);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Dark Mode Support */
.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

.dark-mode .blog-hero {
    background: linear-gradient(135deg, #8b1538 0%, #2d5016 50%, #1a1a1a 100%);
}

.dark-mode .featured-posts,
.dark-mode .blog-categories {
    background: #222;
}

.dark-mode .featured-post,
.dark-mode .blog-post-card,
.dark-mode .category-card,
.dark-mode .widget {
    background: #333;
    color: #e0e0e0;
}

.dark-mode .section-title,
.dark-mode .posts-title,
.dark-mode .post-title a,
.dark-mode .category-name a {
    color: #e0e0e0;
}

.dark-mode .post-excerpt,
.dark-mode .category-description {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .single-post-sidebar {
        padding-left: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .single-post-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        flex-direction: row;
        justify-content: center;
    }
    
    .stat-item {
        max-width: 150px;
    }
    
    .posts-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .single-post-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .sticky-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .single-post-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .meta-divider {
        display: none;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .related-post {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .blog-hero,
    .featured-posts,
    .blog-posts,
    .blog-categories {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .single-post-title {
        font-size: 1.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .newsletter-form .form-control {
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .newsletter-submit {
        border-radius: 10px;
    }
    
    .post-content-wrapper {
        padding: 1.5rem;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .widget {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .single-post-sidebar,
    .post-share-section,
    .post-navigation,
    .back-to-top,
    .reading-progress {
        display: none !important;
    }
    
    .single-post-main {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* 
======================================
TRAVEL CONTENT STYLES IMPORT
======================================
Import travel-specific styles for destinations, guides, and itineraries
*/
@import url('css/travel-content.css');

/* Travel-specific overrides and additions */
body.single-destination .site-header,
body.single-travel-guide .site-header,
body.single-itinerary .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Hero sections for travel content */
.travel-hero {
    background: linear-gradient(135deg, #c41e3a, #d4af37);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.travel-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.travel-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.travel-breadcrumbs {
    background: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.travel-breadcrumbs .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.travel-breadcrumbs .breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
}

.travel-breadcrumbs .breadcrumb-item a:hover {
    color: #c41e3a;
}

.travel-breadcrumbs .breadcrumb-item.active {
    color: #374151;
    font-weight: 500;
}

/* Enhanced search for travel content */
.travel-search-enhanced {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.travel-search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.travel-search-filter select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
}

/* Morocco-themed decorative elements */
.morocco-pattern {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="moroccan" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,0 50,25 25,50 0,25" fill="%23c41e3a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23moroccan)"/></svg>');
}

/* Travel statistics and metrics */
.travel-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.travel-stat {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #c41e3a;
}

.travel-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #c41e3a;
    display: block;
}

.travel-stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Call-to-action sections for travel */
.travel-cta {
    background: linear-gradient(135deg, #c41e3a, #d4af37);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.travel-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.travel-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.travel-cta .btn {
    background: #fff;
    color: #c41e3a;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.travel-cta .btn:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile optimizations for travel content */
@media (max-width: 768px) {
    .travel-hero h1 {
        font-size: 2rem;
    }
    
    .travel-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .travel-search-filters {
        grid-template-columns: 1fr;
    }
    
    .travel-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .travel-cta {
        padding: 2rem 1rem;
    }
    
    .travel-cta h2 {
        font-size: 1.5rem;
    }
}

/* Dark mode for travel content */
[data-theme="dark"] .travel-search-enhanced,
[data-theme="dark"] .travel-stat {
    background: #1f2937;
    color: #f9fafb;
}

[data-theme="dark"] .travel-breadcrumbs {
    background: #111827;
    border-bottom-color: #374151;
}

[data-theme="dark"] .travel-search-filter select {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
}
