/* assets/css/premium-theme.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #f29054;
    --primary-hover: #e07a3e;
    --secondary-color: #2b2b2b;
    --text-color: #4a4a4a;
    --bg-color: #fdfbf7;
    --card-bg: #ffffff;
    --border-color: #eaeaea;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(242, 144, 84, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--secondary-color);
    font-weight: 700;
}

/* Header */
.header-section {
    background: var(--card-bg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.main-menu ul li a {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 10px 15px;
    transition: var(--transition);
}

.main-menu ul li.active a,
.main-menu ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    margin: 40px 0;
}

.hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-img {
    height: 500px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    color: white;
}

.hero-category {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Post Cards */
.post-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.post-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.post-card-body {
    padding: 25px;
}

.post-card-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.post-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-card-title a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.post-card-title a:hover {
    color: var(--primary-color);
}

.post-card-desc {
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 20px;
}

.post-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

/* Buttons */
.btn-premium {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-premium:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 144, 84, 0.4);
}

/* Post Detail */
.post-header-img {
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin: 40px 0;
}

.post-content {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
}

.post-slide-card {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 50px;
}

.post-slide-img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.post-slide-badge {
    background: var(--primary-color);
    color: white;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    box-shadow: 0 5px 15px rgba(242, 144, 84, 0.5);
    z-index: 2;
}

/* Footer */
.footer-section {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-section p {
    color: #bbb;
}

.copyright-text {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    color: #888;
}
