@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(215, 30%, 25%);
}

:root {
  --background: hsl(220, 40%, 13%);
  --foreground: hsl(210, 20%, 95%);
  --card: hsl(220, 35%, 16%);
  --primary: hsl(42, 78%, 55%);
  --primary-foreground: hsl(220, 40%, 10%);
  --muted-foreground: hsl(215, 15%, 65%);
  --border: hsl(215, 30%, 25%);
  --radius: 0.75rem;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

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

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

.anim-fade-up   { animation: fadeInUp    0.6s ease forwards; }
.anim-scale-in  { animation: fadeInScale 0.5s ease 0.3s both; }
.anim-fade      { animation: fadeIn      0.5s ease 0.5s both; }
.anim-fade-up-2 { animation: fadeInUp    0.5s ease 0.6s both; }
.anim-fade-3    { animation: fadeIn      0.5s ease 0.8s both; }

/* Subpage shared */
.page-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid hsl(215, 30%, 25%, 0.4);
}

.page-header a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.2s;
}

.page-header a:hover { opacity: 0.8; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.logo-text span { color: var(--primary); }

.page-main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: text-decoration 0.2s;
}

.back-link:hover { text-decoration: underline; }

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-sections { display: flex; flex-direction: column; gap: 1.25rem; }

.content-sections section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.content-sections section p,
.content-sections section address {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-style: normal;
}

.content-sections section a {
  color: var(--primary);
}

.content-sections section a:hover { text-decoration: underline; }

/* Icon sizing */
.icon-sm { width: 1rem; height: 1rem; display: inline-block; vertical-align: middle; }
.icon-md { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: middle; }
.icon-lg { width: 1.5rem; height: 1.5rem; display: inline-block; vertical-align: middle; }
.icon-xl { width: 1.75rem; height: 1.75rem; display: inline-block; vertical-align: middle; }
