/* The Minute NYC - Static Site Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(45, 20%, 97%);
  --foreground: hsl(220, 20%, 10%);
  --primary: hsl(45, 100%, 50%);
  --primary-foreground: hsl(220, 20%, 10%);
  --secondary: hsl(220, 15%, 20%);
  --secondary-foreground: hsl(45, 100%, 50%);
  --muted-foreground: hsl(220, 10%, 40%);
  --border: hsl(45, 20%, 85%);
  --gradient-hero: linear-gradient(135deg, hsl(220, 20%, 10%) 0%, hsl(220, 15%, 18%) 50%, hsl(220, 20%, 10%) 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-accent-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--primary);
}

.hero-accent-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 4px;
  background-color: var(--primary);
}

.logo {
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
  height: 12rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
}

.hero h1 {
  position: relative;
  z-index: 10;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
}

.tagline {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.875rem 1.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: hsl(45, 80%, 60%);
}

/* About Section */
.about {
  position: relative;
  padding: 4rem 1.5rem;
  background-color: var(--background);
}

.corner-accent {
  position: absolute;
  width: 4rem;
  height: 4rem;
  opacity: 0.3;
}

.corner-accent.top-left {
  top: 2rem;
  left: 2rem;
  border-left: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
}

.corner-accent.bottom-right {
  bottom: 2rem;
  right: 2rem;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}

.about-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.role {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary);
}

.bio {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.bio + .bio {
  margin-top: 1.5rem;
}

/* Footer */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: var(--secondary);
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--secondary-foreground);
  font-weight: 500;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.footer a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .tagline {
    font-size: 1.25rem;
  }
  
  .about h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}