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

:root {
  --primary-blue: #0ea5e9;
  --theme-blue: #00d2ff;
  --bg-color: #f8fafc;
  --text-main: #334155;
  --text-muted: #64748b;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a:hover {
  filter: brightness(0.8);
}

.navbar {
  background-color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--theme-blue);
}

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

.main-content {
  flex: 1;
}

/* Coming Soon Hero */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-color) 0%, #e0f2fe 100%);
}

.hero h1 {
  font-size: 4rem;
  color: var(--theme-blue);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

.legal-container h1 {
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  letter-spacing: -1px;
}

.legal-container > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-container h2 {
  color: #0f172a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.legal-container h3 {
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.legal-container p, .legal-container ul {
  margin-bottom: 1rem;
}

.legal-container ul {
  padding-left: 2rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
}

.placeholder {
  background-color: #fef3c7;
  color: #b45309;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 600;
  font-size: 0.9em;
}

.footer {
  background-color: var(--theme-blue);
  color: #0f172a; /* Dark text for contrast against bright cyan */
  text-align: center;
  padding: 2.5rem;
  margin-top: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #0f172a;
}

.footer-copy {
  color: #334155;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .legal-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  color: var(--text-main);
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 4px solid var(--theme-blue);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  max-width: 700px;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--theme-blue);
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  background-color: var(--theme-blue);
  color: #0f172a;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.2s, transform 0.1s;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn:active {
  transform: scale(0.97);
}

.cookie-btn.secondary {
  background-color: transparent;
  color: var(--text-muted);
  border: 2px solid #e2e8f0;
}

.cookie-btn.secondary:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

