body {
  background-image: url('../images/kosmos.jpg'); /* adjust path based on your CSS file location */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #f0f0f0; /* soft white text for readability */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.header-text {
  text-align: center;
  padding: 2rem;
  border: 6px solid cyan; /* border around entire block */
  border-radius: 16px;     /* softened corners */
  width: fit-content;
  margin: 3rem auto;       /* centers horizontally */
  background-color: #111;  /* optional dark backdrop */
  box-shadow: 0 0 100px rgba(0, 255, 255, 0.6); /* neon glow */
}

.header-text h1,
.header-text p {
  color: white;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.7); /* glow around letters */
  margin: 0.5rem 0;
}
.header-bg {
  display: block;
  width: 100%;         /* Stretch to container width */
  max-width: 1400px;   /* Optional: keep it from blowing up */
  height: auto;        /* Maintain aspect ratio */
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;      /* Center it */
}

.center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height for vertical centering */
}
.home-welcome {
  background-color: #0a0a0a;              /* dark site backdrop */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.intro-text {
  background-color: #111;                /* solid dark block */
  border: 2px solid cyan;
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  color: white;
  align-items: center;
  text-align: center;
    margin: 0 auto; /* centers the block */
}

.intro-text h2 {
  color: cyan;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  font-family: 'Orbitron', sans-serif; /* or whatever matches your build vibe */
}
.intro-text p {
  margin: 0.5rem 0;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  font-family: 'Orbitron', sans-serif; /* or whatever matches your build vibe */
}

/* Navbar styles */
/* The navbar is styled to be centered, with links that have a neon-like glow effect on hover */
/* The links are designed to be fully rounded with a border, and they change color on hover for better interactivity */


.navbar a {
  display: inline-block;
  padding: 0.5em 1.5em;
  margin: 0.5em;
  border: 2px solid rgba(0, 255, 255, 0.6);
  border-radius: 999px; /* fully rounded */
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
}

.navbar a:hover {
  background-color: #f0f0f0;
  color: #333;
}
.navbar {
  display: flex;
  justify-content: center; /* or space-around / space-between */
  align-items: center;
  gap: 1rem; /* spacing between links */
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  padding: 1rem;
}
.navbar a {
  padding: 0.5rem 1.2rem;
  border-radius: 999px; /* oval shape */
  background-color: #333;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}
.navbar a:hover {
  background-color: #555;
}

.navbar a:hover {
  box-shadow: 0 4px 12px rgba(214, 207, 20, 0.2);
  transform: scale(1.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* bout meh */
/* About Me Section */
/* This section is styled to be visually appealing with a background image, centered text, and a border around the text box */
/* The section is designed to be responsive, with a maximum width for the text box and padding for spacing */

.about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-image: url('../images/aboutme.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  max-width: 740px; /* match or slightly exceed the text box width */
  margin: 0 auto;
  border: 2px solid cyan; /* border around the entire section */
}

.about-text-box {
  background-color: rgba(189, 184, 184, 0.7);
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  width: 100%;
  border: 6px solid cyan; /* border around the text box */
}

.contact-section {
  padding: 60px 20px;
  background-color: transparent; /* or keep #0a0a0a if needed for contrast */
  display: flex;
  justify-content: center;
}

.contact-box {
  background-color: #111;
  border: 2px solid cyan;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  width: 100%;
  max-width: 700px;
}

/* Input + Textarea Fields */
.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid cyan;
  background-color: #111;
  color: rgba(247, 254, 255, 0.651);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  font-family: 'Orbitron', sans-serif;
}

.contact-box input:focus,
.contact-box textarea:focus {
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.4);
  outline: none;
}

/* Label Styling */
.contact-box label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
  color: cyan;
}

/* Checkbox and Newsletter */
.contact-box input[type="checkbox"] {
  margin-right: 8px;
}

/* Submit Button */
.contact-box button {
  background-color: cyan;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}




