/*
Theme Name: haustier-center Premium
Theme URI: https://haustier-center.de/
Author: Antigravity
Description: Premium Nature & Animal Blog Design with lush emerald and amber aesthetics. Performance-optimized — no Tailwind CDN, no Alpine.js, no Font Awesome.
Version: 2.0
*/

/* ===== DESIGN TOKENS ===== */
:root {
    --tier-dark: #064E3B;
    --tier-bg-alt: #065F46;
    --tier-green-mid: #059669;
    --tier-green-light: #10B981;
    --tier-amber: #F59E0B;
    --tier-amber-dark: #D97706;
    --tier-emerald: #10B981;
    --tier-slate: #1E293B;
    --tier-cream: #ECFCCB;
    --text-main: #ECFCCB;
    --text-muted: #6EE7B7;
    --glass-bg: rgba(6, 78, 59, 0.85);
    --emerald-950: #022c22;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --purple-400: #c084fc;
}

/* ===== BASE RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--emerald-950);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== UTILITY: Layout ===== */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.min-h-screen {
    min-height: 100vh;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-grow {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.pointer-events-none {
    pointer-events: none;
}

.object-cover {
    object-fit: cover;
}

.list-none {
    list-style: none;
}

/* ===== UTILITY: Spacing ===== */
.mt-auto {
    margin-top: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mt-32 {
    margin-top: 8rem;
}

.-mt-20 {
    margin-top: -5rem;
}

.-mt-10 {
    margin-top: -2.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-right: 0.5rem;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pt-40 {
    padding-top: 10rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.pb-32 {
    padding-bottom: 8rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* ===== UTILITY: Grid ===== */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.col-span-full {
    grid-column: 1 / -1;
}

/* ===== UTILITY: Typography ===== */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== UTILITY: Colors ===== */
.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-amber-500 {
    color: var(--amber-500);
}

.text-emerald-400 {
    color: var(--emerald-400);
}

.text-purple-400 {
    color: var(--purple-400);
}

.bg-emerald-950 {
    background-color: var(--emerald-950);
}

.bg-emerald-900 {
    background-color: var(--emerald-900);
}

.bg-emerald-800 {
    background-color: var(--emerald-800);
}

/* ===== UTILITY: Borders ===== */
.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

/* ===== UTILITY: Effects ===== */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.backdrop-blur-3xl {
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
}

.opacity-0 {
    opacity: 0;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

/* ===== UTILITY: Transitions ===== */
.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: color 0.3s ease;
}

.transition-opacity {
    transition: opacity 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
    }

    .md\:text-8xl {
        font-size: 6rem;
    }

    .md\:items-center {
        align-items: center;
    }

    .md\:p-20 {
        padding: 5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:hidden {
        display: none;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ===== COMPONENT: Gradients ===== */
.tier-gradient {
    background: linear-gradient(135deg, var(--tier-amber) 0%, var(--amber-600) 100%);
}

.tier-gradient-text {
    background: linear-gradient(135deg, #FFF 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%, var(--amber-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emerald-gradient-text {
    background: linear-gradient(to right, var(--emerald-400), var(--emerald-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== COMPONENT: Glass Navigation ===== */
.glass-nav {
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Nav list reset — prevent browser default bullets */
nav ul,
nav ol,
.nav-menu,
.nav-menu ul,
.mobile-overlay ul,
.mobile-overlay ol,
.menu,
.sub-menu,
#primary-menu,
#mobile-menu-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Desktop Nav Links */
.nav-menu a {
    transition: color 0.3s ease;
}

.nav-menu li.group:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotateX(0);
    pointer-events: auto;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--emerald-950);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 0.75rem;
    transform-origin: top center;
    transform: translateY(-4px) rotateX(-10deg);
}

/* ===== COMPONENT: Premium Card ===== */
.premium-card {
    background: rgba(6, 95, 70, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-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);
}

/* ===== COMPONENT: Hero ===== */
.hero-min-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:not(.active) {
    opacity: 0;
}

/* ===== COMPONENT: Mobile Menu ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(2, 44, 34, 0.98);
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* ===== COMPONENT: Quiz Cards ===== */
.quiz-card {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: var(--emerald-900);
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.5s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.quiz-card:hover {
    border-color: var(--amber-500);
    transform: translateY(-0.5rem);
}

.quiz-card .quiz-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
    transition: opacity 0.3s ease;
}

.quiz-card:hover .quiz-bg {
    opacity: 0.6;
}

.quiz-card .quiz-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--emerald-800), var(--emerald-950));
    transition: transform 0.7s ease;
}

.quiz-card:hover .quiz-gradient {
    transform: scale(1.05);
}

.quiz-card .quiz-arrow {
    opacity: 0;
    transform: translateX(1rem);
    transition: all 0.3s ease;
}

.quiz-card:hover .quiz-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== COMPONENT: Blog Card (page-blog) ===== */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(6, 78, 59, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-0.5rem);
}

.blog-card .blog-img {
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-card .blog-read {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read {
    transform: translateX(0.5rem);
}

/* ===== COMPONENT: Post card on frontpage/index ===== */
.post-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(245, 158, 11, 0.4);
}

.post-card .post-img {
    transition: transform 0.7s ease;
}

.post-card:hover .post-img {
    transform: scale(1.1);
}

.post-card .post-title {
    transition: color 0.3s ease;
}

.post-card:hover .post-title {
    color: var(--amber-500);
}

.post-card .post-gap {
    transition: gap 0.3s ease;
    gap: 0.5rem;
}

.post-card:hover .post-gap {
    gap: 1rem;
}

/* ===== COMPONENT: Sitemap Items ===== */
.sitemap-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.sitemap-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sitemap-item .sitemap-arrow {
    transition: all 0.3s ease;
}

.sitemap-item:hover .sitemap-arrow {
    transform: translateX(0.25rem);
}

.sitemap-item-start {
    display: flex;
    align-items: start;
    gap: 1rem;
}

/* ===== CONTENT: Entry Content ===== */
.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 a {
    color: var(--amber-500);
    text-decoration: underline;
    text-decoration-color: rgba(245, 158, 11, 0.3);
}

.entry-content a:hover {
    text-decoration-color: var(--amber-500);
}

.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;
}

/* WP Block Lists */
.entry-content ul,
.entry-content ul.wp-block-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.entry-content ul li,
.entry-content ul.wp-block-list 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 li:hover,
.entry-content ul.wp-block-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(245, 158, 11, 0.4);
}

.entry-content ul li::before,
.entry-content ul.wp-block-list li::before {
    content: "✓";
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f59e0b;
    font-size: 0.8rem;
    font-weight: 900;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
}

.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;
    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);
}

/* ===== COMPONENT: Comments ===== */
.comments-area {
    margin-top: 5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .comments-area {
        padding: 5rem;
        border-radius: 3rem;
    }
}

.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);
}

/* ===== COMPONENT: Load More Button ===== */
.load-more-btn {
    position: relative;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.load-more-btn:hover {
    background: var(--emerald-600);
    border-color: var(--emerald-500);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== COMPONENT: Pagination ===== */
.tier-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.tier-pagination a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.tier-pagination a:hover {
    color: var(--amber-500);
}

.tier-pagination .current {
    color: var(--amber-500);
}

/* ===== COMPONENT: Social Icons ===== */
.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: inherit;
}

.social-icon:hover {
    background: var(--amber-500);
    color: #000;
}

.social-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ===== COMPONENT: Inline SVG Icons ===== */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.icon-sm svg {
    width: 0.75rem;
    height: 0.75rem;
}

.icon-lg svg {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-xl svg {
    width: 2rem;
    height: 2rem;
}

.icon-2xl svg {
    width: 2.5rem;
    height: 2.5rem;
}

.icon-4xl svg {
    width: 4rem;
    height: 4rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* ===== SPECIAL: Hero responsive text ===== */
.hero-title {
    font-size: 4.5rem;
    line-height: 0.85;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 10rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

/* ===== SPECIAL: Title sizing classes ===== */
.title-5xl {
    font-size: 3rem;
}

.title-4xl {
    font-size: 2.25rem;
}

.title-3xl {
    font-size: 1.875rem;
}

@media (min-width: 768px) {
    .title-5xl-md-8xl {
        font-size: 6rem;
    }

    .title-5xl-md-7xl {
        font-size: 4.5rem;
    }

    .title-4xl-md-7xl {
        font-size: 4.5rem;
    }

    .title-4xl-md-6xl {
        font-size: 3.75rem;
    }

    .title-3xl-md-5xl {
        font-size: 3rem;
    }

    .title-4xl-md-5xl {
        font-size: 3rem;
    }
}

/* ===== SPECIAL: Aspect ratios ===== */
.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-4-3 {
    aspect-ratio: 4 / 3;
}

/* ===== SPECIAL: Cover Image Sizing ===== */
.h-70vh {
    height: 70vh;
}

.h-60vh {
    height: 60vh;
}

.h-40vh {
    height: 40vh;
}

.h-64 {
    height: 16rem;
}

.h-20 {
    height: 5rem;
}

.h-18 {
    height: 4.5rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-full-95 {
    max-width: 95%;
}

/* ===== SPECIAL: Scrollbar ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LEGACY: Tailwind classes used in WordPress DB content ===== */
/* These classes exist in content stored in the WP database (posts/pages) */
/* and must remain defined for backward compatibility. */
.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1 1 0%;
}

.text-pretty {
    text-wrap: pretty;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-12>*+* {
    margin-top: 3rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.w-20 {
    width: 5rem;
}

.w-32 {
    width: 8rem;
}

/* Legacy: fractional widths */
@media (min-width: 768px) {
    .md\:w-32 {
        width: 8rem;
    }

    .md\:w-1\/3 {
        width: 33.333%;
    }

    .md\:w-2\/3 {
        width: 66.666%;
    }

    .md\:aspect-square {
        aspect-ratio: 1 / 1;
    }

    .md\:p-12 {
        padding: 3rem;
    }

    .md\:p-14 {
        padding: 3.5rem;
    }
}

/* Legacy: background/border with opacity values */
.bg-white\/5 {
    background: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
    background: rgba(255, 255, 255, 0.1);
}

.bg-white\/\[0\.03\] {
    background: rgba(255, 255, 255, 0.03);
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.text-white\/40 {
    color: rgba(255, 255, 255, 0.4);
}

.text-white\/50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.bg-amber-500\/10 {
    background: rgba(245, 158, 11, 0.1);
}

.bg-amber-500\/20 {
    background: rgba(245, 158, 11, 0.2);
}

.bg-emerald-500\/20 {
    background: rgba(16, 185, 129, 0.2);
}

.bg-emerald-900\/20 {
    background: rgba(6, 78, 59, 0.2);
}

.border-amber-500\/20 {
    border-color: rgba(245, 158, 11, 0.2);
}

.border-emerald-500\/30 {
    border-color: rgba(16, 185, 129, 0.3);
}

/* Legacy: WP entry-content tables (div-based) */
.entry-content .flex {
    display: flex;
}

.entry-content .flex-col {
    flex-direction: column;
}

.entry-content .flex-shrink-0 {
    flex-shrink: 0;
}

.entry-content .items-center {
    align-items: center;
}

.entry-content .justify-center {
    justify-content: center;
}

.entry-content .gap-6 {
    gap: 1.5rem;
}

.entry-content .gap-8 {
    gap: 2rem;
}

.entry-content .rounded-3xl {
    border-radius: 1.5rem;
}

.entry-content .rounded-2xl {
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .entry-content .md\:flex-row {
        flex-direction: row;
    }

    .entry-content .md\:w-32 {
        width: 8rem;
        flex-shrink: 0;
    }
}

/* ===== PRINT ===== */
@media print {

    .glass-nav,
    .mobile-overlay,
    footer {
        display: none;
    }

    body {
        background: white;
        color: #1a1a1a;
    }
}