/* SHRD Website Styles */
:root {
  --primary: #FF9800;
  --primary-dark: #FFB74D;
  --bg-dark: #1A1A2E;
  --surface-dark: #1C1B1F;
  --surface-light: #252540;
  --text-primary: #E6E1E5;
  --text-muted: #9E9EB8;
  --success: #4CAF50;
  --error: #CF6679;
  --blue: #1976D2;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  border-bottom: 1px solid var(--surface-light);
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.85) 0%, rgba(28, 27, 31, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin-bottom: 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 1rem;
}

.coming-soon {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--surface-light);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Features Section */
.features {
  padding: 3rem 1.5rem;
  background: var(--surface-dark);
}

.features-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface-light);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Page Content (for legal pages) */
.page-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
}

.page-content h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.page-content .last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.page-content h2 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--text-primary);
}

.page-content h3 {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--text-primary);
}

.page-content p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.page-content ul, .page-content ol {
  margin: 0.75rem 0 0.75rem 1.25rem;
  color: var(--text-muted);
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content strong {
  color: var(--text-primary);
}

/* Delete Account Page */
.delete-section {
  max-width: 550px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  text-align: center;
}

.delete-section h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.delete-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.delete-card {
  background: var(--surface-light);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
}

.delete-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.delete-card ol, .delete-card ul {
  margin: 0.75rem 0 1rem 1.25rem;
  color: var(--text-muted);
}

.delete-card li {
  margin-bottom: 0.5rem;
}

.delete-card .note {
  background: rgba(255, 152, 0, 0.1);
  border-left: 3px solid var(--primary);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.delete-card .note p {
  margin: 0;
  font-size: 0.85rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.625rem 1.25rem;
  background: var(--error);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-link:hover {
  background: #E57373;
  color: white;
}

/* Footer */
.footer {
  background: var(--surface-dark);
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--surface-light);
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--surface-light);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 0.625rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 60vh;
    padding: 4rem 1rem 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
  }

  .features {
    padding: 2rem 1rem;
  }

  .page-content {
    padding: 4rem 1rem 2rem;
  }

  .page-content h1 {
    font-size: 1.75rem;
  }

  .delete-section {
    padding: 4rem 1rem 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
