/* Save The Traveller - Modern Safari Theme */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #334155; /* Slate Gray */
    --accent: #f26b5b; /* Sunset Coral */
    --accent-hover: #d95345;
    --secondary: #7ea082; /* Sage Green */
    --bg-main: #fcfbf9; /* Soft Pearl */
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-body: #475569;
    --border: #e2e8f0;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Outfit', sans-serif;
    --container: 1200px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.08);
}

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

body { background-color: var(--bg-main); color: var(--text-body); font-family: var(--font-body); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.3; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* Header */
header { background-color: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 16px; font-weight: 500; color: var(--text-body); }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; background-color: var(--accent); color: var(--bg-white); padding: 14px 32px; font-family: var(--font-body); font-weight: 600; font-size: 16px; border-radius: 50px; border: none; cursor: pointer; transition: all 0.3s; }
.btn:hover { background-color: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; }
.btn-outline { background-color: transparent; border: 2px solid var(--secondary); color: var(--secondary); }
.btn-outline:hover { background-color: var(--secondary); color: var(--bg-white); }

/* Block 1: Hero */
.hero { position: relative; padding: 120px 0; min-height: 80vh; display: flex; align-items: center; justify-content: center; color: var(--bg-white); overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; border-radius: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(51, 65, 85, 0.9), rgba(51, 65, 85, 0.4)); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 700px; text-align: left; margin-right: auto; }
.hero-badge { display: inline-block; padding: 6px 16px; background: rgba(242, 107, 91, 0.2); backdrop-filter: blur(4px); color: var(--accent); border-radius: 50px; font-weight: 600; font-size: 14px; margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(242, 107, 91, 0.4); }
.hero h1 { color: var(--bg-white); font-size: clamp(40px, 6vw, 64px); margin-bottom: 24px; font-weight: 700; line-height: 1.1; }
.hero p { font-size: 20px; font-weight: 400; margin-bottom: 40px; color: #f8fafc; font-family: var(--font-body); opacity: 0.9; }

/* Block 2: Story SEO Text */
.seo-story { background-color: var(--bg-white); padding: 80px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-text h2 { font-size: 36px; margin-bottom: 24px; color: var(--primary); }
.story-text p { font-size: 18px; margin-bottom: 20px; line-height: 1.8; }
.story-image img { width: 100%; height: 500px; object-fit: cover; box-shadow: var(--shadow-md); }

/* Block 3: Categories */
.categories { background-color: var(--bg-main); text-align: center; }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.cat-card { background: var(--bg-white); padding: 48px 32px; border-radius: 16px; box-shadow: var(--shadow-sm); transition: all 0.3s; border-bottom: 4px solid transparent; }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-bottom-color: var(--accent); }
.cat-icon { width: 64px; height: 64px; background: rgba(126, 160, 130, 0.1); color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 24px; }
.cat-card h3 { font-size: 24px; margin-bottom: 16px; }

/* Block 4: Blog Grid */
.blog-section { background-color: var(--bg-white); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.blog-header h2 { font-size: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; }
.blog-card { background: var(--bg-main); border-radius: 16px; overflow: hidden; transition: all 0.3s; border: 1px solid var(--border); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img { height: 240px; width: 100%; object-fit: cover; border-radius: 0; }
.blog-content { padding: 32px; }
.blog-meta { font-size: 14px; font-weight: 600; color: var(--secondary); margin-bottom: 12px; display: block; text-transform: uppercase; letter-spacing: 1px; }
.blog-title { font-size: 22px; margin-bottom: 16px; line-height: 1.4; }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { margin-bottom: 24px; font-size: 16px; color: var(--text-body); }
.read-more { font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; }
.read-more:hover { color: var(--accent); }

/* Block 5: Secondary SEO */
.deep-seo { background-color: var(--primary); color: var(--bg-white); text-align: center; }
.deep-seo h2 { color: var(--bg-white); font-size: 36px; margin-bottom: 24px; }
.deep-seo-content { max-width: 800px; margin: 0 auto; }
.deep-seo-content p { font-size: 18px; color: #cbd5e1; margin-bottom: 24px; line-height: 1.8; }

/* Block 6: Newsletter */
.newsletter { background-color: var(--secondary); padding: 80px 0; color: var(--bg-white); text-align: center; border-radius: 24px; margin: 48px 24px; }
.newsletter h2 { color: var(--bg-white); font-size: 36px; margin-bottom: 16px; }
.newsletter p { font-size: 18px; margin-bottom: 32px; opacity: 0.9; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: 8px; background: var(--bg-white); padding: 8px; border-radius: 50px; }
.newsletter-form input { flex: 1; padding: 12px 24px; border: none; font-family: var(--font-body); font-size: 16px; outline: none; border-radius: 50px; background: transparent; }
.newsletter-form .btn { padding: 14px 32px; }

/* Articles */
.article-container { max-width: 800px; margin: 64px auto; }
.article-header { text-align: center; margin-bottom: 48px; }
.article-tag { display: inline-block; padding: 6px 16px; background: var(--secondary); color: var(--bg-white); border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 24px; text-transform: uppercase; }
.article-title { font-size: 48px; margin-bottom: 24px; line-height: 1.2; }
.article-meta-info { color: var(--text-body); font-size: 16px; display: flex; justify-content: center; gap: 16px; align-items: center; }
.article-hero { width: 100%; height: 500px; object-fit: cover; margin-bottom: 48px; box-shadow: var(--shadow-md); }
.article-body { font-size: 18px; line-height: 1.9; color: #374151; }
.article-body h2 { font-size: 28px; margin: 48px 0 24px; color: var(--primary); }
.article-body h3 { font-size: 22px; margin: 32px 0 16px; }
.article-body p { margin-bottom: 24px; }
.article-body ul { margin-bottom: 24px; padding-left: 24px; }
.article-body li { margin-bottom: 12px; }
.article-body blockquote { font-family: var(--font-heading); font-size: 22px; color: var(--primary); font-style: italic; border-left: 4px solid var(--accent); padding-left: 24px; margin: 40px 0; background: rgba(242, 107, 91, 0.05); padding: 24px; border-radius: 0 12px 12px 0; }

/* Forms */
.contact-form { max-width: 600px; margin: 0 auto; background: var(--bg-white); padding: 48px; border-radius: 16px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.form-group { margin-bottom: 24px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); }
.form-control { width: 100%; padding: 16px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 16px; background-color: var(--bg-main); transition: all 0.3s; }
.form-control:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(126, 160, 130, 0.2); }

/* Footer */
footer { background-color: var(--bg-white); padding: 80px 0 40px; border-top: 1px solid var(--border); margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-text { font-size: 16px; color: var(--text-body); margin-top: 16px; max-width: 400px; }
.footer-heading { color: var(--text-dark); font-size: 18px; margin-bottom: 24px; font-weight: 700; font-family: var(--font-body); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 16px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 32px; font-size: 15px; color: #94a3b8; }

/* Responsive */
@media (max-width: 992px) {
    .story-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
    .categories-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 48px; }
    .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .newsletter-form { flex-direction: column; background: transparent; padding: 0; }
    .newsletter-form input { border-radius: 8px; background: var(--bg-white); }
    .newsletter-form .btn { border-radius: 8px; }
    .newsletter { margin: 24px 0; border-radius: 0; }
    .article-title { font-size: 36px; }
    .hero { min-height: 60vh; padding: 100px 0; }
}
