/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: rgb(255, 255, 255);
  background: url('img/background.gif') center center / cover no-repeat fixed;
  overflow-x: hidden;
}

/* Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 40px;
  background: transparent;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 80px;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
}

.logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.bot-text {
  color: #ffd700;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 100%;
  margin-left: auto;
  margin-right: 20%;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 120px;
  text-align: center;
  color: white;
  transform: translateZ(0);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight {
  color: #ffd700;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Button */
.btn {
  background: #ffd700;
  color: #333;
  padding: 14px 36px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e6c200;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 36px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

/* Main sections */
main section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Page content styles */
.page-content {
  padding-top: 120px;
  min-height: 100vh;
}

.page-content h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  text-align: center;
  color: white;
}

.content-wrapper {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.content-wrapper h2 {
  color: #ffd700;
  margin-bottom: 20px;
  font-size: 2rem;
}

.content-wrapper h3 {
  color: #ffd700;
  margin: 25px 0 15px 0;
  font-size: 1.5rem;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.content-wrapper ul, .content-wrapper ol {
  margin: 20px 0;
  padding-left: 30px;
}

.content-wrapper li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

/* Command list styles */
.command-list {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.command-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
}

.command-item h3 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.usage {
  display: block;
  background: rgba(255, 215, 0, 0.2);
  padding: 8px 12px;
  border-radius: 5px;
  font-family: monospace;
  font-size: 0.9rem;
  margin-top: 10px;
  color: #ffd700;
}

/* Contact methods styles */
.contact-methods {
  display: grid;
  gap: 30px;
  margin: 30px 0;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.contact-item h3 {
  color: #ffd700;
  margin-bottom: 15px;
}

/* FAQ styles */
.faq-section {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.faq-item h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

/* Setup guide styles */
.setup-guide {
  background: rgba(255, 215, 0, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid #ffd700;
}

.setup-guide ol {
  margin: 20px 0;
  padding-left: 30px;
}

.setup-guide li {
  margin-bottom: 15px;
  line-height: 1.6;
}

main section h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
}

main section ul {
  list-style: disc inside;
  color: #eee;
  font-size: 1.2rem;
  line-height: 1.6;
}

main section p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #eee;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  color: #ccc;
  background: rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: #ccc;
}

.social-link:hover {
  background: #ffd700;
  color: #333;
  transform: translateY(-2px);
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 15px;
  }

  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
}

