body {
  margin: 0;
  padding: 0;
  font-family: 'Allura', cursive;
  transition: none;
  background-color: #cff7ff;
}

/* Header Bar */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(21, 0, 143);
  color: white;
  padding: 10px 20px;
}

.header-bar h3,
.header-bar h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 200;
}

.header-bar h4 {
  font-family:'Times New Roman', Times, serif;
  color: white;
}

.header-bar h3 {
  font-family: 'Allura', cursive;
  color: white;
}

/* Navigation bar container */
.main-nav {
  background-color: #654bf8;
  padding:0px;
  transition: none;
}

/* Flex layout for nav */
.nav-content {
  display: flex;
  align-items: center;
  justify-content:flex-start;
}

/* Logo */
.logo img {
  height: auto;
  width: 100px;
  margin: right 5 px;

}

/* Navigation links */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.main-nav li {
  display: inline;
}

.main-nav a {
  font-family: "Menlo", Courier, monospace;
  font-size: 1rem;
  color: black;
  text-decoration: none;
}

.main-nav a:hover {
  background-color: #000000;
  color: white;
  border-radius: 4px;
  padding: 2px 6px;
}

/* Header links */
.header-bar a {
  color: white;
  text-decoration: none;
}

.header-bar a:hover {
  background-color: #333;
  border-radius: 4px;
  padding: 2px 6px;
}



.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: "Menlo", Courier, monospace;
  font-size: 1rem;
  color: black;
  text-decoration: none;
  transition: none;
}

.nav-links a:hover {
  background-color: #000;
  color: white;
}

.nav-actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  transition: none;
}

.search-box {
  padding: 5px 10px;
  font-family: Menlo, monospace;
  font-size: 0.9rem;
}

.cart-link {
  font-size: 2.2rem;
  text-decoration: none;
  color: black;
  margin-right: 20px;
}

.cart-link:hover {
  color: white;
  background-color: black;
  border-radius: 4px;
  padding: 2px 4px;
}

.image-container {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.image-text {
  position: absolute;
  top: 50%;
  left: 5%; 
  transform: translateY(-50%);
  color: white;
  font-size: 4em;
  font-weight: bold;
  font-family: 'Russo One', sans-serif;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
  text-align: left;
  max-width: 40%;
}
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

.image-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  opacity: 0;
  animation: slideFadeIn 1.5s ease-out forwards;
  
  color: white;
  font-size: 4em;
  font-family: 'Russo One', sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
  text-align: left;
  max-width: 45%;
  letter-spacing: 1px;
}

.explore-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.explore-box {
  padding: 20px 40px;
  background-color: #1f0133;
  color: #fff;
  text-decoration: none;
  font-style: normal;
  font-size: 1.2rem;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.explore-box:hover {
  background-color: #444;
}

.footer {
  background-color: #f2f1fc;
  color: #000000;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #000000;
  margin: 0 15px;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #4000c9;
}
.social-media {
  margin-top: 15px;
}

.social-media a img {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.social-media a img:hover {
  transform: scale(1.2);
}

