/* styles.css */

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f5f5f5;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #007acc;
  text-decoration: none;
}
.logo-img {
  height: 80px !important;
  max-height: 80px !important;
  width: auto !important;
  margin-right: 8px;
  vertical-align: middle;
}
/* Larger logo on home */
.home-page .logo-img {
  height: 80px !important;
  max-height: 80px !important;
}

/* Hero Section */
.hero {
  position: relative;
  width: 1536px;
  max-width: 100%;
  height: 1024px;
  margin: 0 auto;
  background: url('cover.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
}
.hero-content h1,
.hero-content p {
  color: #ffffff;
}
.hero-btn {
  margin-top: 10px;
}

/* Nav menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: #007acc;
}

/* Features */
.features {
  padding: 4rem 0;
  background: #ffffff;
}
.feature-item {
  text-align: center;
  padding: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #007acc;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn:hover {
  background: #005fa3;
}

/* Download Section */
.download {
  padding: 4rem 0;
  text-align: center;
}

/* Footer */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar, .footer-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-menu, .download-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero {
    height: auto;
  }
}