/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px;
  }
  
  h1, h2, h3 {
    font-family: 'Hepta Slab', serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: lowercase;
  }
  
  h2 {
    font-size: clamp(4rem, 12vw, 8rem);
    margin-bottom: 4rem;
  }
  
  section {
    padding: 12rem 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Hero Logo Section */
  .hero-logo-section {
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    color: #000000;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
  }
  
  /* Video Section */
  .video-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero-logo {
    height: clamp(80px, 12vw, 120px);
    width: auto;
    margin-bottom: 2rem;
    opacity: 0.95;
  }
  
  .hero-logo-section .tagline {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #666;
    font-style: italic;
  }
  
  /* Navigation */
  .main-nav {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .nav-link {
    color: #ccc;
    text-decoration: none;
    margin: 0 2rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .nav-link:hover {
    color: #fff;
  }
  
  /* About */
  .about p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ccc;
  }
  
  .about ul {
    list-style: none;
    padding: 0;
  }
  
  .about li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #fff;
  }
  
  /* Projects */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .project-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
  }
  
  /* Support */
  .support p {
    margin-bottom: 1rem;
    color: #ccc;
  }
  
  .support-email {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .support-email:hover {
    border-bottom-color: #fff;
    transform: translateY(-2px);
  }
  
  /* Footer */
  footer {
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
  }
  
  .footer-logo {
    margin-bottom: 1rem;
  }
  
  .footer-logo-img {
    height: 24px;
    width: auto;
    filter: invert(0.6);
    opacity: 0.8;
  }
  
  .legal-links {
    margin-top: 0.5rem;
  }
  
  .legal-links a {
    margin: 0 0.5rem;
    color: #aaa;
    text-decoration: none;
  }
  
  .legal-links a:hover {
    color: #fff;
  }
  
  /* Legal Pages */
  .legal-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .back-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: color 0.3s ease;
  }
  
  .back-link:hover {
    color: #fff;
  }
  
  .legal-header h1 {
    font-size: 3rem;
    margin: 1rem 0;
  }
  
  .last-updated {
    color: #888;
    font-size: 0.9rem;
  }
  
  .legal-content {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #fff;
  }
  
  .legal-content p, .legal-content li {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .legal-content ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
  
  .legal-content a {
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
  }
  
  .legal-content a:hover {
    border-bottom-color: #fff;
  }
  