/* ====================================
   Angelo Basile Hair Artist - Main Styles
   ==================================== */

/* === CSS Variables === */
:root {
  /* Colors */
  --color-cream: #F5F3EF;
  --color-gold: #b69e59;
  --color-navy: #3D5A6C;
  --color-turquoise: #433A3F;
  --color-green: #1A4D3E;
  --color-text-primary: #2C2C2C;
  --color-text-secondary: #666666;
  --color-white: #FFFFFF;
  --color-light-gray: #AC92A6;
  --color-black: #000000;
  
  /* Typography - System Font Stacks */
  --font-serif: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  
  /* Spacing */
  --section-spacing: 100px;
  --element-spacing: 30px;
  --container-max-width: 1200px;
  --gutter: 50px;
  
  /* Transitions */
  --transition-base: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-primary);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-gold);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* === Container & Layout === */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-spacing) 0;
}

.section-small {
  padding: 60px 0;
}

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

/* === Top Bar === */
.top-bar {
  background-color: #0D0D0D;
  color: var(--color-white);
  font-size: 0.875rem;
  padding: 10px 0;
}

.top-bar-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-bar-social span {
  margin-right: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top-bar-social a {
  color: var(--color-white);
  font-size: 1.2rem;
}

.top-bar-hours {
  color: var(--color-white);
}

.top-bar-right a {
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Header & Navigation === */
/* Navigation styles moved to assets/css/navigation.css for better organization */

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #B89558;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* === Hero Sections === */
.hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero-light {
  background-color: var(--color-cream);
}

.hero-dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.hero-turquoise {
  background-color: var(--color-turquoise);
  color: var(--color-white);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 400;
  opacity: 0.9;
}

.hero-tagline {
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 15px;
}

.hero-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  text-align: center;
  padding: 20px;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  transition: var(--transition-base);
}

.service-icon i {
  font-size: 2rem;
}

.service-card:hover .service-icon {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.05);
}

/* Hero icon styling */
.hero-icon {
  width: 100px;
  height: 100px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
}

.hero-icon i {
  font-size: 2.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-family: var(--font-sans);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* === Content Cards === */
.two-col-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.content-card {
  padding: 50px 40px;
  border-radius: 8px;
}

.content-card-light {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
}

.content-card-dark {
  background-color: var(--color-green);
  color: var(--color-white);
}

.content-card h3 {
  margin-bottom: 25px;
  font-size: 1.75rem;
}

.content-card ul {
  list-style: none;
  margin: 20px 0;
}

.content-card ul li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.content-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

/* === Timeline / Milestones === */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.timeline-card {
  text-align: center;
  padding: 30px;
}

.timeline-year {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 10px 25px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-radius: 4px;
}

.timeline-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text-primary);
}

.timeline-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* === Team Section === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.team-member {
  text-align: center;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--color-light-gray);
  margin-bottom: 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-style: italic;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.team-title {
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-contact {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

/* === Testimonials === */
.testimonial {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  padding: 50px 40px;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text-primary);
  margin-bottom: 25px;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* === Footer === */
.footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer-column p,
.footer-column a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-white);
  margin-bottom: 8px;
  display: block;
}

.footer-column a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition-base);
}

/* Footer social icons (white on dark background) */
.footer .social-icon {
  color: var(--color-white);
  background-color: transparent;
}

.footer .social-icon:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

/* Kontakt page social icons (dark on gold background) */
.social-icon-kontakt {
  background-color: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  color: var(--color-navy) !important;
}

.social-icon-kontakt:hover {
  background-color: var(--color-navy) !important;
  border-color: var(--color-navy) !important;
  color: var(--color-gold) !important;
}

.social-icon-kontakt i {
  color: inherit !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

/* === Image Placeholders === */
.image-placeholder {
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-style: italic;
  text-align: center;
  padding: 20px;
}

/* === Responsive Design === */
@media (max-width: 991px) {
  :root {
    --section-spacing: 70px;
    --gutter: 30px;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
    --gutter: 20px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .two-col-cards {
    grid-template-columns: 1fr;
  }
  
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .top-bar-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
}

/* ====================================
   UI ENHANCEMENTS - Phase 1 & 2
   ==================================== */

/* === Enhanced Button Animations === */
.btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0); /* Enable hardware acceleration */
}

/* Shimmer effect on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
  left: 100%;
}

/* Enhanced primary button with gradient */
.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, #a48a4f 100%);
  box-shadow: 0 4px 10px rgba(182, 158, 89, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a48a4f 0%, var(--color-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(182, 158, 89, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(182, 158, 89, 0.2);
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(182, 158, 89, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(182, 158, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(182, 158, 89, 0); }
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
}

/* === Enhanced Card Interactions === */
.service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 8px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card:hover h3 {
  color: var(--color-gold);
}

.content-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.timeline-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* === Enhanced Accessibility === */
/* Focus improvements for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 10000;
  transition: top 0.3s ease;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }

  .service-card, .content-card, .timeline-card {
    border: 2px solid var(--color-text-primary);
  }
}

/* === Loading States === */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--color-light-gray);
  border-top: 2px solid var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Button loading state */
.btn.loading {
  color: transparent;
  position: relative;
}

.btn.loading::after {
  border-color: rgba(255,255,255,0.3);
  border-top-color: white;
}

/* Skeleton loading for content */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.skeleton-text.wide { width: 80%; }
.skeleton-text.medium { width: 60%; }
.skeleton-text.narrow { width: 40%; }

/* === Scroll Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add delays for staggered effect */
.stagger-item:nth-child(1).visible { transition-delay: 0.1s; }
.stagger-item:nth-child(2).visible { transition-delay: 0.2s; }
.stagger-item:nth-child(3).visible { transition-delay: 0.3s; }
.stagger-item:nth-child(4).visible { transition-delay: 0.4s; }
.stagger-item:nth-child(5).visible { transition-delay: 0.5s; }
.stagger-item:nth-child(6).visible { transition-delay: 0.6s; }

/* === Progressive Image Loading === */
img {
  transition: opacity 0.3s ease;
}

img:not(.loaded) {
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

img.error {
  opacity: 0.5;
  filter: grayscale(1);
}

/* Loading placeholder animation */
.image-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  min-height: 200px;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* === Micro-interactions === */
/* Smooth link transitions */
a {
  position: relative;
}

a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

a:not(.btn):hover::after {
  width: 100%;
}

/* Remove underline animation from buttons and cards */
.btn::after,
.service-card a::after,
.content-card a::after {
  display: none;
}

/* Icon rotation on hover */
.service-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

/* === Enhanced Form Styling === */
.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--color-light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-sans);
  background: var(--color-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(182, 158, 89, 0.1);
  outline: none;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Form validation states */
.form-input.valid {
  border-color: #27ae60;
}

.form-input.invalid {
  border-color: #e74c3c;
}

.form-error {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-input.invalid + .form-error {
  display: block;
}

/* === Mobile Menu Enhancements === */
/* Mobile navigation styles moved to assets/css/navigation.css for better organization */

/* === Additional Polish === */
/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}

::-moz-selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* Custom scrollbar (Webkit browsers) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a48a4f;
}

/* === Responsive Enhancements === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 40px 40px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 0 0 25px 0;
    width: 100%;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-light-gray);
    width: 100%;
    display: block;
  }

  /* Disable hover effects on mobile */
  .service-card:hover,
  .content-card:hover,
  .timeline-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* === Print Styles === */
@media print {
  .top-bar,
  .nav-menu,
  .btn,
  .skip-link {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    page-break-after: avoid;
  }
}