/* ============================================
   INDEX.CSS - Avalehe Eraldi Stiilid
   Duaal-teemaline kujundus: IT + Kokandus
   ============================================ */

/* ============================================
   VÄRVISKEEMID
   ============================================ */
:root {
  /* IT Värvid */
  --tech-primary: #00d4ff;
  --tech-secondary: #0099ff;
  --tech-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --tech-glow: rgba(0, 212, 255, 0.3);
  
  /* Kokanduse Värvid */
  --food-primary: #ff6b35;
  --food-secondary: #f7931e;
  --food-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --food-glow: rgba(255, 107, 53, 0.3);
  
  /* Neutraalsed */
  --bg-dark: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-hover: #242424;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --border-color: rgba(255, 255, 255, 0.1);
  
  /* Animatsioonid */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   HERO SECTION - DUAAL DISAIN
   ============================================ */
.hero-dual {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 2rem;
}

/* Animated Background */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, var(--tech-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, var(--food-glow) 0%, transparent 50%);
  animation: bgPulse 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes bgPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  width: 100%;
  align-items: center;
}

/* Side Panels */
.hero-side {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  opacity: 0;
  animation: slideInSide 1s ease-out 0.5s forwards;
}

@keyframes slideInSide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-side:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-left {
  border-top: 3px solid var(--tech-primary);
}

.hero-right {
  border-top: 3px solid var(--food-primary);
}

.side-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.side-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--tech-primary), var(--food-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-left .side-title {
  background: var(--tech-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-right .side-title {
  background: var(--food-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
  padding-left: 25px;
}

.side-list li:last-child {
  border-bottom: none;
}

.side-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--tech-primary);
  transition: var(--transition-smooth);
}

.hero-right .side-list li::before {
  color: var(--food-primary);
}

.side-list li:hover {
  color: var(--text-primary);
  padding-left: 30px;
}

/* Hero Center Content */
.hero-center {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-greeting {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-name {
  background: linear-gradient(135deg, var(--tech-primary), var(--food-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--tech-primary), var(--food-primary));
  animation: nameUnderline 2s ease-in-out infinite;
}

@keyframes nameUnderline {
  0%, 100% {
    transform: scaleX(0.3);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.highlight-it {
  color: var(--tech-primary);
  font-weight: 600;
  text-shadow: 0 0 20px var(--tech-glow);
}

.highlight-food {
  color: var(--food-primary);
  font-weight: 600;
  text-shadow: 0 0 20px var(--food-glow);
}

.hero-quote {
  background: var(--bg-card);
  border-left: 4px solid var(--tech-primary);
  border-right: 4px solid var(--food-primary);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 600px;
  backdrop-filter: blur(10px);
}

.hero-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero .btn-icon {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.btn-hero span:last-child {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--tech-gradient);
  color: var(--text-primary);
  box-shadow: 0 5px 20px var(--tech-glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px var(--tech-glow);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--food-gradient);
  color: var(--text-primary);
  box-shadow: 0 5px 20px var(--food-glow);
}

.btn-secondary:hover {
  box-shadow: 0 8px 30px var(--food-glow);
  transform: translateY(-3px);
}

/* Hero Signature */
.hero-signature {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-signature img {
  max-width: 200px;
  height: auto;
  filter: brightness(0.9);
  transition: var(--transition-smooth);
}

.hero-signature img:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.scroll-arrow {
  font-size: 1.5rem;
  color: var(--tech-primary);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--tech-primary), var(--food-primary));
  transition: left 0.6s;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--tech-primary);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--tech-primary), var(--food-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SKILLS SHOWCASE
   ============================================ */
.skills-showcase {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.section-header-modern {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title-modern {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--tech-primary), var(--food-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-icon {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.2em;
}

.section-subtitle-modern {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.skills-dual-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
}

.skills-panel {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.skills-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--tech-primary), transparent);
  animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.skills-culinary::before {
  background: linear-gradient(90deg, transparent, var(--food-primary), transparent);
}

.skills-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.panel-header {
  margin-bottom: 2rem;
  text-align: center;
}

.panel-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.panel-icon {
  font-size: 2rem;
}

.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-item {
  opacity: 0;
  animation: slideInLeft 0.6s ease-out forwards;
}

.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.2s; }
.skill-item:nth-child(3) { animation-delay: 0.3s; }
.skill-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.skill-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.skill-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  width: var(--progress, 0);
  background: var(--tech-gradient);
  border-radius: 10px;
  position: relative;
  transition: width 1s ease-out;
  animation: progressGlow 2s ease-in-out infinite;
}

.skills-culinary .skill-progress {
  background: var(--food-gradient);
}

@keyframes progressGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  }
}

/* ============================================
   UPDATES SECTION - MODERNIZED
   ============================================ */
.updates-section-modern {
  padding: 6rem 2rem;
  background: var(--bg-card);
  position: relative;
}

.admin-btn-modern {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  z-index: 10;
}

.admin-btn-modern:hover {
  background: var(--tech-primary);
  color: var(--bg-dark);
  border-color: var(--tech-primary);
  transform: rotate(90deg);
}

.updates-list-modern {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.update-card {
  background: var(--bg-dark);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--tech-primary);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}


/* PARANDATUD - Ilma vilkuva gradientita */
.update-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--tech-primary); /* AINULT ÜKSAINUS VÄRV */
  transition: width 0.5s ease-out, opacity 0.5s ease-out;
}

.update-card:hover::before {
  width: 100%;
  opacity: 0.03; /* Veel õhem */
}

.update-card:hover {
  transform: translateX(5px);
  box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.5);
  border-left-color: var(--tech-primary);
}

