/* ========================================
RESET & BASE STYLES
======================================== */

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

body {
font-family: ‘Crimson Pro’, serif;
font-size: 18px;
line-height: 1.8;
color: #2C3E50;
background: #F7F9FC;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

/* ========================================
NAVIGATION
======================================== */
.main-nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 1.5rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo a {
font-family: ‘Raleway’, sans-serif;
font-size: 1.8rem;
font-weight: 900;
color: #2C3E50;
text-decoration: none;
letter-spacing: -1px;
}

.logo span {
color: #FF6B6B;
}

.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}

.nav-links a {
font-family: ‘Raleway’, sans-serif;
font-weight: 500;
font-size: 0.95rem;
color: #2C3E50;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: color 0.3s ease;
position: relative;
}

.nav-links a::after {
content: ‘’;
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: #FF6B6B;
transition: width 0.3s ease;
}

.nav-links a:hover::after {
width: 100%;
}

.lang-switcher {
display: flex;
gap: 0.5rem;
}

.lang-btn {
padding: 0.5rem 1rem;
border: 2px solid #2C3E50;
background: transparent;
font-family: ‘Raleway’, sans-serif;
font-weight: 700;
font-size: 0.85rem;
color: #2C3E50;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 25px;
}

.lang-btn.active {
background: #FF6B6B;
border-color: #FF6B6B;
color: white;
}

.lang-btn:hover {
background: #4ECDC4;
border-color: #4ECDC4;
color: white;
}

/* ========================================
HERO SECTION
======================================== */
.hero {
position: relative;
height: 85vh;
margin-top: 80px;
overflow: hidden;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(255,107,107,0.3) 0%, rgba(78,205,196,0.3) 100%);
}

.hero-content {
position: relative;
z-index: 10;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 2rem;
}

.hero-title {
font-family: ‘Raleway’, sans-serif;
font-size: 4.5rem;
font-weight: 900;
color: white;
text-shadow: 3px 3px 20px rgba(0,0,0,0.3);
margin-bottom: 1rem;
letter-spacing: -2px;
animation: fadeInUp 1s ease;
}

.hero-subtitle {
font-family: ‘Crimson Pro’, serif;
font-size: 1.5rem;
color: white;
text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
font-weight: 400;
animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* ========================================
FEATURED SECTION
======================================== */
.featured-section {
padding: 6rem 0;
background: white;
}

.section-title {
font-family: ‘Raleway’, sans-serif;
font-size: 3rem;
font-weight: 700;
color: #2C3E50;
text-align: center;
margin-bottom: 4rem;
position: relative;
}

.section-title::after {
content: ‘’;
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
border-radius: 2px;
}

.featured-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.post-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
text-decoration: none;
color: inherit;
display: block;
}

.post-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.post-card-image {
width: 100%;
height: 280px;
overflow: hidden;
position: relative;
}

.post-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
transform: scale(1.1);
}

.post-card-category {
position: absolute;
top: 15px;
left: 15px;
padding: 0.5rem 1.2rem;
background: #FF6B6B;
color: white;
font-family: ‘Raleway’, sans-serif;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
border-radius: 25px;
}

.post-card-content {
padding: 1.8rem;
}

.post-card-title {
font-family: ‘Raleway’, sans-serif;
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 0.8rem;
color: #2C3E50;
line-height: 1.3;
}

.post-card-excerpt {
font-size: 1rem;
color: #666;
line-height: 1.6;
margin-bottom: 1rem;
}

.post-card-meta {
display: flex;
justify-content: space-between;
align-items: center;
font-family: ‘Raleway’, sans-serif;
font-size: 0.85rem;
color: #999;
margin-top: 1.2rem;
padding-top: 1.2rem;
border-top: 1px solid #eee;
}

/* ========================================
CATEGORIES SECTION
======================================== */
.categories-section {
padding: 6rem 0;
background: linear-gradient(135deg, #FFF5F5 0%, #F0F9FF 100%);
}

.category-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.category-card {
position: relative;
height: 400px;
border-radius: 20px;
overflow: hidden;
text-decoration: none;
color: white;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 2.5rem;
transition: transform 0.3s ease;
background-size: cover;
background-position: center;
}

.category-card:hover {
transform: scale(1.03);
}

.category-card.destinations {
background: linear-gradient(135deg, rgba(255,107,107,0.8), rgba(255,107,107,0.5)), #FF6B6B;
}

.category-card.food {
background: linear-gradient(135deg, rgba(78,205,196,0.8), rgba(78,205,196,0.5)), #4ECDC4;
}

.category-card.stories {
background: linear-gradient(135deg, rgba(255,230,109,0.8), rgba(255,230,109,0.5)), #FFE66D;
}

.category-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
z-index: 1;
}

.category-card h3 {
position: relative;
z-index: 2;
font-family: ‘Raleway’, sans-serif;
font-size: 2.2rem;
font-weight: 900;
margin-bottom: 0.5rem;
text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.category-card p {
position: relative;
z-index: 2;
font-size: 1.1rem;
font-weight: 300;
text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* ========================================
FOOTER
======================================== */
.main-footer {
background: #2C3E50;
color: white;
padding: 4rem 0 2rem;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}

.footer-section h4 {
font-family: ‘Raleway’, sans-serif;
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 1rem;
color: #FFE66D;
}

.footer-section p {
font-size: 0.95rem;
line-height: 1.6;
color: rgba(255,255,255,0.7);
}

.social-links {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.social-link {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-family: ‘Raleway’, sans-serif;
font-size: 0.95rem;
transition: color 0.3s ease;
}

.social-link:hover {
color: #FF6B6B;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
font-size: 0.9rem;
color: rgba(255,255,255,0.5);
}

/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}

```
.hero-subtitle {
    font-size: 1.1rem;
}

.nav-links {
    display: none;
}

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

.section-title {
    font-size: 2rem;
}
```

}