/*
Theme Name: Cofre Anão
Theme URI: https://cofreano.com
Author: Cofre Anão
Author URI: https://cofreano.com
Description: Dark Fantasy RPG theme for Finance & Tax Course platform - Dwarven Vault inspired
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cofre-anao
Tags: dark, fantasy, education, finance, one-page
*/

/* ========================================
   CSS Variables & Design System
   ======================================== */
:root {
  --stone-dark: 130 20% 6%;
  --stone-charcoal: 150 18% 11%;
  --emerald-glow: 142 85% 45%;
  --gold-aged: 43 55% 62%;
  --parchment: 35 45% 87%;
  --border-dark: 150 25% 20%;
  
  --background: var(--stone-dark);
  --foreground: 0 0% 88%;
  --card: var(--stone-charcoal);
  --card-foreground: 0 0% 88%;
  --primary: var(--emerald-glow);
  --primary-foreground: 30 10% 10%;
  --secondary: var(--gold-aged);
  --secondary-foreground: 30 10% 10%;
  --muted: 150 10% 20%;
  --muted-foreground: 0 0% 64%;
  --accent: var(--gold-aged);
  --accent-foreground: 30 10% 10%;
  --border: var(--border-dark);
  --ring: var(--emerald-glow);
}

/* ========================================
   Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: hsl(var(--stone-dark));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Glassmorphism */
.glass {
  background: hsla(var(--stone-charcoal) / 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsla(var(--border-dark) / 0.5);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, hsl(var(--emerald-glow)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, hsl(var(--gold-aged)) 0%, #fff8e1 50%, hsl(var(--gold-aged)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow Effects */
.glow-emerald {
  box-shadow: 0 0 30px hsla(var(--emerald-glow) / 0.3);
}

.glow-gold {
  box-shadow: 0 0 20px hsla(var(--gold-aged) / 0.2);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-rune {
  background: linear-gradient(135deg, hsl(var(--emerald-glow)) 0%, hsl(142 85% 35%) 100%);
  color: hsl(30 10% 10%);
  border-color: hsl(var(--emerald-glow));
}

.btn-rune:hover {
  box-shadow: 0 0 25px hsla(var(--emerald-glow) / 0.5), 0 0 50px hsla(var(--emerald-glow) / 0.3);
  transform: translateY(-2px);
}

.btn-rune-outline {
  background: transparent;
  color: hsl(var(--gold-aged));
  border-color: hsl(var(--gold-aged));
}

.btn-rune-outline:hover {
  background: hsla(var(--gold-aged) / 0.1);
  box-shadow: 0 0 20px hsla(var(--gold-aged) / 0.3);
}

.btn-rune-ghost {
  background: transparent;
  color: hsl(var(--foreground));
  border-color: transparent;
}

.btn-rune-ghost:hover {
  color: hsl(var(--gold-aged));
  background: hsla(var(--gold-aged) / 0.1);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: hsla(var(--stone-charcoal) / 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid hsla(var(--border-dark) / 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, hsl(var(--emerald-glow)) 0%, hsl(142 85% 35%) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--gold-aged));
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}

.navbar-link:hover {
  color: hsl(var(--gold-aged));
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsla(var(--stone-charcoal) / 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid hsla(var(--border-dark) / 0.5);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.mobile-menu-link {
  font-size: 1rem;
  color: hsl(var(--foreground));
  padding: 0.5rem 0;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsla(var(--stone-dark) / 0.7) 0%,
    hsla(var(--stone-dark) / 0.85) 50%,
    hsl(var(--stone-dark)) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(var(--gold-aged) / 0.1);
  border: 1px solid hsla(var(--gold-aged) / 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: hsl(var(--gold-aged));
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem;
  background: hsla(var(--stone-charcoal) / 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(var(--border-dark) / 0.5);
  border-radius: 1rem;
}

@media (min-width: 640px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--emerald-glow));
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 2rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   Section Styles
   ======================================== */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: hsla(var(--gold-aged) / 0.1);
  border: 1px solid hsla(var(--gold-aged) / 0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: hsl(var(--gold-aged));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   Pillars Section
   ======================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background: hsl(var(--stone-charcoal));
  border: 1px solid hsla(var(--border-dark) / 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.pillar-card:hover {
  border-color: hsla(var(--emerald-glow) / 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px hsla(var(--emerald-glow) / 0.1);
}

.pillar-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, hsla(var(--emerald-glow) / 0.2) 0%, hsla(var(--emerald-glow) / 0.05) 100%);
  border: 1px solid hsla(var(--emerald-glow) / 0.3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--emerald-glow));
}

.pillar-title {
  font-size: 1.25rem;
  color: hsl(var(--gold-aged));
  margin-bottom: 0.75rem;
}

.pillar-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ========================================
   Skill Trees Section
   ======================================== */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.skill-card {
  background: hsl(var(--stone-charcoal));
  border: 1px solid hsla(var(--border-dark) / 0.5);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.skill-card:hover {
  border-color: hsla(var(--gold-aged) / 0.5);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px hsla(0 0% 0% / 0.3);
}

.skill-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.skill-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.skill-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--stone-charcoal)) 0%, transparent 100%);
}

.skill-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.skill-badge {
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
}

.skill-badge-level {
  background: hsla(var(--emerald-glow) / 0.2);
  color: hsl(var(--emerald-glow));
  border: 1px solid hsla(var(--emerald-glow) / 0.3);
}

.skill-badge-type {
  background: hsla(var(--gold-aged) / 0.2);
  color: hsl(var(--gold-aged));
  border: 1px solid hsla(var(--gold-aged) / 0.3);
}

.skill-content {
  padding: 1.5rem;
}

.skill-title {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.skill-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.6;
}

.skill-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid hsla(var(--border-dark) / 0.5);
}

.skill-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.skill-xp {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--emerald-glow));
}

/* ========================================
   Guild Master Section
   ======================================== */
.guild-master {
  background: linear-gradient(135deg, hsla(var(--stone-charcoal)) 0%, hsla(var(--stone-dark)) 100%);
  border-top: 1px solid hsla(var(--border-dark) / 0.5);
  border-bottom: 1px solid hsla(var(--border-dark) / 0.5);
}

.guild-master-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .guild-master-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}

