| @import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap"); |
|
|
| .luxury-footer { |
| position: relative; |
| overflow: hidden; |
| color: #ffffff; |
| } |
|
|
| .footer-background { |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| z-index: 1; |
| } |
|
|
| .footer-gradient-1 { |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| background: linear-gradient( |
| 135deg, |
| rgba(13, 33, 49, 0.95) 0%, |
| rgba(9, 14, 24, 0.9) 25%, |
| rgba(13, 20, 29, 0.85) 50%, |
| rgba(16, 30, 49, 0.8) 75%, |
| rgba(5, 10, 23, 0.95) 100% |
| ); |
| animation: gradientShift 20s ease-in-out infinite; |
| } |
|
|
| .footer-gradient-2 { |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| background: radial-gradient(ellipse at 20% 50%, rgba(30, 12, 70, 0.819) 0%, transparent 50%), |
| radial-gradient(ellipse at 80% 20%, rgba(78, 7, 42, 0.697) 0%, transparent 50%), |
| radial-gradient(ellipse at 40% 80%, rgba(4, 40, 98, 0.488) 0%, transparent 50%); |
| animation: gradientFloat 25s ease-in-out infinite; |
| } |
|
|
| .footer-gradient-3 { |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| background: linear-gradient( |
| 45deg, |
| transparent 0%, |
| rgba(114, 75, 75, 0.02) 25%, |
| transparent 50%, |
| rgba(255, 255, 255, 0.02) 75%, |
| transparent 100% |
| ); |
| animation: shimmer 15s linear infinite; |
| } |
|
|
| .footer-particle { |
| position: absolute; |
| width: 4px; |
| height: 4px; |
| background: radial-gradient(circle, rgba(131, 61, 61, 0.8) 0%, transparent 70%); |
| border-radius: 50%; |
| animation: floatParticle 20s linear infinite; |
| z-index: 2; |
| } |
|
|
| .footer-particle:nth-child(odd) { |
| background: radial-gradient(circle, rgba(88, 57, 159, 0.6) 0%, transparent 70%); |
| } |
|
|
| .footer-particle:nth-child(3n) { |
| background: radial-gradient(circle, rgba(158, 37, 98, 0.6) 0%, transparent 70%); |
| } |
|
|
| .footer-main { |
| position: relative; |
| z-index: 10; |
| padding: 5px; |
| backdrop-filter: blur(20px); |
| border-top: 1px solid rgba(255, 255, 255, 0.1); |
| } |
|
|
| .footer-brand-section { |
| text-align: center; |
| margin-bottom: 80px; |
| } |
|
|
| .footer-brand { |
| max-width: 600px; |
| margin: 0 auto; |
| } |
|
|
| .brand-title { |
| font-size: 3.5rem; |
| font-weight: 800; |
| margin-bottom: 20px; |
| text-align: center; |
| } |
|
|
| .brand-mk { |
| background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #3b82f6 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| animation: gradientText 3s ease-in-out infinite; |
| } |
|
|
| .brand-cart { |
| background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #8b5cf6 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| animation: gradientText 3s ease-in-out infinite reverse; |
| } |
|
|
| .brand-tagline { |
| font-size: 1.2rem; |
| color: rgba(255, 255, 255, 0.8); |
| margin-bottom: 40px; |
| font-weight: 300; |
| letter-spacing: 0.5px; |
| } |
|
|
| .brand-features { |
| display: flex; |
| justify-content: center; |
| gap: 40px; |
| flex-wrap: wrap; |
| } |
|
|
| .feature-item { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| padding: 5px; |
| background: rgba(255, 255, 255, 0.05); |
| border-radius: 50px; |
| border: 1px solid rgba(255, 255, 255, 0.1); |
| backdrop-filter: blur(10px); |
| transition: all 0.3s ease; |
| } |
|
|
| .feature-item:hover { |
| transform: translateY(-5px); |
| background: rgba(255, 255, 255, 0.1); |
| box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3); |
| } |
|
|
| .feature-item svg { |
| color: #8b5cf6; |
| font-size: 1.2rem; |
| } |
|
|
| .feature-item span { |
| font-weight: 500; |
| color: rgba(255, 255, 255, 0.9); |
| } |
|
|
| .footer-links-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
| gap: 60px; |
| max-width: 1200px; |
| margin: 0 auto; |
| } |
|
|
| .footer-column { |
| position: relative; |
| } |
|
|
| .column-title { |
| font-size: 1.4rem; |
| font-weight: 600; |
| margin-bottom: 30px; |
| position: relative; |
| } |
|
|
| .title-text { |
| background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| } |
|
|
| .title-underline { |
| position: absolute; |
| bottom: -10px; |
| left: 0; |
| width: 50px; |
| height: 3px; |
| background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%); |
| border-radius: 2px; |
| animation: underlineGlow 2s ease-in-out infinite; |
| } |
|
|
| .footer-links { |
| list-style: none; |
| padding: 0; |
| margin: 0; |
| } |
|
|
| .footer-link-item { |
| margin-bottom: 15px; |
| } |
|
|
| .footer-link { |
| position: relative; |
| display: inline-block; |
| color: rgba(255, 255, 255, 0.7); |
| text-decoration: none; |
| font-weight: 400; |
| transition: all 0.3s ease; |
| padding: 1px; |
| overflow: hidden; |
| } |
|
|
| .footer-link:hover { |
| color: #eaa607; |
| transform: scale(1.05); |
| |
| } |
|
|
|
|
|
|
| .contact-column { |
| grid-column: span 1; |
| } |
|
|
| .contact-info { |
| margin-bottom: 40px; |
| } |
|
|
| .contact-item { |
| margin-bottom: 25px; |
| } |
|
|
| .contact-item h4 { |
| font-size: 1.1rem; |
| font-weight: 600; |
| color: #ffffff; |
| margin-bottom: 10px; |
| } |
|
|
| .contact-item p { |
| color: rgba(255, 255, 255, 0.7); |
| margin: 5px 0; |
| font-size: 0.95rem; |
| } |
|
|
| .social-section h4 { |
| font-size: 1.1rem; |
| font-weight: 600; |
| color: #ffffff; |
| margin-bottom: 20px; |
| } |
|
|
| .social-links { |
| display: flex; |
| gap: 15px; |
| flex-wrap: wrap; |
| } |
|
|
| .social-link { |
| position: relative; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: 50px; |
| height: 50px; |
| background: rgba(255, 255, 255, 0.05); |
| border: 1px solid rgba(255, 255, 255, 0.1); |
| border-radius: 50%; |
| color: rgba(255, 255, 255, 0.7); |
| text-decoration: none; |
| transition: all 0.3s ease; |
| backdrop-filter: blur(10px); |
| overflow: hidden; |
| } |
|
|
| .social-link:hover { |
| transform: translateY(-5px) scale(1.1); |
| color: var(--social-color); |
| border-color: var(--social-color); |
| box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2); |
| } |
|
|
| .social-ripple { |
| position: absolute; |
| top: 50%; |
| left: 50%; |
| width: 0; |
| height: 0; |
| background: var(--social-color); |
| border-radius: 50%; |
| transform: translate(-50%, -50%); |
| opacity: 0; |
| transition: all 0.3s ease; |
| } |
|
|
| .social-link:hover .social-ripple { |
| width: 100%; |
| height: 100%; |
| opacity: 0.1; |
| } |
|
|
| .newsletter-section { |
| position: relative; |
| z-index: 10; |
| padding: 20px 0; |
| background: rgba(255, 255, 255, 0.02); |
| border-top: 1px solid rgba(255, 255, 255, 0.1); |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); |
| backdrop-filter: blur(20px); |
| } |
|
|
| .newsletter-content { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| gap: 40px; |
| flex-wrap: wrap; |
| } |
|
|
| .newsletter-text h3 { |
| font-size: 2rem; |
| font-weight: 700; |
| margin-bottom: 10px; |
| background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| } |
|
|
| .newsletter-text p { |
| color: rgba(255, 255, 255, 0.7); |
| font-size: 1.1rem; |
| } |
|
|
| .newsletter-form { |
| flex: 1; |
| max-width: 500px; |
| } |
|
|
| .input-group { |
| display: flex; |
| gap: 15px; |
| align-items: stretch; |
| } |
|
|
| .newsletter-input { |
| flex: 1; |
| padding: 18px 25px; |
| background: rgba(255, 255, 255, 0.05); |
| border: 1px solid rgba(255, 255, 255, 0.2); |
| border-radius: 50px; |
| color: #ffffff; |
| font-size: 1rem; |
| backdrop-filter: blur(10px); |
| transition: all 0.3s ease; |
| } |
|
|
| .newsletter-input:focus { |
| outline: none; |
| border-color: #8b5cf6; |
| box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); |
| background: rgba(255, 255, 255, 0.1); |
| } |
|
|
| .newsletter-input::placeholder { |
| color: rgba(255, 255, 255, 0.5); |
| } |
|
|
| .newsletter-btn { |
| position: relative; |
| padding: 18px 35px; |
| background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%); |
| border: none; |
| border-radius: 50px; |
| color: #ffffff; |
| font-weight: 600; |
| font-size: 1rem; |
| cursor: pointer; |
| transition: all 0.3s ease; |
| overflow: hidden; |
| } |
|
|
| .newsletter-btn:hover { |
| transform: translateY(-2px); |
| box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4); |
| } |
|
|
| .btn-glow { |
| position: absolute; |
| top: 0; |
| left: -100%; |
| width: 100%; |
| height: 100%; |
| background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); |
| transition: left 0.5s ease; |
| } |
|
|
| .newsletter-btn:hover .btn-glow { |
| left: 100%; |
| } |
|
|
| .footer-bottom { |
| position: relative; |
| z-index: 10; |
| padding: 20px; |
| background: rgba(0, 0, 0, 0.3); |
| backdrop-filter: blur(20px); |
| } |
|
|
| .footer-bottom-content { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| gap: 30px; |
| flex-wrap: wrap; |
| } |
|
|
| .quick-links { |
| display: flex; |
| gap: 30px; |
| flex-wrap: wrap; |
| } |
|
|
| .quick-link { |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| color: rgba(255, 255, 255, 0.7); |
| text-decoration: none; |
| font-size: 0.9rem; |
| transition: all 0.3s ease; |
| padding: 8px; |
| border-radius: 20px; |
| background: rgba(255, 255, 255, 0.02); |
| border: 1px solid rgba(255, 255, 255, 0.05); |
| } |
|
|
| .quick-link:hover { |
| color: #ffffff; |
| transform: translateY(-2px); |
| background: rgba(255, 255, 255, 0.05); |
| box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2); |
| } |
|
|
| .quick-link svg { |
| color: #f59e0b; |
| font-size: 1rem; |
| } |
|
|
| .copyright { |
| text-align: center; |
| flex: 1; |
| } |
|
|
| .copyright p { |
| color: rgba(255, 255, 255, 0.6); |
| font-size: 0.9rem; |
| margin: 0; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| gap: 8px; |
| } |
|
|
| .heart-icon { |
| color: #ef4444; |
| animation: heartbeat 2s ease-in-out infinite; |
| } |
|
|
| .trust-badges { |
| display: flex; |
| gap: 20px; |
| } |
|
|
| .trust-badge { |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| color: rgba(255, 255, 255, 0.7); |
| font-size: 0.85rem; |
| padding: 8px 15px; |
| background: rgba(255, 255, 255, 0.02); |
| border: 1px solid rgba(255, 255, 255, 0.05); |
| border-radius: 20px; |
| } |
|
|
| .trust-badge svg { |
| color: #10b981; |
| font-size: 0.9rem; |
| } |
|
|
| @keyframes gradientShift { |
| 0%, |
| 100% { |
| opacity: 1; |
| } |
| 50% { |
| opacity: 0.8; |
| } |
| } |
|
|
| @keyframes gradientFloat { |
| 0%, |
| 100% { |
| transform: translateY(0) rotate(0deg); |
| } |
| 33% { |
| transform: translateY(-10px) rotate(1deg); |
| } |
| 66% { |
| transform: translateY(5px) rotate(-1deg); |
| } |
| } |
|
|
| @keyframes shimmer { |
| 0% { |
| transform: translateX(-100%); |
| } |
| 100% { |
| transform: translateX(100%); |
| } |
| } |
|
|
| @keyframes floatParticle { |
| 0% { |
| transform: translateY(100vh) rotate(0deg); |
| opacity: 0; |
| } |
| 10% { |
| opacity: 1; |
| } |
| 90% { |
| opacity: 1; |
| } |
| 100% { |
| transform: translateY(-100px) rotate(360deg); |
| opacity: 0; |
| } |
| } |
|
|
| @keyframes gradientText { |
| 0%, |
| 100% { |
| filter: hue-rotate(0deg); |
| } |
| 50% { |
| filter: hue-rotate(45deg); |
| } |
| } |
|
|
| @keyframes underlineGlow { |
| 0%, |
| 100% { |
| box-shadow: 0 0 5px rgba(139, 92, 246, 0.5); |
| } |
| 50% { |
| box-shadow: 0 0 20px rgba(139, 92, 246, 0.8); |
| } |
| } |
|
|
| @keyframes heartbeat { |
| 0%, |
| 100% { |
| transform: scale(1); |
| } |
| 50% { |
| transform: scale(1.2); |
| } |
| } |
|
|
| @media (max-width: 1200px) { |
| .footer-links-grid { |
| grid-template-columns: repeat(2, 1fr); |
| gap: 40px; |
| } |
|
|
| .contact-column { |
| grid-column: span 2; |
| } |
| } |
|
|
| @media (max-width: 768px) { |
| .brand-title { |
| font-size: 2.5rem; |
| } |
|
|
| .brand-features { |
| gap: 20px; |
| } |
|
|
| .feature-item { |
| padding: 12px 20px; |
| } |
|
|
| .footer-links-grid { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 30px; |
| } |
| .footer-column { |
| min-width: 0; |
| } |
| .footer-column.contact-column { |
| grid-column: 2; |
| grid-row: 2 / span 2; |
| } |
| .newsletter-content { |
| flex-direction: column; |
| text-align: center; |
| } |
| .input-group { |
| grid-column: 2; |
| grid-row: 2 |
| } |
| .newsletter-form { |
| width: 100%; |
| max-width: 100%; |
| } |
| .newsletter-text h3 { |
| font-size: 1.5rem; |
| } |
|
|
| .footer-bottom-content { |
| flex-direction: column; |
| text-align: center; |
| } |
|
|
| .quick-links { |
| justify-content: center; |
| } |
|
|
| .trust-badges { |
| justify-content: center; |
| } |
| } |
|
|
| @media (max-width: 480px) { |
| .footer-main { |
| padding: 60px 0 40px; |
| } |
|
|
| .brand-title { |
| font-size: 2rem; |
| } |
|
|
| .brand-features { |
| flex-direction: column; |
| align-items: center; |
| } |
|
|
| .social-links { |
| justify-content: center; |
| } |
|
|
| .quick-links { |
| flex-direction: column; |
| gap: 15px; |
| } |
|
|
| .trust-badges { |
| flex-direction: column; |
| gap: 10px; |
| } |
| } |
|
|
| @media (prefers-contrast: high) { |
| .footer-link { |
| color: #ffffff; |
| } |
|
|
| .newsletter-input { |
| border-color: #ffffff; |
| } |
| } |
|
|
| @media (prefers-reduced-motion: reduce) { |
| .footer-gradient-1, |
| .footer-gradient-2, |
| .footer-gradient-3, |
| .footer-particle, |
| .brand-mk, |
| .brand-cart, |
| .title-underline, |
| .social-ripple, |
| .btn-glow, |
| .heart-icon { |
| animation-duration: 0.01ms !important; |
| animation-iteration-count: 1 !important; |
| } |
| |
| .newsletter-input, |
| .newsletter-btn, |
| .quick-link, |
| .social-link, |
| .footer-link, |
| .feature-item { |
| transition-duration: 0.01ms !important; |
| } |
| } |