/* Import the Google Font */
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px; /* Adjust as needed */
}

.fancy-text {
  font-family: 'Russo One', sans-serif; /* Futuristic and bold font */
  font-size: 3em; /* Adjust size as needed */
  color: #6495ED; /* Bright neon color for a vaporwave feel */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* Dark shadow for better contrast */
  margin: 0;
  letter-spacing: 1px; /* Adjust spacing for a more pronounced effect */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #000; /* Vaporwave background color */
  color: #fff; /* White text color for contrast */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent header background */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  z-index: 1000; /* Ensure header is on top */
}

.logo img {
  max-height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover {
  color: #f0f0f0;
  text-shadow: 0 0 10px #ff00ff; /* Vaporwave neon effect */
}

.content-section {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

h1, h2 {
  margin: 0;
  font-size: 3em;
}

p {
  font-size: 1.2em;
}

@media (max-width: 768px) {
  h1, h2 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }
}

/* Background Video */
#background-video {
  position: fixed; /* Fix the video to the background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire viewport while preserving aspect ratio */
  z-index: -1; /* Ensure the video is behind all other content */
}

#console-section {
  background: #222; /* Dark background for the console section */
  padding: 0; /* Remove padding if you don't want extra space around the section */
  text-align: center;
  position: relative;
}

/* Console Section Styling */
#console-section {
  background: #222; /* Dark background for the console section */
  padding: 0; /* Remove padding around the section */
  margin: 0; /* Remove default margin */
  position: relative; /* Ensure it positions children correctly */
}

/* Adjusting Console Card to move it up */
.console-card {
  background: #000;
  border: 1px solid #333;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 400px;
  margin: 0 auto; /* Center card horizontally */
  padding: 15px;
  color: #0f0; /* Neon green text */
  position: absolute; /* Allows precise positioning */
  top: 1490px; /* Move card up, adjust as needed */
  left: 50%;
  transform: translateX(-50%); /* Center card horizontally */
  z-index: 1; /* Ensure the card is above other content */
}

.console-header {
  background: #333;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #444;
}

.console-buttons {
  display: flex;
  gap: 5px;
}

.button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.red {
  background: #ff5f56;
}

.yellow {
  background: #ffbe56;
}

.green {
  background: #27c93f;
}

.console-title {
  font-weight: bold;
}

.console-body {
  padding: 10px;
  line-height: 1.6;
}

.command {
  color: #00ff00; /* Neon green command text */
  font-weight: bold;
}

.response {
  color: #dcdcdc; /* Light gray response text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .console-card {
    width: 90%;
    padding: 10px;
    top: -100px; /* Adjust top positioning for smaller screens */
  }
}

/* Gallery Section Styling */
.gallery-text {
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  background: #333; /* Optional: background color for the text area */
  color: #fff; /* Text color */
  border-radius: 8px; /* Optional: rounded corners */
}

/* Gallery Images Container */
.gallery-images {
  margin-top: -250px; /* Adjust this value to move the gallery images down */
}

/* Gallery Grid Layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Increase min-width to make images larger */
  gap: 20px; /* Increase space between images if needed */
  padding: 20px;
}

/* Style for each image figure */
.gallery figure {
  margin: 0;
  position: relative;
}

.gallery img {
  width: 100%; /* Ensure images fill their container */
  height: auto;
  display: block;
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: shadow effect */
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

.gallery img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Style for image captions */
.gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  color: #fff;
  padding: 10px;
  text-align: center;
  border-bottom-left-radius: 8px; /* Optional: rounded corners matching image */
  border-bottom-right-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease; /* Fade-in effect */
}

.gallery figure:hover figcaption {
  opacity: 1; /* Show caption on hover */
}

/* Container Styling */
.container {
  text-align: center;
  position: relative; /* Allows for absolute positioning of children */
  margin-top: 50px; /* Adjust this value to move the entire container up or down */
}

/* Heading Styling */
h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Card Container Styling */
.card-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between cards */
  flex-wrap: wrap;
  margin-top: -500px; /* Adjust this value to move the cards up or down */
}

/* Card Styling */
.card {
  background: #ffffff00;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 150px; /* Card width */
  text-align: center;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card a {
  text-decoration: none;
  color: inherit;
}

.card img {
  width: 100px; /* Icon size */
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.card p {
  font-size: 1em;
  margin: 0;
}

/* Card Hover Effects */
.card:hover {
  transform: scale(1.05); /* Slight zoom effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow effect */
}

/* Container Styling */
.container {
  text-align: center;
  position: relative; /* Allows for absolute positioning of children */
}

/* Card Container Styling */
.card-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between cards */
  flex-wrap: wrap;
  position: absolute; /* Allows for precise positioning */
  top: 150px; /* Adjust this value to move the cards up or down */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
}