/* Callie Website */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');



/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1C1C1E;
  background: #F2F2F7;
  min-height: 100vh;
}

/* Typography - explicit colors */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #1C1C1E;
}

p {
  color: #444444;
  margin-bottom: 1rem;
}

a {
  color: #008F85;
  text-decoration: underline;
}

a:hover {
  color: #006B64;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: #1C1C1E;
  color: white;
  padding: 12px 16px;
  z-index: 100;
  text-decoration: none;
}

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

/* Hero (home page) */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #4ECDC4 0%, #00A69C 100%);
  padding: 32px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero .logo {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.hero h1 {
  font-family: 'Alex Brush', cursive;
  font-size: 4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.tagline {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 48px;
  font-weight: 400;
}

/* Hero Footer */
.footer {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  font-size: 0.875rem;
}

.footer-contact {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
  color: white;
}

/* Content pages (Privacy, Terms) */

.page-content {
  background: #F2F2F7;
  min-height: 100vh;
  padding: 48px 24px 24px;
}

.page-header {
  text-align: center;
  margin-bottom: 48px;
}

.page-header .logo {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.page-header .logo-link {
  display: inline-block;
  text-decoration: none;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #1C1C1E;
}

.page-header .updated {
  font-size: 0.875rem;
  color: #666666;
}

/* Content sections */
.content-section {
  max-width: 680px;
  margin: 0 auto 40px;
}

.content-section h2 {
  margin-bottom: 16px;
  color: #1C1C1E;
  font-size: 1.35rem;
  font-weight: 600;
}

.content-section p {
  color: #444444;
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-section ul {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-section li {
  color: #444444;
  margin-bottom: 10px;
  line-height: 1.7;
  position: relative;
}

.content-section li::before {
  content: "•";
  color: #00A69C;
  font-weight: bold;
  position: absolute;
  left: -16px;
}

.content-section strong {
  color: #1C1C1E;
  font-weight: 600;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: #008F85;
}

.back-link::before {
  content: "←";
}

/* Page Footer */
.page-footer {
  background: #1C1C1E;
  padding: 24px;
  text-align: center;
  margin-top: 48px;
}

.page-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.page-footer .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.page-footer .footer-links a:hover {
  color: white;
}

.page-footer .footer-links a[aria-current="page"] {
  color: #00D4C8;
}

.page-footer .footer-contact {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-footer .footer-contact a {
  color: #00D4C8;
}

/* Dark mode */

@media (prefers-color-scheme: dark) {
  body {
    background: #1C1C1E;
    color: #F5F5F7;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
  }
  
  p {
    color: #B8B8BC;
  }
  
  a {
    color: #00D4C8;
  }
  
  a:hover {
    color: #4ECDC4;
  }
  
  .page-content {
    background: #1C1C1E;
  }
  
  .page-header h1 {
    color: #FFFFFF;
  }
  
  .page-header .updated {
    color: #A1A1A6;
  }
  
  .content-section h2 {
    color: #FFFFFF;
  }
  
  .content-section p,
  .content-section li {
    color: #B8B8BC;
  }
  
  .content-section strong {
    color: #FFFFFF;
  }
  
  .content-section li::before {
    color: #00D4C8;
  }
  
  .back-link {
    color: #00D4C8;
  }
  
  .page-footer {
    background: #2C2C2E;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .hero .logo {
    width: 100px;
    height: 100px;
  }
  
  .page-content {
    padding: 24px 16px;
  }
  
  .page-header .logo {
    width: 60px;
    height: 60px;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
}

/* Print */
@media print {
  .hero { background: white; min-height: auto; }
  .hero h1, .tagline { color: black; text-shadow: none; }
  .footer, .page-footer { display: none; }
  .back-link, .skip-link { display: none; }
}
