:root {
    --gold: #d4af37;
    --emerald: #012b1b;
    --dark: #050505;
    --text: #e0e0e0;
    --font-head: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: auto;
}

.container {
    width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.gold-text { color: var(--gold); }

.navbar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 60px;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 1.5rem; color: white; text-decoration: none; font-weight: bold; }
.btn-back { color: var(--gold); text-decoration: none; font-weight: bold; font-size: 0.9rem; }

.article-header { text-align: center; margin-bottom: 60px; }
.article-header h1 { font-family: var(--font-head); font-size: 3rem; margin: 20px 0; line-height: 1.2; }
.badge { display: inline-block; background: var(--gold); color: black; padding: 5px 15px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.post-meta { font-size: 0.8rem; color: #888; display: flex; justify-content: center; gap: 20px; }

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px; 
    gap: 60px;
}

.content-area h2 { font-family: var(--font-head); color: var(--gold); margin: 40px 0 20px; }
.content-area p { margin-bottom: 25px; font-size: 1.1rem; color: #ccc; }
.lead { font-size: 1.4rem !important; color: white !important; font-weight: 300; border-left: 3px solid var(--gold); padding-left: 25px; margin-bottom: 40px; }

blockquote {
    background: rgba(1, 43, 27, 0.3);
    padding: 40px;
    border-left: 5px solid var(--gold);
    font-style: italic;
    font-size: 1.3rem;
    margin: 40px 0;
    color: white;
}

.sidebar { position: sticky; top: 100px; height: fit-content; }
.author-card { background: #0a0a0a; padding: 30px; text-align: center; border: 1px solid #222; margin-bottom: 30px; }

.sidebar-owner {
    width: 120px;
    height: auto;
    border: none !important;
    background: none !important;
    display: block;
    margin: 0 auto 20px;
}

.author-card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.1rem; }
.author-card p { font-size: 0.85rem; color: #888; margin-bottom: 20px; }
.socials a { color: var(--gold); margin: 0 10px; font-size: 1.2rem; }

.cta-box { background: var(--gold); color: black; padding: 30px; text-align: center; }
.cta-box h4 { font-family: var(--font-head); margin-bottom: 10px; }
.cta-box p { font-size: 0.9rem; margin-bottom: 20px; font-weight: bold; }
.btn-gold-fill { background: black; color: white; padding: 10px 20px; text-decoration: none; display: inline-block; font-weight: 800; font-size: 0.8rem; }

footer { padding: 40px 0; text-align: center; border-top: 1px solid #111; margin-top: 80px; font-size: 0.8rem; color: #555; }

.lang-switch button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    margin-left: 5px;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 0.7rem;
    transition: 0.3s;
}
.lang-switch button:hover { color: var(--gold); border-color: var(--gold); }

.btn-accept {
    background-color: #d4af37;
    color: #011612;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-accept:hover { background-color: #f0c64d; }

.btn-decline {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 12px 20px;
    cursor: pointer;
    flex: 1;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-decline:hover { background: rgba(212, 175, 55, 0.1); }

.footer-socials {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 15px 0;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.85rem;
}

.footer-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-social-btn.fixly .fixly-icon {
    font-family: var(--font-head); 
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.image-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    max-width: 700px;
}

.image-slider {
    overflow: hidden;
    width: 600px;
}

.slider-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-images img { min-width: 100%; display: block; }

.image-slider-wrapper button {
    position: relative; 
    background: none;
    border: none;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff80; 
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.image-slider-wrapper .prev { margin-right: 10px; }
.image-slider-wrapper .next { margin-left: 10px; }

.image-slider-wrapper button:hover { color: #FFD700; transform: scale(1.2); }

.sidebar-owner-placeholder {
    text-align: center;
    padding: 10px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
}


.sidebar-owner-placeholder {
    text-align: center;
    padding: 10px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    width: 150px;
    transition: transform 0.2s, opacity 0.2s;
}

.footer-social-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-social-btn.fixly {
    background-color: #FFD700; 
    color: #000;
}

.footer-social-btn.facebook {
    background-color: #1877F2;
}

.footer-social-btn.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}
.price-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.price-card h3 {
    font-family: var(--font-head);
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.price-card ul { list-style: none; padding: 0; margin: 0; }

.price-card li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    color: #cccccc;
}

.price-card li:last-child { border-bottom: none; }

.price-card .price {
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

.price-note {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #c9c7b7;
    text-align: center;
}