
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Orbitron:wght@500&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #212529;
}

header {
  background: #ffffff;
  padding: 1rem;
  text-align: center;
  border-bottom: 3px solid #ffc107;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  color: #ff5722;
}

nav a {
  margin: 0 15px;
  color: #343a40;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff5722;
}

main {
  padding: 2rem;
}

h2 {
  color: #343a40;
  font-weight: 600;
}

.store-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.item img {
  max-width: 100%;
  border-radius: 6px;
}

.item h3 {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #333;
}

.item p {
  color: #ff5722;
  font-weight: 600;
}

.item button {
  margin-top: 10px;
  padding: 0.6rem 1.2rem;
  background: #ff5722;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.item button:hover {
  background: #e64a19;
}

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

ul li {
  background: #ffffff;
  margin: 0.5rem 0;
  padding: 0.75rem;
  border-left: 5px solid #ffc107;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 1rem;
}

button[type="submit"] {
  background: #28a745;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background: #218838;
}

footer {
  background: #ffffff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  border-top: 3px solid #ffc107;
  font-size: 0.9rem;
  color: #666;
}
.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 1rem;
}

.social-links li a {
  text-decoration: none;
  color: #212529;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.social-links li a:hover {
  color: #00eaff;
}

.social-links i {
  font-size: 1.4rem;
}

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

  .social-links li {
    width: 100%;
    text-align: center;
  }

  .social-links li a {
    font-size: 1rem; /* Keep label visible */
    justify-content: center;
  }
}
.og-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

.og-banner img {
  width: 50%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile view adjustments */
@media (max-width: 600px) {
  .og-banner img {
    width: 100%;
    max-height: 150px;
  }
}
nav a.active {
  color: #ff5722; /* REEVERB orange */
  border-bottom: 2px solid #ff5722;
  padding-bottom: 2px;
}
