/* Home Page Specific Styles for Moissanite Vault */

.description {
  padding: 100px 20px;
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-top: 30px;
  background-image: url('../images/iStock-1452960014.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  overflow: hidden;
  min-height: 400px;
}

.description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.description h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.description h1::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 1px;
  bottom: -10px;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(51, 51, 51, 0.8), transparent);
}

.description h2 {
  color: #333;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.description p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  position: relative;
  z-index: 1;
}

/* Features section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.feature-card {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border: 1px solid rgba(138, 43, 226, 0.1);
  border-radius: 15px;
  padding: 30px;
  width: 350px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.2), transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 30px rgba(138, 43, 226, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #333;
  line-height: 1.7;
}

.feature-icon {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #8A2BE2, #6A1B9A);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.cta-button:hover {
  background: linear-gradient(135deg, #9C4DE8, #8A2BE2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(138, 43, 226, 0.3);
}

/* Trust badges section styling */
.trust-badges {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px 0;
  border-top: 1px solid rgba(138, 43, 226, 0.1);
  border-bottom: 1px solid rgba(138, 43, 226, 0.1);
  margin: 40px 0;
}

.trust-badges-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  fill: #8A2BE2;
}

@media (max-width: 768px) {
  .trust-badges-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* Featured products section styling */
.featured-products {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-products h2 {
  text-align: center;
  color: #333;
  font-size: 2.2rem;
  margin-bottom: 40px;
  position: relative;
}

.featured-products h2::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #8A2BE2, transparent);
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.featured-product {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border: 1px solid rgba(138, 43, 226, 0.1);
  padding: 25px;
  width: 350px;
  text-align: center;
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.featured-product::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.2), transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-product:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 30px rgba(138, 43, 226, 0.1);
}

.featured-product:hover::before {
  opacity: 1;
}

.featured-product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.featured-product h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.featured-product p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.featured-product .price {
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.featured-product .shop-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #8A2BE2, #6A1B9A);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}

.featured-product .shop-button:hover {
  background: linear-gradient(135deg, #9C4DE8, #8A2BE2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .featured-product {
    width: 100%;
    max-width: 350px;
  }
}

/* Contact and Social section styling */
.contact-and-social {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-cta-section {
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border: 1px solid rgba(138, 43, 226, 0.1);
  border-radius: 15px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.2), transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-cta-section:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 30px rgba(138, 43, 226, 0.1);
}

.contact-cta-section:hover::before {
  opacity: 1;
}

.contact-cta-section h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-cta-section p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #8A2BE2, #6A1B9A);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  justify-content: center;
}

.contact-button:hover {
  background: linear-gradient(135deg, #9C4DE8, #8A2BE2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(138, 43, 226, 0.3);
}

.contact-button svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Footer social link styling */
.footer-links .social-link {
  margin-left: 10px;
}

.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));
}

@media (max-width: 768px) {
  .contact-options {
    gap: 12px;
  }
  
  .contact-button {
    min-width: 200px;
  }
}

/* Social Media Section */
.socials {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
  margin-top: 60px;
}

.socials h2 {
  color: #8A2BE2;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(138, 43, 226, 0.3);
}

.social-icons img {
  width: 40px;
  margin: 0 15px;
  transition: all 0.3s;
  filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.2));
}

.social-icons img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.4));
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    gap: 20px;
  }
  
  .feature-card {
    width: 100%;
    max-width: 350px;
  }
} 