/*
Theme Name: Tierblog Premium
Theme URI: https://your-tierblog.de/
Author: Antigravity
Description: Premium Nature & Animal Blog Design with lush emerald and amber aesthetics.
Version: 1.0
*/

:root {
    --tier-dark: #064E3B;
    --tier-bg-alt: #065F46;
    --tier-green-mid: #059669;
    /* Lighter Emerald for sections */
    --tier-green-light: #10B981;
    /* Even lighter */
    --tier-amber: #F59E0B;
    /* Warm Amber/Gold */
    --tier-emerald: #10B981;
    /* Vibrant Emerald for accents */
    --tier-slate: #1E293B;
    --tier-cream: #ECFCCB;
    /* Soft light text */
    --text-main: #ECFCCB;
    --text-muted: #6EE7B7;
    --glass-bg: rgba(6, 78, 59, 0.85);
}

body {
    background-color: var(--tier-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.tier-gradient {
    background: linear-gradient(135deg, var(--tier-amber) 0%, #D97706 100%);
}

.tier-gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #6EE7B7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amber-gradient-text {
    background: linear-gradient(135deg, var(--tier-amber) 0%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Dropdown Support */
.nav-menu li.group:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

[x-cloak] {
    display: none !important;
}

/* WP Block Lists (Premium Style) */
.entry-content ul.wp-block-list,
.entry-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.entry-content ul.wp-block-list li,
.entry-content ul li {
    position: relative;
    padding: 1rem 1.5rem 1rem 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.entry-content ul.wp-block-list li:hover,
.entry-content ul li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(245, 158, 11, 0.4);
    /* Amber border on hover */
}

.entry-content ul.wp-block-list li::before,
.entry-content ul li::before {
    content: "\f00c";
    /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f59e0b;
    /* Amber-500 */
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
}

/* Exclude navigation/UI lists if necessary, scope to article content */
.entry-content ol {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.entry-content ol li {
    position: relative;
    padding: 1rem 1.5rem 1rem 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.8);
    counter-increment: item;
}

.entry-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    /* Emerald-500 */
    font-weight: 800;
    font-size: 0.9rem;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Navigation Styles */
.dropdown-menu {
    transform-origin: top center;
    transform: rotateX(-10deg);
    transition: all 0.3s ease;
}

li.group:hover>.dropdown-menu {
    pointer-events: auto;
}

.premium-card {
    background: rgba(6, 95, 70, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(6, 95, 70, 0.6);
}

/* Typography Tweaks */
.entry-content {
    font-size: 1.25rem;
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    color: #FFF;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.entry-content h1 {
    font-size: 3.5rem;
}

.entry-content h2 {
    font-size: 2.75rem;
    border-left: 4px solid var(--tier-amber);
    padding-left: 1.5rem;
}

.entry-content h3 {
    font-size: 1.85rem;
    color: var(--tier-amber);
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: #D1FAE5;
}

.entry-content blockquote {
    background: rgba(245, 158, 11, 0.05);
    border-left: 6px solid var(--tier-amber);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 0 2rem 2rem 0;
    font-size: 1.5rem;
    font-style: italic;
    color: #FFF;
    position: relative;
}

.entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--tier-amber);
    opacity: 0.2;
    font-family: serif;
}

/* Comments Styling */
.comments-area {
    margin-top: 5rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-list .comment-body {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.comment-reply-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--tier-amber);
}

.submit-btn {
    background: var(--tier-amber);
    color: #000;
    font-weight: 900;
    padding: 1rem 3rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}