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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* UFO Animation */
.ufo-container {
  position: fixed;
  top: 10%;
  right: -150px;
  z-index: 10;
  animation: ufo-fly 15s ease-in-out infinite;
  pointer-events: none;
}

.ufo-element {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
  animation: ufo-wobble 3s ease-in-out infinite alternate;
}

@keyframes ufo-fly {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-300px) translateY(-50px); }
  50% { transform: translateX(-600px) translateY(50px); }
  75% { transform: translateX(-900px) translateY(-30px); }
  100% { transform: translateX(-1200px) translateY(0); }
}

@keyframes ufo-wobble {
  0% { transform: rotate(-2deg) scale(1); }
  100% { transform: rotate(2deg) scale(1.05); }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #22D3EE;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(45deg, #22D3EE, #6A5ACD);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.button {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(45deg, #6A5ACD, #22D3EE);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(106, 90, 205, 0.5);
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-text {
  font-size: 1.3rem;
  font-weight: 600;
  animation: marquee-scroll 30s linear infinite;
  display: inline-block;
  padding-left: 100%;
  background: linear-gradient(45deg, #6A5ACD, #22D3EE, #00BFFF);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.marquee-ufo {
  height: 30px;
  width: auto;
  vertical-align: middle;
  margin: 0 15px;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.5));
}

@keyframes marquee-scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* Sections */
.section {
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #22D3EE, #6A5ACD);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #ccc;
  line-height: 1.8;
    }

/* Collection Grid */
.collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.collection-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.collection-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.3);
}

.collection-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.collection-item img:hover {
  transform: scale(1.05);
}

.collection-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #22D3EE;
  font-weight: 700;
}

.collection-item p {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Subscribe Form */
#subscribeForm {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#subscribeForm input {
  padding: 15px 25px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#subscribeForm input:focus {
  outline: none;
  border-color: #22D3EE;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

#subscribeForm input::placeholder {
  color: #888;
}

.success-message {
  text-align: center;
  color: #00ffcc;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-message.show {
  opacity: 1;
}

/* Footer */
.footer {
  background: #000000;
  padding: 60px 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  margin-bottom: 40px;
}

.footer-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #22D3EE;
  font-weight: 700;
}

.footer-col img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
  animation: footer-glow 3s ease-in-out infinite alternate;
}

@keyframes footer-glow {
  0% { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3)); }
  100% { filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6)); }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.social-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 25px;
}

.social-links a:hover {
  color: #22D3EE;
  background: rgba(34, 211, 238, 0.1);
  transform: translateY(-2px);
}

.footer p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Form Styles (for contact.html compatibility) */
.contact-form-section {
  padding: 80px 20px;
  text-align: center;
}

.contact-form-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  text-align: left;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #ccc;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #222;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22D3EE;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-button {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #6A5ACD, #00BFFF);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.8);
}

.form-message {
  text-align: center;
  margin-top: 20px;
  font-size: 1.1rem;
}

.form-message.success {
  color: #00ffcc;
}

.form-message.error {
  color: #ff6666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .section {
    padding: 60px 15px;
  }

  .section h2 {
    font-size: 2.2rem;
  }

  .collection {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .collection-item {
    padding: 25px;
  }

  .ufo-container {
    display: none;
  }

  .marquee-text {
    font-size: 1.1rem;
  }

  .social-links {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form-container {
    padding: 25px;
    margin: 0 15px;
  }

  .contact-form-section h2 {
    font-size: 2rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .form-button {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 10px;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .collection-item {
    padding: 20px;
  }

  .navbar {
    padding: 10px;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 40px;
    }
}

/* Particles Background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2; /* Changed to -2 to be behind space-container */
  pointer-events: none;
}

/* Space Background */
.space-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* Stays at -1 to be above particles-js but behind content */
  pointer-events: none;
  background: radial-gradient(ellipse at center, #0f0f23 0%, #000000 70%);
}

/* Stars */
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite alternate;
}

.star.small {
  width: 1px;
  height: 1px;
  box-shadow: 0 0 3px white;
}

.star.medium {
  width: 2px;
  height: 2px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.star.large {
  width: 3px;
  height: 3px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.star.bright {
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffffff 0%, #e6f3ff 100%);
  box-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.5);
  animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.2); }
}

@keyframes sparkle {
  0% { opacity: 0.7; transform: scale(1) rotate(0deg); }
  100% { opacity: 1; transform: scale(1.3) rotate(45deg); }
}


/* Shooting Stars */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px white;
  animation: shoot 3s linear infinite;
  opacity: 0;
}

.shooting-star::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, white, transparent);
  transform-origin: left center;
  animation: tail 3s linear infinite;
}

@keyframes shoot {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(100px);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(1000px) translateY(-500px);
  }
}

@keyframes tail {
  0% {
    width: 0;
    opacity: 1;
  }
  30% {
    width: 100px;
    opacity: 1;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
