@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&display=swap');

:root {
  --primary: #0a1f44;
  --text: #0a1f44;
  --muted: #3a5a7a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-weight: 300;
  background: #e8f4f6;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(10, 31, 68, 0.15);
  overflow: hidden;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('bbb.jpg') center / cover no-repeat;
  z-index: -2;
}

.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(180, 220, 230, 0.78);
  z-index: -1;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: #0a1f44;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-links a {
  color: #0a1f44;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #005f8a; }

.auth-buttons {
  display: flex;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.btn {
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-weight: 300;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  transition: all 0.2s;
}
.btn-outline {
  border: 1px solid #0a1f44;
  color: #0a1f44;
}
.btn-outline:hover {
  background: #0a1f44;
  color: #e8f4f6;
}
.btn-solid {
  background: #0a1f44;
  color: #e8f4f6;
}
.btn-solid:hover { background: #005f8a; }

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('aaa.jpeg') center / cover no-repeat;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #0a1f44;
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.hero p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  color: #0a1f44;
  opacity: 0.9;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a1f44;
  font-weight: 300;
}
.section p { color: #3a5a7a; max-width: 700px; font-weight: 300; }

.footer {
  border-top: 1px solid rgba(10, 31, 68, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #3a5a7a;
  font-size: 0.95rem;
  font-weight: 300;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #e8f4f6;
}
.auth-card {
  background: rgba(180, 220, 230, 0.5);
  border: 1px solid rgba(10, 31, 68, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
}
.auth-card h1 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 300;
  color: #0a1f44;
}
.auth-card input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid rgba(10, 31, 68, 0.3);
  background: rgba(255, 255, 255, 0.7);
  color: #0a1f44;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
}
.auth-card button {
  width: 100%;
  padding: 0.85rem;
  background: #0a1f44;
  color: #e8f4f6;
  border: none;
  border-radius: 6px;
  font-weight: 300;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.auth-card button:hover { background: #005f8a; }
.auth-card .link {
  display: block;
  text-align: center;
  margin-top: 1.2rem;
  color: #3a5a7a;
  font-size: 0.95rem;
  font-weight: 300;
}
.auth-card .link a { color: #0a1f44; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .navbar { padding: 0.8rem 1.2rem; }
}