/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 0;
  z-index: 1000;
  text-align: center;
}
.navbar nav a {
  color: #fff;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar nav a:hover {
  color: #069DDE;
}

/* Sections */
.section {
  padding: 100px 20px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Sections */
.hero {
  height: 100vh;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.hero.company {
  background: none;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-logo {
  width: 320px;
  max-width: 80%;
  margin-bottom: 20px;
}
.hero-buttons {
  margin-top: 20px;
}
.play-badge {
  height: 60px;
}

/* Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}
.styled-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Screenshots */
.screenshots {
  background-color: #141414;
}
.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery img {
  width: 30%;
  min-width: 240px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.8);
}

/* About Section */
.about p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #111;
  padding: 50px 20px;
  text-align: center;
}
.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}
.footer-links {
  margin-bottom: 15px;
}
.footer-links a {
  color: #999;
  margin: 0 12px;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #069DDE;
}

.video-wrapper:hover {
  box-shadow: 0 0 40px rgba(6, 157, 222, 0.5);
  transform: scale(1.03);
}

.founder-photo {
  width: 160px;
  border-radius: 50%;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.founder-caption {
  text-align: center;
  font-size: 1rem;
  color: #aaa;
}

.footer-legal {
  font-size: 0.8rem;
  margin-top: 10px;
  color: #777;
}
.footer-legal a {
  color: #777;
  margin: 0 5px;
}
.footer-legal a:hover {
  color: #fff;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.8s; }

/* Responsive */
@media (max-width: 768px) {
  .gallery img {
    width: 90%;
  }
  .hero-logo {
    width: 70%;
  }
}
