/* Reset and base styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'JetBrains Mono', monospace;
    color: #800020;
    background: #fffffa;
    scroll-behavior: smooth;
  }
  
  
  /* Logo top-left */
  .logo-top {
    position: fixed;
    top: 2rem;
    left: 2rem;
    max-width: 160px;
    height: auto;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    padding: 0.5rem;
    border-radius: 10px;
  }

  /* Language selector */
  .language-selector {
    display: flex;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 0.5rem;
  }

  .lang-btn {
    background: none;
    border: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #800020;
    opacity: 0.6;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .lang-btn:hover {
    opacity: 0.8;
    background-color: rgba(128, 0, 32, 0.1);
  }

  .lang-btn.active {
    opacity: 1;
    background-color: rgba(128, 0, 32, 0.2);
    font-weight: 600;
  }
  
/* Top bar content container for logo and nav alignment */
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

  /* Navigation bar */
.top-bar {
  position: fixed;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  z-index: 10;
}

/* Hero section fills the viewport */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
  
  /* Rounded futuristic nav */
  .rounded-nav ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    display: flex;
    gap: 2rem;
  }
  
  .rounded-nav li {
    margin: 0;
  }
  
  .rounded-nav a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #800020;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .rounded-nav a:hover {
    opacity: 1;
  }
  
  /* Tagline section */
  .tagline-container {
    position: relative;
    z-index: 5;
    padding: 10rem 2rem 4rem 2rem;
    max-width: 600px;
  }
  
  .hero-tagline {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #800020;
    text-align: left;
    line-height: 1.3;
  }
  
  /* Main content styling */
  .content {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  
  .container {
    max-width: 60vw;
    text-align: right;
    padding: 4rem;
    border-radius: 20px;
  }
  
  .container h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #800020;
    margin-bottom: 2rem;
  }
  
  .container p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #800020;
  }

  .disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(128, 0, 32, 0.2);
  }

  .disclaimer p {
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 0;
  }
  
  .separator {
    height: 8rem;
    width: 100%;
  }
  
  /* Fixed contact link */
  .contact-link {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }
  
  .contact-link a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #800020;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .contact-link a:hover {
    opacity: 1;
  }
  
  .content-section h2 {
    font-size: 2rem;
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
  }
  
  .content-section p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* Page nav dots */
  .page-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: #800020;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2em 0;
    font-size: 0.9rem;
    opacity: 0.6;
  }

  .fullscreen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
  }