/* 🚀 Unified Gallery Section */
.truck-gallery {
  padding: 60px 20px;
 
  color: white;
  text-align: center;
  background-image: url('../images/your-glow-bg.jpg'); /* optional bg */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* 🎛 Card Grid */
.truck-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* 🔩 Individual Cards */
.truck-card {
  width: 300px;
  padding: 20px;
  background-color: #111;
  border: 2px solid cyan;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.truck-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 100px rgba(0, 255, 255, 0.4);
}

/* 🖼 Images */
.truck-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

/* 🔗 Links */
.truck-card a {
  text-decoration: none;
  color: cyan;
  font-weight: bold;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.truck-card a:hover {
  text-shadow: 0 0 28px cyan;
  
}

/* 📱 Mobile styles */
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .truck-card {
    width: 100%;
  }

  .truck-card img {
    height: auto;
  }

  .intro-text {
    padding: 20px;
  }

  .header-text {
    width: 90%;
  }
}

/* 📱 Small Tablet styles */
@media (min-width: 481px) and (max-width: 768px) {
  .truck-card {
    width: 48%;
  }
}

/* 💻 Desktop styles */
@media (min-width: 769px) {
  .truck-card {
    width: 32%;
  }

  .main-content-area {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar a {
    width: 100%;
    text-align: center;
  }
}
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px; /* optional for breathing room */
}

body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
}

/* 🧩 Product Detail Section */
.product-detail {
  background-color: #111; /* match your dark theme */
  border: 2px solid cyan;
  border-radius: 12px;
  padding: 40px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  color: white;
  text-align: center;
}

.product-detail img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}

.product-detail h2 {
  font-family: 'Orbitron', sans-serif;
  color: cyan;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.product-detail p {
  font-family: 'Roboto', sans-serif;
  margin-top: 1rem;
  line-height: 1.6;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.3);
}

.research-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.research-topic {
  background-color: #1e1e1e; /* Match your dark theme */
  border: 6px solid cyan;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.research-topic:hover {
  transform: translateY(-4px);
}

.research-topic h2 {
  color: #00ffff; /* Or your accent color */
  margin-bottom: 0.5rem;
}

.research-topic p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

header {
  max-width: 800px;         /* Or whatever fits your layout */
  margin: 2rem auto;        /* Centers it horizontally */
  padding: 1rem 2rem;       /* Adds breathing room */
  background-color: #3c22d3;
 
  border: 6px solid cyan;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

header h1 {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 0.5rem;
}

header p {
  color: #aaa;
  font-size: 1rem;
}

.hotrod-card {
  background-color: #1a0000;
  border: 2px solid cyan;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hotrod-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 100px rgba(255, 0, 0, 0.6);
}
.hotrod-card video {
  max-width: 100%;
  width: 480px;         /* or 360px, depending on your layout */
  display: block;
  margin: 0 auto;       /* centers the video horizontally */
  border-radius: 8px;   /* optional styling */
  box-shadow: 0 0 10px rgba(0,0,0,0.3); /* optional depth */
}
.hotrod-card iframe {
  max-width: 100%;
  width: 480px;         /* match your video width */
  display: block;
  margin: 0 auto;       /* centers the iframe */
  border-radius: 8px;   /* optional styling */
  box-shadow: 0 0 10px rgba(0,0,0,0.3); /* optional depth */
}
.content-window {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
.hotrod-showcase h2 {
  text-align: center;
<<<<<<< HEAD
}
.game-wrapper {
  width: 300px;
  height: 300px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  background-color: #222;
  border: 2px solid #555;
}
.cell {
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
}

#game-launcher {
  background: #3c22d3; /* dark theme base */
  color: #f0f0f0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
  border: 6px solid cyan;
}

#game-launcher h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif; /* or your site’s header font */
  letter-spacing: 1px;
  
}

#game-launcher button {
  background: #111;
  color: #fff;
  border: 6px solid cyan;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
 
}

#game-launcher button:hover {
  background: #22d36c;
=======
>>>>>>> a76eca3a49774eff1a1838d50a2133e881b2f84f
}