/* shops.css */

/* General Styles */

body {
  font-family: Arial, sans-serif;
  background-color: #333;
  color: #fff;
  margin: 0;
  padding: 0;
}

nav {
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

nav li {
  padding: 10px 20px;
  font-size: 20px;
  background-color: #222; /* Dark space gray background */
  color: white;
  border-radius: 10px;
  margin-right: 10px;
  cursor: pointer;
}

nav li:hover {
  background-color: #444; /* Darker space gray background on hover */
  transition: background-color 0.2s ease-in-out;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 10px;
}

/* Navigation Menu Styles */

ul.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #222;
  z-index: 100;
  display: flex;
  border-bottom: 1px solid #444;
}

ul.nav-menu li {
  margin: 0 10px;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}

ul.nav-menu li:hover {
  opacity: 1;
}

/* Main Content Styles */

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  margin-top: 40px;
}

h3 {
  font-size: 20px;
  margin-top: 30px;
}

h5 {
  font-size: 16px;
  margin-top: 10px;
}

/* Animations */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Specific Styles for shops Section */

section {
  background-color: #444;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

section img {
  max-width: 100px;
  border-radius: 50%;
  margin-right: 20px;
  /* vertical-align: middle; Remove this line */
}

/* New rules for positioning */
.shops-item {
  display: flex; /* Make it a flex container */
  align-items: center; /* Vertically align items */
}

.shops-description {
  font-size: 16px;
  /* left: 20px; Remove this line */
  flex: 1; /* Fill remaining space to push it to the right */
}

/* Dark mode styles */
.dark-mode {
  background-color: #333;
  color: #fff;
}

/* Space Gray Theme styles */
.space-gray {
  background-color: #333;
  color: #bdc3c7;
}
