/* Main Styles for Moissanite Vault - Used across all pages */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
  color: #333;
  line-height: 1.6;
  background-attachment: fixed;
}

/* Header Styles */
header {
  text-align: center;
  padding: 15px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.logo {
  width: 200px;
  height: auto;
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.3)) drop-shadow(0 0 25px rgba(138, 43, 226, 0.2));
}

nav ul {
  margin-top: 20px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8A2BE2, transparent);
  transition: width 0.3s;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

nav a:hover, nav a.active {
  color: #8A2BE2;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.footer-links {
  margin: 10px 0;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #8A2BE2;
}

.footer-links .social-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 3px rgba(138, 43, 226, 0.2));
}

.footer-links .social-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(138, 43, 226, 0.4));
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  color: #8A2BE2;
  padding: 18px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(138, 43, 226, 0.1);
  z-index: 100;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: bold;
  border: 1px solid rgba(138, 43, 226, 0.2);
  font-size: 1.1rem;
}

.cart-notification.show {
  transform: translateX(0);
}

/* Collection Description */
.collection-description {
  text-align: center;
  margin: 30px auto 40px;
  padding: 25px 30px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 10px rgba(138, 43, 226, 0.05);
  border: 1px solid rgba(138, 43, 226, 0.1);
  max-width: 600px;
}

.collection-description p {
  margin: 12px 0;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}

.collection-description strong {
  color: #8A2BE2;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(138, 43, 226, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  
  nav a {
    font-size: 0.95rem;
    padding: 4px 0;
  }
  
  .cart-button {
    padding: 3px;
  }
  
  .cart-icon {
    width: 20px;
    height: 20px;
  }
  
  .cart-counter {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    top: -6px;
    right: -6px;
  }
  
  .collection-description {
    margin: 20px auto 30px;
    padding: 20px;
    max-width: 90%;
  }
  
  .collection-description p {
    font-size: 1rem;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 3px 0;
  }
  
  header {
    padding: 15px 0;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }
  
  .collection-description {
    margin: 15px auto 25px;
    padding: 15px;
    max-width: 95%;
  }
  
  .collection-description p {
    font-size: 0.95rem;
    margin: 8px 0;
  }
} 