/**
 * Modern CSS for Zahnarztpraxis am Kantplatz
 * Mobile-first responsive design with WCAG 2.1 compliance
 */

/* CSS Variables */
:root {
  --primary-color: #8f6f2f; /* Darkened from #bd9c67 for WCAG AA contrast (5.25:1) */
  --primary-color-light: #bd9c67; /* Original gold for backgrounds */
  --text-color: #3e2d21;
  --bg-color: #ffffff;
  --bg-light: #f0f0f0;
  --border-color: #bfbfbf;
  --shadow-color: rgba(0, 0, 0, 0.15);
  --link-hover: #6d5422; /* Darkened for better contrast */
  --font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --max-width: 1200px;
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--link-hover);
  text-decoration: underline;
}

a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.site-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 0 20px var(--shadow-color);
  position: relative;
  overflow-x: hidden;
  overflow-y: visible !important;
}

/* Header */
.site-header {
  background: var(--bg-color);
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.header-info {
  flex: 1;
  text-align: right;
  font-size: 14px;
  line-height: 1.5;
}

.doctor-name {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 0.9em;
  color: var(--primary-color);
  font-style: italic;
}

.address {
  color: var(--text-color);
  margin-bottom: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 3px;
}

.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

/* Navigation */
.main-navigation {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.main-navigation ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
}

.main-navigation li {
  flex: 1 1 auto;
  min-width: max-content;
}

.main-navigation a {
  display: block;
  padding: var(--spacing-md) var(--spacing-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.main-navigation a:hover, .main-navigation a:focus {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-bottom-color: var(--text-color);
}

.main-navigation a.active {
  background: var(--primary-color);
  color: white;
  border-bottom-color: var(--text-color);
}

/* Main Content */
main {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) var(--spacing-md);
}

/* Hero Image */
.hero-image {
  width: 100%;
  margin-bottom: var(--spacing-lg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 10px var(--shadow-color);
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Main Content */
.main-content {
  flex: 1;
}

.main-content ul, .main-content ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.main-content li {
  margin-bottom: var(--spacing-xs);
}

/* Sub-Navigation */
.sub-navigation {
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-lg);
}

.sub-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.sub-navigation a {
  display: block;
  padding: var(--spacing-sm);
  background: white;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.sub-navigation a:hover, .sub-navigation a:focus {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding-left: var(--spacing-md);
}

.sub-navigation a.active {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
}

/* Sidebar */
.sidebar {
  background: var(--bg-light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
}

.contact-box {
  background: var(--primary-color);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  text-align: center;
  color: white;
}

.contact-box h2 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

.phone-number a {
  color: white;
  text-decoration: none;
}

.phone-number a:hover {
  text-decoration: underline;
}

.opening-hours {
  text-align: center;
}

.opening-hours h3 {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

.opening-hours p {
  margin: 0;
  font-size: 0.95rem;
}

/* Team Images */
.team-image {
  margin: var(--spacing-lg) 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 10px var(--shadow-color);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--bg-light);
  font-size: 0.9rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin: 0;
  padding: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumbs li::after {
  content: '›';
  margin-left: var(--spacing-xs);
  color: var(--primary-color);
}

.breadcrumbs li:last-child::after {
  content: '';
}

/* Footer */
.site-footer {
  background: var(--text-color);
  color: white;
  padding: var(--spacing-lg) var(--spacing-md);
  margin-top: auto;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer a {
  color: var(--primary-color);
}

.site-footer a:hover, .site-footer a:focus {
  color: white;
}

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

/* Responsive Design */
@media (min-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr 300px;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  .logo img {
    max-width: 350px;
  }
  .sub-navigation ul {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 var(--spacing-lg);
  }
  .content-wrapper {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
  .logo img {
    max-width: 413px;
  }
}

/* Phone Button */
.phone-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 8px var(--shadow-color);
}

.phone-button:hover,
.phone-button:focus {
  background: var(--link-hover);
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--shadow-color);
  text-decoration: none;
}

.phone-button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

.phone-button svg {
  width: 24px;
  height: 24px;
}

/* Desktop-only elements */
.desktop-only {
  display: block;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  .header-info {
    order: -1;
    flex: 1 1 100%;
    text-align: center;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    transition: right 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    box-shadow: -5px 0 15px var(--shadow-color);
  }
  .main-navigation.active {
    right: 0;
  }
  .main-navigation ul {
    flex-direction: column;
    padding: var(--spacing-xl) 0;
  }
  .main-navigation li {
    width: 100%;
  }
  .main-navigation a {
    text-align: left;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--bg-light);
    border-left: 4px solid transparent;
  }
  .main-navigation a.active, .main-navigation a:hover, .main-navigation a:focus {
    border-left-color: var(--primary-color);
    border-bottom-color: var(--bg-light);
  }
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  .sidebar {
    order: -1;
  }
}

/* Print Styles */
@media print {
  .site-header, .main-navigation, .sub-navigation, .sidebar, .mobile-menu-toggle, .skip-link {
    display: none;
  }
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
  }
  a {
    text-decoration: underline;
  }
  .main-content {
    width: 100%;
  }
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

@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;
  }
}

@media (prefers-contrast: high) {
  :root {
    --primary-color: #8b6914;
    --text-color: #000000;
    --border-color: #000000;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #1a1a1a;
    --bg-light: #2a2a2a;
    --text-color: #e0e0e0;
    --border-color: #444;
    --shadow-color: rgba(0, 0, 0, 0.5);
  }
  .site-header, .main-navigation, .contact-box {
    background: var(--bg-color);
  }
  .site-footer {
    background: #000;
  }
}

/* ============================================
   MODERN ENHANCEMENTS 2025
   ============================================ */

/* Treatment Cards with Modern Effects */
.treatment-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(189, 156, 103, 0.15);
  border-color: var(--primary-color);
}

.treatment-link {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
}

.treatment-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.treatment-link:hover::after {
  width: calc(100% - 20px);
}

/* Hero Image with Overlay Effect */
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(189, 156, 103, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-image img {
  transition: transform 0.6s ease;
  display: block;
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Modern Button Styles */
button, .button {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

button::before, .button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button:active::before, .button:active::before {
  width: 300px;
  height: 300px;
}

/* Elevated Card Style for Sidebar */
.sidebar {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.contact-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #9a7d50 100%);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-2px);
}

/* Pulse Animation for Phone Button */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.phone-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary-color);
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  z-index: -1;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Image Hover Effects */
.main-content img {
  transition: all 0.4s ease;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-content img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(189, 156, 103, 0.2);
}

/* Modern Link Underline Animation */
.main-content a:not(.treatment-link) {
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 100%);
  background-size: 0 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

.main-content a:not(.treatment-link):hover,
.main-content a:not(.treatment-link):focus {
  background-size: 100% 2px;
  text-decoration: none;
}

/* Footer Modern Style */
.site-footer {
  background: linear-gradient(135deg, #3e2d21 0%, #2a1f16 100%);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.site-footer a {
  transition: all 0.3s ease;
  display: inline-block;
}

.site-footer a:hover {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .treatment-card {
    padding: 1.5rem;
  }
  
  .hero-image {
    border-radius: 0;
  }
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
  .treatment-card {
    background: var(--bg-light);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
  }
  
  .treatment-card:hover {
    box-shadow: 0 8px 24px rgba(189, 156, 103, 0.25);
  }
  
  .hero-image::before {
    background: linear-gradient(135deg, rgba(189, 156, 103, 0.2) 0%, transparent 50%);
  }
}

/* Performance: GPU Acceleration */
.phone-button,
.treatment-card,
.hero-image img,
.main-content img {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ============================================
   Contact Form Styles
   ============================================ */

.contact-form {
  max-width: 700px;
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.required {
  color: #d32f2f;
  font-weight: 700;
}

.optional {
  color: #666;
  font-weight: 400;
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(189, 156, 103, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #d32f2f;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  display: none;
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.checkbox-group {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  flex: 1;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.checkbox-label a:hover {
  text-decoration: none;
}

.form-note {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.submit-button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(189, 156, 103, 0.3);
}

.submit-button:hover:not(:disabled) {
  background-color: #A88A59;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(189, 156, 103, 0.4);
}

.submit-button:active:not(:disabled) {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button-loader {
  display: inline-block;
}

.form-message {
  display: none;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.form-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact Info Grid */
.contact-info-grid > div {
  transition: all 0.3s ease;
}

.contact-info-grid > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(189, 156, 103, 0.15);
}

/* Accessibility: Focus Indicators */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.checkbox-label input:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* Form Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message {
  animation: slideIn 0.3s ease-out;
}

/* ============================================
   Patient Reviews Styles
   ============================================ */

.reviews-section {
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 2px solid #eee;
}

.reviews-section > p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 767px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(189, 156, 103, 0.15);
  border-color: var(--primary-color);
}

.review-rating {
  margin-bottom: 1rem;
}

.stars {
  color: var(--primary-color);
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: #333;
  line-height: 1.7;
  margin: 1rem 0;
  min-height: 100px;
}

.review-author {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.review-author strong {
  color: var(--primary-color);
}

.review-summary {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
}

.review-summary strong {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Quote decoration for reviews */
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: rgba(189, 156, 103, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Animations for review cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card {
  animation: fadeInUp 0.6s ease-out;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
