html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #000;
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === NAVBAR === */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: #ffaa00;
  border: none;
  cursor: pointer;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 15px 20px;
  position: relative;
  z-index: 10;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.navbar nav {
  display: flex;
  gap: 20px;
  align-items: center;
}


.navbar nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: #ff9900;
  border-bottom: 2px solid #ff9900;
}

.youtube-btn {
  display: inline-flex;
  align-items: center;
  background-color: #FF7A00;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.youtube-btn img {
  width: 18px;
  height: 18px;
}


/* === HERO SECTION === */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 60px 40px;
}

.hero-text {
  max-width: 600px;
  text-align: center;
}

.hero-text h1 {
  color: orange;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: orange;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* === CUSTOM BUILDS === */
.custom-builds {
  padding: 60px 40px 40px;
}

.custom-builds h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

.build-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.build {
  max-width: 360px;
  text-align: center;
}

.build img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.build p {
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 600;
}

/* === VIDEO SECTION === */
.video-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2rem;
}

.video-info {
  flex: 1 1 60%;
  max-width: 600px;
}

.video-box {
  flex: 1 1 40%;
  max-width: 400px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-section {
  background-image: url('images/contact-bg.jpeg');
  padding: 100px 20px;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.contact-btn {
  background-color: #ffaa00;
  color: #000;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #e69500;
}

/* === Contact page === */
.contact-help {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.contact-help h2 {
  font-size: 2.5rem;
  color: #ff7a00;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}

.contact-help > p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 25px;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #5865F2;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px; 
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 8px;
  transition: background 0.3s ease;
}

.discord-btn:hover {
  background-color: #4752c4;
}

.discord-btn img {
  width: 24px;
  height: 20px;
  display: inline-block;
}

.username {
  font-size: 0.95rem;
  color: #bbbbbb;
  margin-bottom: 40px;
}

.contact-left {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.contact-left h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff9900;
  margin-bottom: 15px;
  padding-left: 2px; 
}

.contact-left h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff9900;
  margin-bottom: 15px;
}

.help-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #dddddd;
  position: relative;
  padding-left: 34px;
}

.help-list .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.note {
  font-size: 0.95rem;
  color: #bbbbbb;
  line-height: 1.5;
}

.note a {
  color: #ff9900;
  font-weight: 500;
  text-decoration: underline;
}

.note a:hover {
  color: #ffffff;
}

/* === About page === */

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 32px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: orange;
  text-align: center;
}


h1 {
  color: orange;
  font-size: 86px;
  margin-bottom: 0.2rem;
}

h2 {
  color: #72faaa;
  font-size: 48px;
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;      
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: orange;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-row:first-child .dot {
  background-color: #ff7a05; 
  margin-top: 0; 
}

.timeline-row:first-of-type > .side.left:nth-child(2) {
  position: relative;
  top: -10px;
}

.timeline-row {
  display: flex;
  align-items: flex-start; 
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center; 
}

.side {
  flex: 1 1 40%;
  max-width: 40%;
}

.side.left, 
.side.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 40px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #72faaa;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.top-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ff7a05;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;  
  z-index: 20;
}

.icon {
  max-width: 60px;
  margin: 0.5rem auto;
}

.text p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0.5rem 0;
  color: white;
}

/* === CUSTOM BUILDS === */
.custom-builds {
  padding: 60px 40px 40px;
}

.custom-builds h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

.build-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.build {
  max-width: 360px;
  text-align: center;
}

.build img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.build p {
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 600;
}

/* === VIDEO SECTION === */
.video-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2rem;
}

.video-info {
  flex: 1 1 60%;
  max-width: 600px;
}

.video-box {
  flex: 1 1 40%;
  max-width: 400px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-section {
  background-image: url('images/contact-bg.jpeg');
  padding: 100px 20px;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2rem;
  color: #ffaa00;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.contact-btn {
  background-color: #ffaa00;
  color: #000;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #e69500;
}

/* === Contact page === */
.contact-help {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.contact-help h2 {
  font-size: 2.5rem;
  color: #ff7a00;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}

.contact-help > p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 25px;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #5865F2;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px; 
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 8px;
  transition: background 0.3s ease;
}

.discord-btn:hover {
  background-color: #4752c4;
}

.discord-btn img {
  width: 24px;
  height: 20px;
  display: inline-block;
}

.username {
  font-size: 0.95rem;
  color: #bbbbbb;
  margin-bottom: 40px;
}

.contact-left {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.contact-left h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff9900;
  margin-bottom: 15px;
  padding-left: 2px; 
}

.contact-left h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff9900;
  margin-bottom: 15px;
}

.help-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #dddddd;
  position: relative;
  padding-left: 34px;
}

.help-list .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.note {
  font-size: 0.95rem;
  color: #bbbbbb;
  line-height: 1.5;
}

.note a {
  color: #ff9900;
  font-weight: 500;
  text-decoration: underline;
}

.note a:hover {
  color: #ffffff;
}

/* === About page === */

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 32px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: orange;
  text-align: center;
}


h1 {
  color: orange;
  font-size: 86px;
  margin-bottom: 0.2rem;
}

h2 {
  color: #72faaa;
  font-size: 48px;
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;      
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: orange;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-row:first-child .dot {
  background-color: #ff7a05; 
  margin-top: 0; 
}

.timeline-row:first-of-type > .side.left:nth-child(2) {
  position: relative;
  top: -10px;
}

.timeline-row {
  display: flex;
  align-items: flex-start; 
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center; 
}

.side {
  flex: 1 1 40%;
  max-width: 40%;
}

.side.left, 
.side.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 40px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #72faaa;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.top-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ff7a05;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;  
  z-index: 20;
}

.icon {
  max-width: 60px;
  margin: 0.5rem auto;
}

.text p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0.5rem 0;
  color: white;
}

.gallery-page {
  padding: 80px 20px 60px;
  text-align: center;
  background-color: #000;
}

.gallery-page h1 {
  font-size: 42px;
  color: #ffaa00;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.build-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0 40px;
}

.build-card {
  background-color: #111;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 170, 0, 0.1);
  transition: transform 0.3s ease;
  width: 340px;
}

.build-card:hover {
  transform: translateY(-5px);
}

.build-card iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.build-card p {
  padding: 15px;
  font-size: 14px;
  color: #eee;
  text-align: left;
}
/* Footer */
.footer {
  background-color: #ffaa00;
  text-align: center;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-header h3 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.footer-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.stat-icon:hover {
  transform: scale(1.1);
}

.stat-title {
  font-size: 14px;
  color: #222;
  margin-bottom: 5px;
}

.stat-number {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.copyright {
  margin-top: 30px;
  font-size: 14px;
  color: #444;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    color: #ffaa00;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: relative;
    z-index: 1001;
  }

  .navbar nav {
    display: none; 
    flex-direction: column;
    align-items: center;
    background-color: #111;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #333;
    z-index: 999;
  }

   .navbar nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 10px 0;
  }

  .youtube-btn {
    width: 90%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 1rem;
    margin-top: 10px;
  }

  /* Fix for timeline sizes on mobile */
  .timeline-container h1 {
    font-size: 40px;
  }

  .timeline-container h2 {
    font-size: 28px;
  }

  .timeline .side h3,
  .timeline .text p {
    font-size: 16px;
  }

  .timeline .text p {
    line-height: 1.4;
  }
}
