/* UNIQUE THEME FOR TRAVEL WITH STARNES */
:root {
    --primary-dark: #0f172a;
    --accent-coral: #f43f5e;
    --accent-hover: #e11d48;
    --bg-light: #fdfbf7;
    --bg-alt: #f1f5f9;
    --text-main: #334155;
    --text-light: #64748b;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-light); color: var(--text-main); line-height: 1.8; font-size: 16px; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
.wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER & NAVIGATION (Centered layout) */
.site-header { background: #fff; padding: 30px 0 15px; text-align: center; border-bottom: 2px solid var(--bg-alt); position: relative; z-index: 10; }
.brand-logo { font-family: var(--font-heading); font-size: 2.5rem; font-weight: bold; color: var(--primary-dark); margin-bottom: 15px; display: inline-block; letter-spacing: -0.5px; }
.brand-logo span { color: var(--accent-coral); font-style: italic; }
.main-nav { display: flex; justify-content: center; gap: 40px; }
.main-nav a { font-size: 0.95rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; padding-bottom: 5px; }
.main-nav a:hover, .main-nav a.active { color: var(--primary-dark); border-bottom: 2px solid var(--accent-coral); }
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; color: var(--primary-dark); cursor: pointer; position: absolute; right: 20px; top: 30px; }

/* BLOCK 1: HERO (Split Screen) */
.hero-section { display: flex; align-items: center; min-height: 70vh; background: var(--bg-alt); }
.hero-content { flex: 1; padding: 60px 40px; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; color: var(--primary-dark); line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 30px; max-width: 500px; }
.btn-primary { display: inline-block; background: var(--accent-coral); color: #fff; padding: 15px 35px; border-radius: 4px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; transition: background 0.3s; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.hero-image { flex: 1; min-height: 70vh; background-image: url('/hero-bg.jpg'); background-size: cover; background-position: center; }

/* BLOCK 2: FEATURED DESTINATIONS */
.section-pad { padding: 80px 0; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; text-align: center; margin-bottom: 50px; color: var(--primary-dark); }
.destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dest-card { position: relative; overflow: hidden; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); aspect-ratio: 4/5; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15,23,42,0.9), transparent); padding: 30px 20px 20px; color: #fff; text-align: center; }
.dest-overlay h3 { font-family: var(--font-heading); font-size: 1.8rem; margin: 0; }

/* BLOCK 3: ABOUT STARNES (Row reverse layout) */
.about-preview { background: #fff; display: flex; align-items: center; gap: 50px; padding: 60px; border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); margin: 40px 0; }
.about-img-wrap { flex: 0 0 40%; }
.about-img-wrap img { border-radius: 50%; aspect-ratio: 1/1; object-fit: cover; border: 8px solid var(--bg-alt); }
.about-text h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 20px; color: var(--primary-dark); }
.about-text p { margin-bottom: 20px; font-size: 1.1rem; }

/* BLOCK 4: LATEST POSTS (Editorial List) */
.post-list { display: flex; flex-direction: column; gap: 40px; }
.post-item { display: flex; gap: 30px; align-items: center; }
.post-item img { width: 300px; height: 200px; object-fit: cover; border-radius: 8px; }
.post-info h3 { font-family: var(--font-heading); font-size: 1.8rem; line-height: 1.3; margin-bottom: 15px; }
.post-info h3 a { color: var(--primary-dark); }
.post-info h3 a:hover { color: var(--accent-coral); }
.post-meta { font-size: 0.85rem; color: var(--accent-coral); font-weight: bold; text-transform: uppercase; margin-bottom: 10px; display: block; }
.post-info p { color: var(--text-light); margin-bottom: 15px; }
.read-more { font-weight: bold; border-bottom: 1px solid var(--primary-dark); padding-bottom: 2px; }
.read-more:hover { color: var(--accent-coral); border-color: var(--accent-coral); }

/* BLOCK 5: TRAVEL RESOURCES */
.resources-bg { background: var(--primary-dark); color: #fff; text-align: center; padding: 80px 0; }
.resources-bg .section-title { color: #fff; margin-bottom: 20px; }
.resources-grid { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.resource-item { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 8px; width: 250px; border: 1px solid rgba(255,255,255,0.1); }
.resource-item h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--accent-coral); }

/* BLOCK 6: NEWSLETTER */
.newsletter-section { background: var(--accent-coral); color: #fff; padding: 60px 20px; text-align: center; border-radius: 12px; margin: 80px 0; }
.newsletter-section h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 15px; }
.newsletter-form { display: flex; max-width: 600px; margin: 30px auto 0; gap: 10px; }
.newsletter-form input { flex: 1; padding: 15px 20px; border: none; border-radius: 4px; font-size: 1rem; }
.newsletter-form button { padding: 15px 30px; background: var(--primary-dark); color: #fff; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; }
.newsletter-form button:hover { background: #1e293b; }

/* ARTICLE SPECIFIC */
.article-hero { text-align: center; padding: 60px 20px; background: var(--bg-alt); margin-bottom: 50px; }
.article-hero h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--primary-dark); max-width: 800px; margin: 0 auto; line-height: 1.2; }
.article-content { max-width: 750px; margin: 0 auto 80px; font-size: 1.15rem; }
.article-content h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--primary-dark); margin: 50px 0 20px; }
.article-content h3 { font-family: var(--font-heading); font-size: 1.5rem; margin: 30px 0 15px; }
.article-content p { margin-bottom: 25px; }
.article-content img { width: 100%; border-radius: 8px; margin: 40px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.article-content blockquote { font-family: var(--font-heading); font-size: 1.5rem; font-style: italic; color: var(--primary-dark); border-left: 4px solid var(--accent-coral); padding: 10px 0 10px 30px; margin: 40px 0; line-height: 1.4; }

/* FORMS & PAGES */
.page-header { text-align: center; padding: 80px 0 40px; }
.page-header h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--primary-dark); }
.contact-container { max-width: 600px; margin: 0 auto 80px; }
.form-element { margin-bottom: 25px; }
.form-element label { display: block; margin-bottom: 10px; font-weight: 600; color: var(--primary-dark); }
.form-element input, .form-element textarea { width: 100%; padding: 15px; border: 1px solid #cbd5e1; border-radius: 4px; font-family: inherit; font-size: 1rem; }
.form-element textarea { height: 180px; resize: vertical; }

/* FOOTER */
.site-footer { background: #fff; padding: 40px 0; text-align: center; border-top: 1px solid #e2e8f0; margin-top: auto; }
.site-footer p { color: var(--text-light); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-section { flex-direction: column-reverse; }
    .hero-image { width: 100%; min-height: 40vh; }
    .destinations-grid { grid-template-columns: 1fr; }
    .about-preview { flex-direction: column; text-align: center; padding: 40px 20px; }
    .post-item { flex-direction: column; }
    .post-item img { width: 100%; height: 250px; }
    .newsletter-form { flex-direction: column; }
}
@media (max-width: 768px) {
    .main-nav { display: none; flex-direction: column; background: #fff; position: absolute; top: 100%; left: 0; right: 0; padding: 20px 0; border-bottom: 1px solid #e2e8f0; }
    .main-nav.show { display: flex; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .article-hero h1 { font-size: 2.2rem; }
}