/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff; /* space background */
  color: #0b6623; /* luxury green */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 2px solid #0b6623;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo span {
  color: #0b6623;
}

.menu-icon {
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1);
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 40px;
  background: #fff;
  border: 2px solid #0b6623;
  border-radius: 8px;
  padding: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #0b6623;
  padding: 10px;
  transition: background 0.3s ease;
}

.nav-links a:hover {
  background: #0b6623;
  color: #fff;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  animation: fadeIn 2s ease-in-out;
}

.headline {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: slideUp 1.5s ease;
}

.subtext {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.8;
  animation: fadeUp 2s ease;
}

/* Vendor Info */
.vendor-info {
  margin: 30px 0;
  font-size: 1.1rem;
  max-width: 600px;
  text-align: center;
  animation: fadeUp 2s ease;
}

/* Product Showcase */
.product-showcase {
  margin: 40px 0;
  animation: fadeIn 2s ease;
}

.product-showcase img {
  max-width: 400px;
  width: 100%;
  border: 4px solid #0b6623;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(11,102,35,0.3);
}

/* Coming Soon Banner */
.coming-soon {
  font-size: 3rem;
  font-weight: bold;
  color: #0b6623;
  margin-top: 20px;
  animation: pulse 3s infinite;
}

/* About Page */
.about {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  animation: fadeIn 2s ease;
}

.about h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0b6623;
}

.about p {
  margin: 20px 0;
  line-height: 1.6;
  font-size: 1.1rem;
}

.founders {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.founder-card {
  width: 250px;
  text-align: center;
  animation: fadeUp 2s ease;
}

.founder-card img {
  width: 100%;
  border-radius: 12px;
  border: 3px solid #0b6623;
  box-shadow: 0 0 15px rgba(11,102,35,0.3);
}

.founder-card h3 {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #0b6623;
}

/* Contact Page */
.contact {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  animation: fadeIn 2s ease;
}

.contact h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0b6623;
}

.contact p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-info {
  margin: 40px 0;
  text-align: left;
}

.contact-info h2 {
  color: #0b6623;
  margin-bottom: 10px;
}

/* Sign Up Button */
.signup-btn {
  margin-top: 40px;
}

.signup-btn button {
  background: #0b6623;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.signup-btn button:hover {
  background: #084c1e;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(11,102,35,0.4);
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
  border-top: 1px solid #0b6623;
  background: #fff;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #0b6623;
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #084c1e;
  text-decoration: underline;
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ---------------- SOLAR SYSTEM BACKGROUND ---------------- */
/* Solar System Container */
.solar-system {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Sun */
.sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #FFD700, #FFA500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px 15px rgba(255, 200, 0, 0.7);
}

/* Base Planet Style */
.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
}

/* Mercury */
.mercury {
  width: 12px; height: 12px;
  background: radial-gradient(circle, #b0b0b0, #6e6e6e);
  animation: orbit-mercury 6s linear infinite;
}

/* Venus */
.venus {
  width: 18px; height: 18px;
  background: radial-gradient(circle, #e0c16c, #b8860b);
  animation: orbit-venus 10s linear infinite;
}

/* Earth */
.earth {
  width: 20px; height: 20px;
  background: radial-gradient(circle, #1e90ff, #228b22);
  animation: orbit-earth 14s linear infinite;
}

/* Mars */
.mars {
  width: 16px; height: 16px;
  background: radial-gradient(circle, #ff4500, #8b0000);
  animation: orbit-mars 18s linear infinite;
}

/* Jupiter */
.jupiter {
  width: 45px; height: 45px;
  background: repeating-linear-gradient(
    45deg,
    #d2b48c,
    #d2b48c 10px,
    #a0522d 10px,
    #a0522d 20px
  );
  border-radius: 50%;
  animation: orbit-jupiter 22s linear infinite;
}

/* Saturn */
.saturn {
  width: 40px; height: 40px;
  background: khaki;
  border-radius: 50%;
  animation: orbit-saturn 26s linear infinite;
  position: relative;
}
.saturn::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 70px; height: 10px;
  background: rgba(160, 82, 45, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
}

/* Uranus */
.uranus {
  width: 28px; height: 28px;
  background: radial-gradient(circle, #87ceeb, #4682b4);
  animation: orbit-uranus 30s linear infinite;
}

/* Neptune */
.neptune {
  width: 26px; height: 26px;
  background: radial-gradient(circle, #4169e1, #00008b);
  animation: orbit-neptune 34s linear infinite;
}

/* Orbit Animations with Different Radii */
@keyframes orbit-mercury {
  from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes orbit-venus {
  from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes orbit-earth {
  from { transform: rotate(0deg) translateX(180px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

@keyframes orbit-mars {
  from { transform: rotate(0deg) translateX(220px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(220px) rotate(-360deg); }
}

@keyframes orbit-jupiter {
  from { transform: rotate(0deg) translateX(260px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(260px) rotate(-360deg); }
}

@keyframes orbit-saturn {
  from { transform: rotate(0deg) translateX(300px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(300px) rotate(-360deg); }
}

@keyframes orbit-uranus {
  from { transform: rotate(0deg) translateX(340px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(340px) rotate(-360deg); }
}

@keyframes orbit-neptune {
  from { transform: rotate(0deg) translateX(380px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(380px) rotate(-360deg); }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b6623; /* green background */
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #ffd700; /* gold link */
  text-decoration: underline;
}

.cookie-banner .buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  background: #fff;
  color: #0b6623;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.cookie-banner button:hover {
  background: #ffd700;
  color: #000;
}

@