/* --- BRAND DNA --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600&family=Playfair+Display:ital,wght@1,400&family=Syne:wght@400;700;800&display=swap');

:root {
    --bg-body: #FFFFFF;
    --primary: #121212;
    --secondary: #2A6F97;
    --accent: #D4AF37;
    --border: #E5E5E5;

    --font-head: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--primary);
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

/* --- NAVIGATION (Minimalist) --- */
nav {
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-sizing: border-box;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: -1px;
}

.back-link {
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--accent);
}

/* --- POST HEADER --- */
.post-header {
    max-width: 800px;
    margin: 150px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.post-category {
    font-family: var(--font-head);
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.post-title {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.post-meta {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FEATURED IMAGE --- */
.featured-image-wrapper {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.featured-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 4px;
}

/* --- ARTICLE CONTENT --- */
article {
    max-width: 750px;
    margin: 0 auto 100px;
    padding: 0 25px;
    font-size: 18px;
    color: #333;
}

article p {
    margin-bottom: 30px;
}

article h2 {
    font-family: var(--font-head);
    font-size: 28px;
    margin: 60px 0 20px;
    color: var(--primary);
}

blockquote {
    margin: 50px 0;
    padding-left: 30px;
    border-left: 4px solid var(--accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 26px;
    color: var(--secondary);
    line-height: 1.4;
}

.inline-img {
    width: 100%;
    margin: 40px 0;
    border-radius: 2px;
}

/* --- SHARE & FOOTER --- */
.post-footer {
    max-width: 750px;
    margin: 0 auto 100px;
    padding: 40px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.share-label {
    font-family: var(--font-head);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 20px;
    display: block;
}

/* --- NEXT POST SECTION (DARK THEME) --- */
.next-post-section {
    background: #121212;
    /* Obsidian Dark */
    padding: 120px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.next-post-section .share-label {
    color: var(--accent);
    /* Gold label */
    margin-bottom: 15px;
    display: block;
    opacity: 1;
}

.next-link {
    font-family: var(--font-head);
    font-size: 38px;
    color: #FFFFFF;
    /* White Text */
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    font-weight: 700;
    display: inline-block;
    max-width: 800px;
    line-height: 1.2;
}

.next-link:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .next-link {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .post-header {
        margin: 100px auto 40px;
    }

    .post-title {
        font-size: clamp(32px, 10vw, 42px) !important;
        margin-bottom: 20px;
    }

    .featured-img {
        height: 40vh;
    }
    
    article {
        padding: 0 15px;
        margin-bottom: 60px;
        font-size: 16px;
    }
    
    article h2 {
        font-size: 24px;
        margin: 40px 0 15px;
    }
    
    blockquote {
        font-size: 20px;
        margin: 30px 0;
        padding-left: 15px;
    }
    
    .next-post-section {
        padding: 60px 20px;
    }
}

/* --- LUXURY INTERACTIVE CURSOR --- */
body {
    cursor: none;
}

/* Hide the default cursor */

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

/* Hover State for Interactive Elements */
.cursor-active .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor-active .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid #fff;
}

/* Hide cursor on mobile - luxury touch */
@media (max-width: 1024px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}