/* Virtual Voyage World - Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f1419;
    color: #e7e9ea;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
}

a {
    color: #7ecfff;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a2634 0%, #0f1419 100%);
    border-bottom: 1px solid #2a3a4a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
}

.logo span {
    color: #7ecfff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #a0a0a0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #7ecfff;
}

.back-link {
    color: #a0a0a0;
    font-size: 14px;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(15, 20, 25, 0.6), rgba(15, 20, 25, 0.7)), url('https://images.pexels.com/photos/2325446/pexels-photo-2325446.jpeg?auto=compress&cs=tinysrgb&w=1280');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 20px;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: #7ecfff;
    color: #0f1419;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: #fff;
    color: #0f1419;
    transform: translateY(-2px);
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

.section-subtitle {
    color: #707070;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background: #1a2634;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #2a3a4a;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(126, 207, 255, 0.9);
    color: #0f1419;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.card-content p {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: #7ecfff;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.category-tag {
    background: #1a2634;
    border: 1px solid #2a3a4a;
    padding: 12px 25px;
    border-radius: 30px;
    color: #a0a0a0;
    font-size: 14px;
    transition: all 0.3s;
}

.category-tag:hover {
    background: #2a3a4a;
    color: #7ecfff;
    border-color: #7ecfff;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #1a2634 0%, #2d1f3d 100%);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    margin-bottom: 60px;
}

.newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter p {
    color: #a0a0a0;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background: #0a0e12;
    border-top: 1px solid #2a3a4a;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #707070;
    font-size: 14px;
}

.affiliate-disclosure {
    color: #505050;
    font-size: 12px;
    max-width: 600px;
    margin: 20px auto 0;
}

.copyright {
    color: #505050;
    font-size: 13px;
    margin-top: 20px;
}

/* Article Page Styles */
.page-hero {
    background: linear-gradient(135deg, #1a2634 0%, #2d1f3d 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #a0a0a0;
}

.content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin: 40px 0 20px;
}

.content h2:first-of-type {
    margin-top: 0;
}

.content p {
    color: #c0c0c0;
    margin-bottom: 20px;
    font-size: 17px;
}

.content ul {
    color: #c0c0c0;
    margin: 0 0 20px 25px;
}

.content li {
    margin-bottom: 10px;
}

.highlight-box {
    background: #1a2634;
    border-left: 4px solid #7ecfff;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    color: #7ecfff;
    margin-bottom: 10px;
    font-size: 18px;
}

.highlight-box p {
    margin: 0;
}

/* Article Hero Variants */
.article-hero {
    padding: 80px 20px;
    text-align: center;
}

.article-hero .category {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
}

.article-hero .meta {
    font-size: 14px;
    opacity: 0.8;
}

.article-hero.museum {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.article-hero.nature {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.article-hero.landmark {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.article-hero.wildlife {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #0f1419;
}

.article-hero.wildlife .category {
    background: rgba(0,0,0,0.2);
    color: #fff;
}

.article-hero.history {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
}

/* Article Content */
article {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
}

article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin: 40px 0 20px;
}

article h3 {
    font-size: 20px;
    color: #7ecfff;
    margin: 30px 0 15px;
}

article p {
    color: #c0c0c0;
    margin-bottom: 20px;
    font-size: 17px;
}

article ul, article ol {
    color: #c0c0c0;
    margin: 0 0 20px 25px;
}

article li {
    margin-bottom: 10px;
}

/* Tour Link Cards */
.tour-link {
    display: block;
    background: #1a2634;
    border: 1px solid #2a3a4a;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    transition: all 0.3s;
}

.tour-link:hover {
    border-color: #7ecfff;
    transform: translateY(-3px);
}

.tour-link h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.tour-link p {
    margin: 0;
    font-size: 14px;
    color: #a0a0a0;
}

.tour-link .cta {
    color: #7ecfff;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* Tip Box */
.tip-box {
    background: rgba(126, 207, 255, 0.1);
    border-left: 4px solid #7ecfff;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.tip-box h4 {
    color: #7ecfff;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tip-box p {
    margin: 0;
}

/* Affiliate Box */
.affiliate-box {
    background: #1a2634;
    border: 1px solid #2a3a4a;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.affiliate-box h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.affiliate-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.affiliate-box li {
    padding: 12px 0;
    border-bottom: 1px solid #2a3a4a;
}

.affiliate-box li:last-child {
    border: none;
}

.affiliate-box .product-name {
    color: #fff;
    font-weight: 600;
}

.affiliate-box .product-desc {
    color: #a0a0a0;
    font-size: 14px;
}

/* Related Content */
.related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #2a3a4a;
}

.related h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.related-card {
    background: #1a2634;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #2a3a4a;
}

.related-card h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}

.related-card p {
    color: #707070;
    font-size: 13px;
    margin: 0;
}

/* Date Badge */
.date-badge {
    display: inline-block;
    background: rgba(126, 207, 255, 0.15);
    color: #7ecfff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 32px;
    }

    .nav-links {
        display: none;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-hero h1,
    .page-hero h1 {
        font-size: 28px;
    }
}