.guild-master-image {
  display: flex;
  justify-content: center;
}

.guild-master-portrait {
  position: relative;
  width: 16rem;
  height: 16rem;
}

@media (min-width: 1024px) {
  .guild-master-portrait {
    width: 20rem;
    height: 20rem;
  }
}

.guild-master-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid hsl(var(--gold-aged));
}

.guild-master-glow {
  position: absolute;
  inset: -1rem;
  border: 2px solid hsla(var(--emerald-glow) / 0.3);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

.guild-master-content h2 {
  font-size: 2rem;
  color: hsl(var(--gold-aged));
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .guild-master-content h2 {
    font-size: 2.5rem;
  }
}

.guild-master-title {
  font-size: 1rem;
  color: hsl(var(--emerald-glow));
  margin-bottom: 1.5rem;
}

.guild-master-bio {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 2rem;
}

.guild-master-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gm-stat {
  text-align: center;
  padding: 1rem;
  background: hsla(var(--stone-dark) / 0.5);
  border: 1px solid hsla(var(--border-dark) / 0.5);
  border-radius: 0.75rem;
}

.gm-stat-value {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--emerald-glow));
}

.gm-stat-label {
  font-size: 0.625rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: hsl(var(--parchment));
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px hsla(0 0% 0% / 0.3);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  border-radius: 0.5rem;
  pointer-events: none;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: hsl(var(--gold-aged));
  font-family: 'Cinzel', serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: hsl(30 10% 20%);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid hsla(30 10% 50% / 0.3);
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, hsl(var(--emerald-glow)) 0%, hsl(142 85% 35%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: hsl(30 10% 10%);
  font-size: 0.875rem;
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: hsl(30 10% 15%);
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: hsl(30 10% 40%);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: hsl(var(--stone-charcoal));
  border-top: 1px solid hsla(var(--border-dark) / 0.5);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, hsl(var(--emerald-glow)) 0%, hsl(142 85% 35%) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--gold-aged));
}

.footer-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.footer-title {
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--gold-aged));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: hsl(var(--emerald-glow));
}

.footer-newsletter p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.625rem 1rem;
  background: hsl(var(--stone-dark));
  border: 1px solid hsla(var(--border-dark));
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(var(--emerald-glow));
}

.newsletter-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(var(--border-dark) / 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(var(--stone-dark) / 0.5);
  border: 1px solid hsla(var(--border-dark));
  border-radius: 0.5rem;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: hsl(var(--emerald-glow));
  color: hsl(var(--emerald-glow));
}

/* ========================================
   Animations
   ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ========================================
   WordPress Specific
   ======================================== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