.btn-modern-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--bg-dark);
  color: var(--text-primary);
  border: 2px solid var(--tech-primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-modern-secondary:hover {
  background: var(--tech-primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--tech-glow);
}

/* ============================================
   CERTIFICATES SECTION - MODERNIZED
   ============================================ */
.certificates-section-modern {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.certificates-grid-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
}

.certificate-card-modern {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
}

.certificate-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: var(--tech-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 2;
  box-shadow: 0 5px 20px var(--tech-glow);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.certificate-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border-color: var(--tech-primary);
}

.certificate-image-modern {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.certificate-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.certificate-card-modern:hover .certificate-image-modern img {
  transform: scale(1.1);
}

.certificate-content-modern {
  padding: 2rem;
}

.certificate-content-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.certificate-provider,
.certificate-course,
.certificate-instructor,
.certificate-hours,
.certificate-date {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.certificate-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--tech-gradient);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.certificate-link-modern:hover {
  box-shadow: 0 5px 20px var(--tech-glow);
  transform: translateX(5px);
}

.link-arrow {
  transition: var(--transition-smooth);
}

.certificate-link-modern:hover .link-arrow {
  transform: translateX(5px);
}

/* ============================================
   FUN FACTS SECTION - MODERNIZED
   ============================================ */
.facts-section-modern {
  padding: 6rem 2rem;
  background: var(--bg-card);
}

.facts-grid-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.fact-card-modern {
  background: var(--bg-dark);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.fact-card-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--tech-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s;
}

.fact-card-modern:hover::before {
  opacity: 1;
}

.fact-card-modern:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--food-primary);
}

.fact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: factIconBounce 2s ease-in-out infinite;
}

@keyframes factIconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fact-card-modern p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER - MODERNIZED
   ============================================ */
.footer-modern {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem;
}

.footer-content-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-modern {
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--tech-primary), var(--food-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--tech-primary);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.social-links-modern {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link-modern {
  width: 45px;
  height: 45px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link-modern:hover {
  background: var(--tech-primary);
  border-color: var(--tech-primary);
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 20px var(--tech-glow);
}

.social-link-modern img {
  filter: brightness(0.7);
  transition: var(--transition-smooth);
}

.social-link-modern:hover img {
  filter: brightness(1.2);
}

.footer-bottom-modern {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.footer-bottom-modern p {
  margin: 0.5rem 0;
}

.footer-made-with {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-side {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .skills-dual-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-dual {
    min-height: auto;
    padding: 4rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-hero {
    width: 100%;
    justify-content: center;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .skills-dual-container,
  .certificates-grid-modern,
  .facts-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section-title-modern {
    font-size: 1.8rem;
  }
  
  .admin-btn-modern {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-side {
    padding: 1.5rem;
  }
  
  .side-title {
    font-size: 1.2rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .skills-panel {
    padding: 1.5rem;
  }
  
  .certificate-card-modern,
  .fact-card-modern {
    padding: 1.5rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
a:focus,
button:focus {
  outline: 2px solid var(--tech-primary);
  outline-offset: 3px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
  display: none !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--tech-primary), var(--food-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.no-updates {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.no-updates::after {
  content: '...';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% {
    content: '.';
  }
  40% {
    content: '..';
  }
  60%, 100% {
    content: '...';
  }
}