/* Base Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black; /* Black background */
    color: #fff; /* White text */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  
/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5vw 1vw;
  background-color: #333;
  color: white;
  position: fixed;
  top: 0;
  width: 80vw;
  z-index: 1000;
  margin: 5vh 8vw;
  border-radius: 20px;
}

  
  
  /* Logo Styling */
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12vw;
    height: 12vw;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    font-weight: bold;
    color: #fff;
    z-index: 1001;
    background-image: url("../assets/logo.png");
    background-position: center;
    background-size: cover;
    border: white solid 2px;
  }
  
  /* Navbar Links Styling */
  .navbar .nav-links {
    display: flex;
    gap: 2vw;
  }
  
  .navbar .left-links {
    margin-right: auto;
    padding-right: 6vw;
  }
  
  .navbar .right-links {
    margin-left: auto;
    padding-left: 6vw;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    padding: 0.5vw 1vw;
    font-size: 1.2vw;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #00acee;
  }
  
  /* Media Query for smaller screens */
  @media (max-width: 768px) {
    .logo {
      width: 15vw;
      height: 15vw;
      font-size: 3vw;
    }
  
    .navbar a {
      font-size: 3.5vw;
    }
  }
  
  @media (orientation: portrait){
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5vw 1vw;
      background-color: #333;
      color: white;
      position: fixed;
      top: 0;
      width: 90vw;
      z-index: 1000;
      margin: 2.5vh 4vw;
      border-radius: 10px;
      height: 5vh;
    }
  
    .navbar a {
      color: white;
      text-decoration: none;
      padding: 0.5vw 1vw;
      font-size: 3.5vw;
      font-weight: bold;
      transition: color 0.3s;
    }
  }
  
  /* Hero Section */
  #hero {
    background: url('../assets/ceo.png') no-repeat center center/contain;
    color: black;
    text-shadow: 10px black;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    margin-top: 10vh;
  }
  
  #hero h2 {
    font-size: 3em;
  }
  
  #hero p {
    font-size: 1.5em;
    margin-bottom: 5vh;
  }
  
  /* Footer Section */
  footer {
    background: #003366;
    color: white;
    padding: 2px 0;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
  }
  
  footer .footer {
    max-width: 100vw;
    padding: 0 20px;
  }
  
  footer nav a {
    color: white;
    text-decoration: none;
  }
  
  footer nav a:hover {
    text-decoration: underline;
  }
  
  footer p {
    margin: 0;
    font-size: 1em;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .logo {
      width: 15vw;
      height: 15vw;
    }
  
    .navbar a {
      font-size: 3.5vw;
    }
  
    #hero h2 {
      font-size: 2.5em;
    }
  
    #hero p {
      font-size: 1.2em;
    }
  }



  /* website */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    
}


::-webkit-scrollbar {
  display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
*{
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}
.container {
    max-width: 90vw;
    margin: 15vh 0vw;
    padding: 20px;
}

@media (orientation:portrait){
  .container {
    max-width: 90vw;
    margin: 10vh 0vw;
    padding: 20px;
}
}

header {
    text-align: center;
    margin-bottom: 50px;
}
h1 {
    font-size: 2.5rem;
    color: #00bfff; /* Light Blue */
    text-shadow: 0 0 2px #00bfff, 0 0 2px #00bfff, 0 0 2px #00bfff;
}
.catalog {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.catalog-item {
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 191, 255, 0.3);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (orientation:landscape) {
  .catalog-item {
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 191, 255, 0.3);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 20vw;
}
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.6);
    text-shadow: 0 0 1px #00bfff, 0 0 2px #00bfff;
}
.catalog-item h3 {
    color: #00bfff; /* Light Blue */
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 0 1px #00bfff, 0 0 1px #00bfff;
}
.catalog-item p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 10px;
}
.catalog-item .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00bfff;
}
.catalog-item ul {
    padding-left: 20px;
}
.catalog-item ul li {
    color: #bbb;
    list-style:none;
}
@media (max-width: 768px) {
    .catalog {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .catalog {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2rem;
    }
}