/* Gea Travel & Tours - Earthy & Storytelling Theme */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #2C5F2D; /* Forest Green */
    --primary-hover: #1f4520;
    --secondary: #D96459; /* Terracotta / Sunset */
    --secondary-hover: #c2554a;
    --bg-main: #FDFBF7; /* Sand / Off-white */
    --bg-alt: #F3EFE7;
    --text-dark: #252725;
    --text-muted: #5c635d;
    --border: #e0dcd3;
    --radius: 16px;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
    --container: 1140px;
    --shadow: 0 10px 20px -5px rgba(44, 95, 45, 0.08);
}

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

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* Header */
header { background: rgba(253, 251, 247, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; padding: 1.2rem 0; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 0.5rem; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; background: var(--secondary); color: #fff; padding: 1rem 2.2rem; border-radius: 50px; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; border: none; cursor: pointer; transition: all 0.3s; }
.btn:hover { background: var(--secondary-hover); transform: translateY(-2px); box-shadow: 0 8px 15px rgba(217, 100, 89, 0.2); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Hero Block */
.hero { background: var(--bg-alt); padding: 7rem 0; position: relative; overflow: hidden; text-align: center; }
.hero h1 { font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 1.5rem; color: var(--primary); max-width: 800px; margin-left: auto; margin-right: auto; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Story / SEO Block */
.story-block { background: var(--bg-main); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.story-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Services Block */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; text-align: center; }
.service-card { background: #fff; padding: 3rem 2rem; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 15px 30px -5px rgba(44, 95, 45, 0.15); }
.blog-img { width: 100%; height: 240px; object-fit: cover; border-radius: 0; }
.blog-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-tag { color: var(--secondary); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.blog-title { font-size: 1.4rem; margin-bottom: 1rem; line-height: 1.3; }
.blog-title a:hover { color: var(--secondary); }
.blog-excerpt { color: var(--text-muted); margin-bottom: 1.5rem; flex-grow: 1; }
.read-more { font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 0.5rem; border-bottom: 2px solid transparent; padding-bottom: 2px; }
.read-more:hover { border-color: var(--primary); gap: 0.8rem; }

/* Deep SEO Block */
.deep-seo { background: var(--primary); color: #fff; text-align: center; border-radius: var(--radius); padding: 5rem 3rem; margin: 4rem 0; }
.deep-seo h2 { color: #fff; font-size: 2.5rem; margin-bottom: 1.5rem; }
.deep-seo p { color: #d1e0d1; font-size: 1.15rem; max-width: 800px; margin: 0 auto 1.5rem; }

/* Newsletter */
.newsletter { background: var(--bg-alt); padding: 6rem 0; text-align: center; }
.newsletter-form { display: flex; gap: 1rem; max-width: 500px; margin: 2rem auto 0; }
.newsletter-form input { flex: 1; padding: 1rem 1.5rem; border-radius: 50px; border: 1px solid var(--border); font-family: var(--font-body); font-size: 1rem; outline: none; }
.newsletter-form input:focus { border-color: var(--primary); }

/* Article Layout */
.post-header { padding: 5rem 0 3rem; text-align: center; max-width: 800px; margin: 0 auto; }
.post-title { font-size: 3.5rem; margin-bottom: 1.5rem; }
.post-meta { color: var(--text-muted); font-size: 1.1rem; font-style: italic; font-family: var(--font-head); }
.post-body { max-width: 800px; margin: 0 auto 5rem; font-size: 1.2rem; color: #3a3f3b; }
.post-body h2 { font-size: 2.2rem; margin: 3rem 0 1.5rem; }
.post-body h3 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.post-body p { margin-bottom: 1.5rem; }
.post-body ul { margin: 0 0 1.5rem 2rem; }
.post-body li { margin-bottom: 0.8rem; }
.post-body blockquote { border-left: 4px solid var(--secondary); padding: 1.5rem 2rem; margin: 2.5rem 0; background: #fff; font-family: var(--font-head); font-size: 1.4rem; font-style: italic; color: var(--primary); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); }

/* Footer */
footer { background: var(--text-dark); color: #fff; padding: 5rem 0 2rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { font-family: var(--font-head); color: #fff; font-size: 2rem; margin-bottom: 1.5rem; display: inline-block; font-weight: 700; }
.footer-col h4 { font-family: var(--font-body); font-size: 1.2rem; margin-bottom: 1.5rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 1rem; }
.footer-col a { color: #a1a6a2; }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; color: #767c77; padding-top: 2rem; border-top: 1px solid #3a3f3b; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .post-title { font-size: 2.5rem; }
    .newsletter-form { flex-direction: column; }
}
