/* --- OUTAREA MASTER BLOG - MAGAZINE EDITION --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --oa-green: #1B4D3E;
    --oa-gold: #D4AF37;
    --oa-dark: #0f172a;
    --oa-light: #64748b;
    --white: #ffffff;
}

body { background-color: #fff; font-family: 'Inter', sans-serif; }

/* 1. Immersive Hero Section */
.blog-hero-premium {
    height: 60vh;
    background: linear-gradient(rgba(11, 17, 16, 0.7), rgba(11, 17, 16, 0.7)), 
                url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: -60px;
}
.hero-inner h1 { font-family: 'Playfair Display', serif; font-size: 56px; margin: 0; }
.hero-inner h1 span { color: var(--oa-gold); font-style: italic; }
.hero-inner p { font-size: 14px; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 15px; opacity: 0.9; }

/* 2. Featured Post (The Big Highlight) */
.featured-blog-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}
.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}
.f-img-box { height: 450px; overflow: hidden; }
.f-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
.featured-card:hover .f-img-box img { transform: scale(1.05); }

.f-content { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.f-cat { color: var(--oa-gold); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; display: block; }
.f-content h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--oa-green); margin-bottom: 20px; line-height: 1.2; }
.f-content p { color: var(--oa-light); line-height: 1.8; margin-bottom: 30px; font-size: 15px; }
.btn-read-f { width: fit-content; padding: 12px 30px; background: var(--oa-green); color: #fff; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 13px; transition: 0.3s; }
.btn-read-f:hover { background: var(--oa-gold); color: #000; box-shadow: 0 10px 20px rgba(212,175,55,0.3); }

/* 3. Modern Blog Grid */
.blog-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.luxury-card {
    text-decoration: none;
    color: inherit;
    group: hover;
}
.lc-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}
.lc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.luxury-card:hover .lc-img-wrap img { transform: scale(1.1) rotate(1deg); }

.lc-date { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.luxury-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--oa-dark); line-height: 1.4; margin-bottom: 15px; transition: 0.3s; }
.luxury-card:hover h3 { color: var(--oa-gold); }
.luxury-card p { font-size: 14px; color: var(--oa-light); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* 4. Categories Navigation */
.blog-nav-bar {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid #f1f5f9;
}
.blog-nav-bar a {
    text-decoration: none;
    padding-bottom: 15px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.blog-nav-bar a:hover, .blog-nav-bar a.active { color: var(--oa-green); border-color: var(--oa-gold); }

@media (max-width: 992px) {
    .featured-card { grid-template-columns: 1fr; }
    .f-img-box { height: 300px; }
    .hero-inner h1 { font-size: 36px; }
}