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

:root {
  --primary: #FF416C;
  --primary-hover: #FF4B2B;
  --bg-color: #0f172a;
  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --card-bg: rgba(30, 41, 59, 0.7);
  --card-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(15, 23, 42, 0.6);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(255, 65, 108, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 75, 43, 0.15), transparent 25%);
  background-attachment: fixed;
}

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

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

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary), var(--primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 15px;
}

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

.lang-switch {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--card-border);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  background: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 60px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 0.8s ease-out;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeUp 1s ease-out;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(45deg, var(--primary), var(--primary-hover));
  color: white !important;
  font-weight: 700;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(255, 65, 108, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1.2s ease-out;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 65, 108, 0.4);
}

/* Content Pages */
.page-container {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 40px;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  animation: fadeUp 0.6s ease-out;
}

.page-container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.page-container .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 20px;
}

.page-container h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: #fff;
}

.page-container p, .page-container ul {
  margin-bottom: 15px;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.page-container ul {
  padding-left: 20px;
}

.page-container li {
  margin-bottom: 8px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: auto;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .page-container { margin: 100px 20px 40px; padding: 25px; }
  .nav-links { display: none; } /* Add hamburger later if needed, or keep simple */
}
