<<<<<<< HEAD /* ============================================================================= MODERN FURRY DESIGN - KASICO ART & DESIGN ============================================================================= */ /* CSS Variables für konsistente Farben */ :root { --primary-gradient: linear-gradient(135deg, #b36fff 0%, #ff6fd8 100%); --secondary-gradient: linear-gradient(135deg, #ff6fd8 0%, #3813c2 100%); --accent-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); --glass-bg: rgba(255, 255, 255, 0.1); --glass-border: rgba(255, 255, 255, 0.2); --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.37); --text-primary: #3a2d4d; --text-secondary: #6b5b7b; --text-light: #ffffff; --shadow-soft: 0 4px 20px rgba(179, 111, 255, 0.15); --shadow-medium: 0 8px 32px rgba(179, 111, 255, 0.25); --shadow-strong: 0 16px 64px rgba(179, 111, 255, 0.35); --border-radius: 20px; --border-radius-small: 12px; --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } /* Dark Mode Support */ @media (prefers-color-scheme: dark) { :root { --text-primary: #ffffff; --text-secondary: #e1e1e1; --glass-bg: rgba(0, 0, 0, 0.2); --glass-border: rgba(255, 255, 255, 0.1); } } /* Base Styles */ * { box-sizing: border-box; } body { font-family: 'Baloo 2', Arial, sans-serif; background: linear-gradient(135deg, #f8e1ff 0%, #e1f0ff 50%, #ffe6fa 100%); background-attachment: fixed; margin: 0; color: var(--text-primary); padding-top: 0; line-height: 1.6; overflow-x: hidden; } /* Glassmorphism Utility Classes */ .glass { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--border-radius); box-shadow: var(--glass-shadow); } .glass-soft { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--border-radius-small); } /* Enhanced Header */ .furry-header { background: var(--primary-gradient); padding: 0.5rem 0; box-shadow: var(--shadow-soft); position: sticky; top: 0; z-index: 1000; transition: var(--transition); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); ======= body { font-family: 'Baloo 2', Arial, sans-serif; background: linear-gradient(135deg, #f8e1ff 0%, #e1f0ff 100%); margin: 0; color: #3a2d4d; padding-top: 0; } .furry-header { background: linear-gradient(90deg, #b36fff 0%, #ff6fd8 100%); padding: 0.5rem 0; box-shadow: 0 2px 8px rgba(179, 111, 255, 0.1); position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb } /* Sticky Navigation Scroll Effects */ .furry-header.scrolled { background: rgba(179, 111, 255, 0.95); <<<<<<< HEAD backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); box-shadow: var(--shadow-medium); padding: 0.3rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); ======= backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); box-shadow: 0 4px 20px rgba(179, 111, 255, 0.2); padding: 0.3rem 0; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb } .furry-header.scrolled .logo img { height: 40px; transition: height 0.3s ease; } .furry-header.scrolled nav a { font-size: 1rem; transition: font-size 0.3s ease; } .furry-header.scrolled .header-actions .btn { padding: 0.5rem 1.5rem; font-size: 1rem; transition: all 0.3s ease; } /* Navigation Progress Bar */ .nav-progress { position: absolute; bottom: 0; left: 0; height: 3px; <<<<<<< HEAD background: var(--secondary-gradient); width: 0%; transition: width 0.3s ease; border-radius: 0 2px 2px 0; box-shadow: 0 0 10px rgba(255, 111, 216, 0.5); } /* Enhanced Mobile Navigation */ .mobile-nav-toggle { display: none; background: var(--glass-bg); border: 1px solid var(--glass-border); color: white; font-size: 1.5rem; cursor: pointer; padding: 0.8rem; border-radius: var(--border-radius-small); transition: var(--transition); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } .mobile-nav-toggle:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); ======= background: linear-gradient(90deg, #ff6fd8 0%, #3813c2 100%); width: 0%; transition: width 0.3s ease; border-radius: 0 2px 2px 0; } /* Mobile Navigation */ .mobile-nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; border-radius: 8px; transition: background 0.3s ease; } .mobile-nav-toggle:hover { background: rgba(255, 255, 255, 0.1); >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb } .mobile-nav-toggle .hamburger-line { width: 25px; height: 3px; background: white; margin: 5px 0; <<<<<<< HEAD transition: var(--transition); ======= transition: all 0.3s ease; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb border-radius: 2px; } .mobile-nav-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .mobile-nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; } .mobile-nav-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); } <<<<<<< HEAD /* Enhanced Container */ ======= >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } <<<<<<< HEAD ======= >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb .nav-flex { display: flex; align-items: center; justify-content: space-between; position: relative; } <<<<<<< HEAD /* Enhanced Logo */ .logo img { height: 48px; border-radius: 16px; background: rgba(255, 255, 255, 0.9); padding: 4px; transition: var(--transition); box-shadow: var(--shadow-soft); } .logo img:hover { transform: scale(1.05) rotate(2deg); box-shadow: var(--shadow-medium); } /* Enhanced Navigation */ ======= .logo img { height: 48px; border-radius: 16px; background: #fff; padding: 4px; transition: all 0.3s ease; } .logo img:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3); } >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb nav { display: flex; align-items: center; gap: 1rem; } <<<<<<< HEAD nav a { color: var(--text-light); ======= nav a { color: #fff; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb text-decoration: none; margin: 0 1rem; font-size: 1.1rem; font-weight: 700; <<<<<<< HEAD transition: var(--transition); position: relative; padding: 0.8rem 1.5rem; border-radius: 25px; background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--glass-border); } nav a:hover { color: var(--text-light); background: rgba(255, 255, 255, 0.2); transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-medium); } nav a.active { background: rgba(255, 255, 255, 0.3); color: var(--text-light); box-shadow: var(--shadow-soft); } /* Enhanced Navigation Underline Effect */ ======= transition: all 0.3s ease; position: relative; padding: 0.5rem 1rem; border-radius: 20px; } nav a:hover { color: #ffe6fa; background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); } nav a.active { background: rgba(255, 255, 255, 0.2); color: #ffe6fa; } /* Navigation Underline Effect */ >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb nav a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; <<<<<<< HEAD height: 3px; background: var(--text-light); transition: var(--transition); transform: translateX(-50%); border-radius: 2px; box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } nav a:hover::after { width: 80%; } /* Enhanced Header Actions */ ======= height: 2px; background: #ffe6fa; transition: all 0.3s ease; transform: translateX(-50%); border-radius: 1px; } nav a:hover::after { width: 80%; } >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb .header-actions { display: flex; align-items: center; gap: 1rem; } <<<<<<< HEAD .header-actions .btn { margin-left: 1rem; transition: var(--transition); } /* Enhanced Button System */ .furry-btn { background: var(--secondary-gradient); color: var(--text-light); border: none; border-radius: 32px; padding: 0.8rem 2.5rem; font-size: 1.1rem; font-weight: 700; box-shadow: var(--shadow-soft); cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } .furry-btn::before { ======= .header-actions .btn { margin-left: 1rem; transition: all 0.3s ease; } .furry-btn { background: linear-gradient(90deg, #ff6fd8 0%, #3813c2 100%); color: #fff; border: none; border-radius: 32px; padding: 0.7rem 2rem; font-size: 1.1rem; font-weight: 700; box-shadow: 0 2px 8px rgba(255, 111, 216, 0.15); cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; } .furry-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s ease; } .furry-btn:hover::before { left: 100%; } .furry-btn:hover { background: linear-gradient(90deg, #3813c2 0%, #ff6fd8 100%); transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(255, 111, 216, 0.3); } .furry-btn:active { transform: translateY(-1px) scale(1.02); } .furry-btn-outline { background: rgba(255, 255, 255, 0.1); color: #fff; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 32px; padding: 0.7rem 2rem; font-size: 1.1rem; font-weight: 700; margin-left: 1rem; transition: all 0.3s ease; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); } .furry-btn-outline:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2); } .furry-btn-secondary { background: #fff; color: #ff6fd8; border: 2px solid #ff6fd8; border-radius: 32px; padding: 0.7rem 2rem; font-size: 1.1rem; font-weight: 700; margin-left: 1rem; transition: all 0.3s ease; } .furry-btn-secondary:hover { background: #ff6fd8; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 111, 216, 0.3); } .furry-main { padding: 2rem 0 4rem 0; } .hero { background: linear-gradient(135deg, #b36fff 0%, #ff6fd8 100%); color: #fff; border-radius: 32px; margin: 2rem auto; max-width: 900px; box-shadow: 0 4px 32px rgba(179, 111, 255, 0.15); padding: 3rem 2rem 2rem 2rem; text-align: center; } .hero .brand { color: #ffe6fa; font-weight: 900; letter-spacing: 2px; } .hero-actions { margin-top: 2rem; } .services { margin: 3rem auto; max-width: 1100px; text-align: center; } .service-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; } .service-card { background: #fff; border-radius: 24px; box-shadow: 0 2px 16px rgba(179, 111, 255, 0.08); padding: 2rem 1.5rem; width: 300px; transition: transform 0.2s, box-shadow 0.2s; } .service-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 8px 32px rgba(179, 111, 255, 0.18); } .service-card img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 1rem; border-radius: 16px; background: #f8e1ff; padding: 8px; } .gallery-preview { margin: 3rem auto; max-width: 1100px; text-align: center; } .gallery-grid { display: flex; justify-content: center; gap: 1.5rem; margin: 2rem 0; } .gallery-grid img { width: 180px; height: 180px; object-fit: cover; border-radius: 24px; box-shadow: 0 2px 16px rgba(179, 111, 255, 0.08); } .cta { background: linear-gradient(90deg, #ff6fd8 0%, #b36fff 100%); color: #fff; border-radius: 32px; margin: 3rem auto 0 auto; max-width: 900px; box-shadow: 0 4px 32px rgba(255, 111, 216, 0.15); padding: 2rem 2rem 2.5rem 2rem; text-align: center; } .furry-footer { background: #b36fff; color: #fff; padding: 1.5rem 0; text-align: center; border-radius: 32px 32px 0 0; margin-top: 3rem; } .footer-links a { color: #ffe6fa; margin: 0 0.5rem; text-decoration: none; font-weight: 700; } .footer-links a:hover { text-decoration: underline; } @media (max-width: 900px) { .service-cards, .gallery-grid { flex-direction: column; align-items: center; } .service-card, .gallery-grid img { width: 90vw; max-width: 350px; } } /* Micro-Interaction: In den Warenkorb gelegt */ .cart-added-feedback { position: fixed; top: 80px; right: 40px; background: #ff6fd8; color: #fff; border-radius: 32px; padding: 1rem 2rem; font-size: 1.2rem; font-weight: 700; box-shadow: 0 4px 24px rgba(255, 111, 216, 0.18); z-index: 2000; opacity: 0; pointer-events: none; transform: translateY(-30px) scale(0.95); transition: opacity 0.3s, transform 0.3s; } .cart-added-feedback.show { opacity: 1; transform: translateY(0) scale(1.05); animation: pop-furry 0.7s cubic-bezier(.68,-0.55,.27,1.55); } @keyframes pop-furry { 0% { transform: translateY(-30px) scale(0.8); opacity: 0; } 60% { transform: translateY(10px) scale(1.1); opacity: 1; } 100% { transform: translateY(0) scale(1.05); opacity: 1; } } /* Furry-Style Lade-Spinner */ .furry-spinner { display: inline-block; width: 60px; height: 60px; position: relative; } .furry-spinner div { position: absolute; border: 6px solid #ff6fd8; opacity: 1; border-radius: 50%; animation: furry-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; border-color: #ff6fd8 transparent transparent transparent; } .furry-spinner div:nth-child(1) { animation-delay: -0.45s; } .furry-spinner div:nth-child(2) { animation-delay: -0.3s; } .furry-spinner div:nth-child(3) { animation-delay: -0.15s; } @keyframes furry-spinner { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .furry-form .form-group { margin-bottom: 1.5rem; } .furry-form label { font-weight: 700; color: #b36fff; display: block; margin-bottom: 0.3rem; } .furry-form input, .furry-form textarea { width: 100%; padding: 0.7rem 1rem; border-radius: 16px; border: 2px solid #e1f0ff; font-size: 1.1rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; background: #fff; margin-bottom: 0.2rem; } .furry-form input:focus, .furry-form textarea:focus { border-color: #b36fff; box-shadow: 0 0 0 2px #ff6fd833; } .furry-form input.invalid, .furry-form textarea.invalid { border-color: #ff6f91; background: #fff0f6; } .furry-form input.valid, .furry-form textarea.valid { border-color: #6fff91; background: #f0fff6; } .furry-form .form-hint { font-size: 0.95rem; color: #ff6fd8; margin-left: 0.2rem; min-height: 1.2em; transition: color 0.2s; } .furry-form input.valid ~ .form-hint, .furry-form textarea.valid ~ .form-hint { color: #6fff91; } .furry-404 { max-width: 500px; margin: 4rem auto 0 auto; background: #fff; border-radius: 32px; box-shadow: 0 4px 32px rgba(179, 111, 255, 0.12); padding: 3rem 2rem 2.5rem 2rem; text-align: center; color: #b36fff; } .furry-404-emoji { font-size: 4rem; margin-bottom: 1rem; } .furry-404 h1 { font-size: 4rem; margin: 0.5rem 0 0.2rem 0; color: #ff6fd8; font-weight: 900; } .furry-404 h2 { font-size: 1.6rem; margin-bottom: 1rem; color: #3a2d4d; } .furry-404 p { font-size: 1.1rem; margin-bottom: 2rem; color: #3a2d4d; } .social-sharing { margin: 2rem 0 1rem 0; display: flex; align-items: center; gap: 0.7rem; background: linear-gradient(135deg, #f8e1ff 0%, #e1f0ff 100%); padding: 1.5rem; border-radius: 24px; box-shadow: 0 4px 16px rgba(179, 111, 255, 0.08); position: relative; overflow: hidden; } .social-sharing::before { >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb content: ''; 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.6s ease; } <<<<<<< HEAD .furry-btn:hover::before { left: 100%; } .furry-btn:hover { background: var(--primary-gradient); transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-strong); } .furry-btn:active { transform: translateY(-2px) scale(1.02); } /* Enhanced Outline Button */ .furry-btn-outline { background: transparent; color: var(--text-light); border: 2px solid var(--text-light); border-radius: 32px; padding: 0.7rem 2.5rem; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } .furry-btn-outline::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--text-light); transition: left 0.4s ease; z-index: -1; } .furry-btn-outline:hover::before { left: 0; } .furry-btn-outline:hover { color: var(--text-primary); transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-medium); } /* Enhanced Secondary Button */ .furry-btn-secondary { background: var(--accent-gradient); color: var(--text-primary); border: none; border-radius: 32px; padding: 0.8rem 2.5rem; font-size: 1.1rem; font-weight: 700; box-shadow: var(--shadow-soft); cursor: pointer; transition: var(--transition); } .furry-btn-secondary:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-medium); } /* Enhanced Main Content */ .furry-main { min-height: calc(100vh - 200px); } /* Enhanced Hero Section */ .hero { background: var(--primary-gradient); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; border-radius: 0 0 50px 50px; box-shadow: var(--shadow-medium); } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,'); opacity: 0.3; } .hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 2rem; } .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: var(--text-light); text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); animation: fadeInUp 1s ease; } .hero .brand { background: var(--secondary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 900; } .hero p { font-size: 1.3rem; margin-bottom: 2rem; color: var(--text-light); opacity: 0.9; animation: fadeInUp 1s ease 0.2s both; } .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease 0.4s both; } /* Enhanced Services Section */ .services { padding: 4rem 0; text-align: center; } .services h2 { font-size: 2.5rem; margin-bottom: 3rem; color: var(--text-primary); text-align: center; } .service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 2rem; } /* Enhanced Service Cards */ .service-card { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--border-radius); padding: 2rem; text-align: center; transition: var(--transition); box-shadow: var(--shadow-soft); position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.6s ease; } .service-card:hover::before { left: 100%; } .service-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-strong); border-color: rgba(255, 255, 255, 0.3); } .service-card img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--border-radius-small); margin-bottom: 1.5rem; transition: var(--transition); } .service-card:hover img { transform: scale(1.05); } .service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-primary); } .service-card p { color: var(--text-secondary); line-height: 1.6; } /* Enhanced Gallery Preview */ .gallery-preview { padding: 4rem 0; text-align: center; background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } .gallery-preview h2 { font-size: 2.5rem; margin-bottom: 2rem; color: var(--text-primary); } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto 2rem; padding: 0 2rem; } .gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--border-radius-small); transition: var(--transition); box-shadow: var(--shadow-soft); } .gallery-grid img:hover { transform: scale(1.05); box-shadow: var(--shadow-medium); } /* Enhanced CTA Section */ .cta { background: var(--secondary-gradient); padding: 4rem 0; text-align: center; border-radius: 50px 50px 0 0; box-shadow: var(--shadow-medium); } .cta h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-light); } .cta p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--text-light); opacity: 0.9; } .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } /* Features Section */ .features { padding: 4rem 0; background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } .features h2 { font-size: 2.5rem; margin-bottom: 3rem; color: var(--text-primary); text-align: center; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .feature-card { padding: 2rem; text-align: center; transition: var(--transition); ======= .social-sharing:hover::before { left: 100%; } .social-sharing span { font-weight: 700; color: #b36fff; margin-right: 0.5rem; font-size: 1.1rem; } .social-sharing .share-label { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: #b36fff; margin-right: 1rem; } .social-sharing .share-label::before { content: '🌐'; font-size: 1.2rem; } .share-btn { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: 0 4px 12px rgba(179, 111, 255, 0.15); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 2px solid transparent; cursor: pointer; text-decoration: none; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb position: relative; overflow: hidden; } <<<<<<< HEAD .feature-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.6s ease; } .feature-card:hover::before { left: 100%; } .feature-card:hover { transform: translateY(-5px) scale(1.02); } .feature-icon { font-size: 3rem; margin-bottom: 1rem; animation: bounce 2s infinite; } .feature-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text-primary); font-weight: 700; } .feature-card p { color: var(--text-secondary); line-height: 1.6; } /* Testimonials Section */ .testimonials { padding: 4rem 0; background: var(--glass-bg); ======= .share-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255, 255, 255, 0.3); border-radius: 50%; transition: all 0.3s ease; transform: translate(-50%, -50%); } .share-btn:hover::before { width: 100%; height: 100%; } .share-btn svg { width: 24px; height: 24px; transition: transform 0.3s ease; position: relative; z-index: 1; } .share-btn:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 25px rgba(179, 111, 255, 0.25); } .share-btn:hover svg { transform: scale(1.1); } /* Social Platform Specific Colors */ .share-btn.twitter { background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%); color: white; } .share-btn.twitter:hover { background: linear-gradient(135deg, #0d8bd9 0%, #1da1f2 100%); box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4); } .share-btn.telegram { background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%); color: white; } .share-btn.telegram:hover { background: linear-gradient(135deg, #0077b3 0%, #0088cc 100%); box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4); } .share-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; } .share-btn.instagram:hover { background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%); box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4); } .share-btn.facebook { background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%); color: white; } .share-btn.facebook:hover { background: linear-gradient(135deg, #166fe5 0%, #1877f2 100%); box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4); } .share-btn.whatsapp { background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%); color: white; } .share-btn.whatsapp:hover { background: linear-gradient(135deg, #20ba5a 0%, #25d366 100%); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); } .share-btn.pinterest { background: linear-gradient(135deg, #e60023 0%, #cc001f 100%); color: white; } .share-btn.pinterest:hover { background: linear-gradient(135deg, #cc001f 0%, #e60023 100%); box-shadow: 0 8px 25px rgba(230, 0, 35, 0.4); } .share-btn.linkedin { background: linear-gradient(135deg, #0077b5 0%, #006097 100%); color: white; } .share-btn.linkedin:hover { background: linear-gradient(135deg, #006097 0%, #0077b5 100%); box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4); } .share-btn.email { background: linear-gradient(135deg, #ff6fd8 0%, #b36fff 100%); color: white; } .share-btn.email:hover { background: linear-gradient(135deg, #b36fff 0%, #ff6fd8 100%); box-shadow: 0 8px 25px rgba(255, 111, 216, 0.4); } .share-btn.copy { background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%); color: white; } .share-btn.copy:hover { background: linear-gradient(135deg, #5a6268 0%, #6c757d 100%); box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4); } /* Share Success Animation */ .share-btn.copied { animation: shareSuccess 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55); } @keyframes shareSuccess { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } } /* Mobile Responsive Social Sharing */ @media (max-width: 768px) { .social-sharing { flex-direction: column; gap: 1rem; padding: 1.5rem; } .social-sharing .share-label { margin-right: 0; margin-bottom: 0.5rem; } .share-btn { width: 44px; height: 44px; } .share-btn svg { width: 20px; height: 20px; } } @media (max-width: 480px) { .social-sharing { padding: 1rem; } .share-btn { width: 40px; height: 40px; } .share-btn svg { width: 18px; height: 18px; } } .newsletter-popup { display: none; position: fixed; left: 50%; bottom: 40px; transform: translateX(-50%); background: linear-gradient(135deg, #fff 0%, #f8e1ff 100%); border-radius: 32px; box-shadow: 0 8px 40px rgba(179, 111, 255, 0.25); padding: 2.5rem 3rem 2rem 3rem; z-index: 3000; min-width: 380px; max-width: 90vw; text-align: center; color: #b36fff; animation: newsletterSlideIn 0.8s cubic-bezier(.68,-0.55,.27,1.55); border: 2px solid rgba(179, 111, 255, 0.1); >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } <<<<<<< HEAD .testimonials h2 { font-size: 2.5rem; margin-bottom: 3rem; color: var(--text-primary); text-align: center; } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .testimonial-card { padding: 2rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; } .testimonial-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.6s ease; } .testimonial-card:hover::before { left: 100%; } .testimonial-card:hover { transform: translateY(-5px) scale(1.02); } .testimonial-content p { font-size: 1.1rem; font-style: italic; margin-bottom: 1.5rem; color: var(--text-primary); line-height: 1.6; } .testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; } .testimonial-author strong { color: var(--text-primary); font-size: 1.1rem; } .testimonial-author span { color: var(--text-secondary); font-size: 0.9rem; } /* Newsletter Section */ .newsletter-section { padding: 4rem 0; } .newsletter-card { max-width: 600px; margin: 0 auto; padding: 3rem 2rem; text-align: center; transition: var(--transition); } .newsletter-card:hover { transform: translateY(-5px); } .newsletter-card h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--text-primary); } .newsletter-card p { font-size: 1.1rem; margin-bottom: 2rem; color: var(--text-secondary); line-height: 1.6; ======= .newsletter-popup.show { display: block; } .newsletter-popup.hide { animation: newsletterSlideOut 0.6s cubic-bezier(.68,-0.55,.27,1.55) forwards; } @keyframes newsletterSlideIn { 0% { transform: translateX(-50%) translateY(100px) scale(0.8); opacity: 0; } 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; } } @keyframes newsletterSlideOut { 0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; } 100% { transform: translateX(-50%) translateY(100px) scale(0.8); opacity: 0; } } .newsletter-content { display: flex; flex-direction: column; align-items: center; gap: 1rem; } .newsletter-emoji { font-size: 3rem; margin-bottom: 0.5rem; animation: bounce 2s infinite; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } } .newsletter-text { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; color: #3a2d4d; } .newsletter-subtitle { font-size: 1rem; color: #666; margin-bottom: 1.5rem; line-height: 1.4; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb } .newsletter-form { display: flex; <<<<<<< HEAD gap: 1rem; ======= gap: 0.8rem; width: 100%; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb justify-content: center; align-items: center; flex-wrap: wrap; } .newsletter-form input[type="email"] { <<<<<<< HEAD padding: 0.8rem 1.5rem; border-radius: 25px; border: 2px solid var(--glass-border); font-size: 1.1rem; outline: none; background: rgba(255, 255, 255, 0.9); transition: var(--transition); min-width: 250px; } .newsletter-form input[type="email"]:focus { border-color: var(--text-primary); box-shadow: var(--shadow-soft); ======= padding: 0.8rem 1.2rem; border-radius: 20px; border: 2px solid #e1f0ff; font-size: 1.1rem; outline: none; width: 220px; transition: all 0.3s ease; background: #fff; box-shadow: 0 2px 8px rgba(179, 111, 255, 0.1); } .newsletter-form input[type="email"]:focus { border-color: #b36fff; box-shadow: 0 4px 16px rgba(179, 111, 255, 0.2); >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb transform: translateY(-2px); } .newsletter-form input[type="email"]::placeholder { <<<<<<< HEAD color: var(--text-secondary); } /* Enhanced Footer */ .furry-footer { background: var(--text-primary); color: var(--text-light); padding: 2rem 0; text-align: center; border-radius: 0 0 30px 30px; } .footer-links a { color: var(--text-light); text-decoration: none; margin: 0 0.5rem; transition: var(--transition); } .footer-links a:hover { color: #ff6fd8; text-decoration: underline; } /* Enhanced Scroll to Top Button */ ======= color: #999; font-style: italic; } .newsletter-form button { background: linear-gradient(135deg, #ff6fd8 0%, #b36fff 100%); color: white; border: none; border-radius: 20px; padding: 0.8rem 1.5rem; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(255, 111, 216, 0.3); position: relative; overflow: hidden; } .newsletter-form button::before { content: ''; 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-form button:hover::before { left: 100%; } .newsletter-form button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(255, 111, 216, 0.4); } .newsletter-form button:active { transform: translateY(-1px) scale(1.02); } .newsletter-form button.loading { pointer-events: none; opacity: 0.7; } .newsletter-form button.loading::after { content: ''; position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; margin: -10px 0 0 -10px; border: 2px solid transparent; border-top: 2px solid white; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .newsletter-close { position: absolute; top: 15px; right: 20px; background: rgba(179, 111, 255, 0.1); border: none; border-radius: 50%; width: 32px; height: 32px; font-size: 1.2rem; color: #b36fff; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; } .newsletter-close:hover { background: rgba(179, 111, 255, 0.2); color: #ff6fd8; transform: scale(1.1); } .newsletter-close:active { transform: scale(0.95); } /* Newsletter Success State */ .newsletter-success { background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%); color: white; } .newsletter-success .newsletter-text { color: white; } .newsletter-success .newsletter-subtitle { color: rgba(255, 255, 255, 0.9); } .newsletter-success .newsletter-emoji { animation: confetti 0.6s ease; } @keyframes confetti { 0% { transform: scale(0) rotate(0deg); } 50% { transform: scale(1.2) rotate(180deg); } 100% { transform: scale(1) rotate(360deg); } } /* Newsletter Error State */ .newsletter-error { background: linear-gradient(135deg, #ff6f91 0%, #e74c3c 100%); color: white; } .newsletter-error .newsletter-text { color: white; } .newsletter-error .newsletter-subtitle { color: rgba(255, 255, 255, 0.9); } /* Newsletter Benefits */ .newsletter-benefits { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; font-size: 0.9rem; color: #666; } .newsletter-benefits .benefit { display: flex; align-items: center; gap: 0.5rem; } .newsletter-benefits .benefit::before { content: '✨'; font-size: 1rem; } /* Mobile Responsive Newsletter */ @media (max-width: 768px) { .newsletter-popup { left: 20px; right: 20px; transform: none; min-width: auto; padding: 2rem 1.5rem 1.5rem 1.5rem; } .newsletter-form { flex-direction: column; gap: 1rem; } .newsletter-form input[type="email"] { width: 100%; max-width: 280px; } .newsletter-form button { width: 100%; max-width: 280px; } .newsletter-emoji { font-size: 2.5rem; } .newsletter-text { font-size: 1.2rem; } .newsletter-subtitle { font-size: 0.9rem; } } @media (max-width: 480px) { .newsletter-popup { left: 10px; right: 10px; padding: 1.5rem 1rem 1rem 1rem; } .newsletter-emoji { font-size: 2rem; } .newsletter-text { font-size: 1.1rem; } .newsletter-subtitle { font-size: 0.85rem; } } .product-list { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin: 2rem 0 3rem 0; } .product-card { background: #fff; border-radius: 24px; box-shadow: 0 2px 16px rgba(179, 111, 255, 0.10); padding: 1.5rem 1.2rem 1.2rem 1.2rem; width: 270px; display: flex; flex-direction: column; align-items: center; transition: transform 0.2s, box-shadow 0.2s; position: relative; } .product-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 8px 32px rgba(179, 111, 255, 0.18); } .product-image { width: 180px; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 1rem; background: #f8e1ff; box-shadow: 0 2px 8px rgba(179, 111, 255, 0.08); } .product-info { text-align: center; } .product-info h3 { margin: 0.5rem 0 0.2rem 0; color: #b36fff; font-size: 1.2rem; font-weight: 700; } .product-price { color: #ff6fd8; font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; } @media (max-width: 900px) { .product-list { flex-direction: column; align-items: center; } .product-card { width: 90vw; max-width: 350px; } } .product-detail-card { max-width: 700px; margin: 3rem auto 2rem auto; background: #fff; border-radius: 32px; box-shadow: 0 4px 32px rgba(179, 111, 255, 0.12); padding: 2.5rem 2rem 2rem 2rem; display: flex; flex-direction: column; align-items: center; color: #3a2d4d; } .product-detail-image { width: 320px; height: 320px; object-fit: cover; border-radius: 24px; margin-bottom: 2rem; background: #f8e1ff; box-shadow: 0 2px 16px rgba(179, 111, 255, 0.10); } .product-detail-info { width: 100%; text-align: center; } .product-detail-info h2 { color: #b36fff; font-size: 2rem; margin-bottom: 0.5rem; } .product-detail-price { color: #ff6fd8; font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; } .product-detail-desc { font-size: 1.1rem; margin-bottom: 1.5rem; } .product-detail-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; } @media (max-width: 900px) { .product-detail-card { padding: 1.2rem 0.5rem; } .product-detail-image { width: 90vw; max-width: 320px; height: 40vw; max-height: 320px; } } .cart-list { display: flex; flex-direction: column; gap: 2rem; margin: 2rem 0 3rem 0; } .cart-item-card { background: #fff; border-radius: 24px; box-shadow: 0 2px 16px rgba(179, 111, 255, 0.10); padding: 1.5rem 1.2rem 1.2rem 1.2rem; display: flex; align-items: center; gap: 2rem; position: relative; } .cart-item-image { width: 100px; height: 100px; object-fit: cover; border-radius: 16px; background: #f8e1ff; box-shadow: 0 2px 8px rgba(179, 111, 255, 0.08); } .cart-item-info { flex: 1; } .cart-item-info h3 { margin: 0.5rem 0 0.2rem 0; color: #b36fff; font-size: 1.1rem; font-weight: 700; } .cart-item-price { color: #ff6fd8; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.7rem; } .cart-item-qty { display: flex; gap: 1rem; align-items: center; } .cart-qty-input { width: 60px; padding: 0.5rem 0.7rem; border-radius: 12px; border: 2px solid #e1f0ff; font-size: 1rem; margin-right: 0.5rem; } .cart-summary { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; margin-top: 2rem; font-size: 1.2rem; font-weight: 700; color: #b36fff; } .cart-total { color: #ff6fd8; font-size: 1.3rem; font-weight: 900; } @media (max-width: 900px) { .cart-item-card { flex-direction: column; align-items: flex-start; gap: 1rem; } .cart-summary { flex-direction: column; align-items: flex-end; gap: 0.7rem; } } .checkout-container { max-width: 900px; margin: 3rem auto 2rem auto; background: #fff; border-radius: 32px; box-shadow: 0 4px 32px rgba(179, 111, 255, 0.12); padding: 2.5rem 2rem 2rem 2rem; display: flex; gap: 3rem; flex-wrap: wrap; } .checkout-form { flex: 2; min-width: 260px; } .checkout-summary { flex: 1; min-width: 220px; background: #f8e1ff; border-radius: 24px; padding: 1.5rem 1rem; box-shadow: 0 2px 8px rgba(179, 111, 255, 0.08); margin-top: 1.5rem; height: fit-content; } .checkout-summary h3 { color: #b36fff; font-size: 1.2rem; margin-bottom: 1rem; } .checkout-summary ul { list-style: none; padding: 0; margin: 0 0 1rem 0; } .checkout-summary li { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 1.05rem; } .checkout-total { color: #ff6fd8; font-size: 1.2rem; font-weight: 900; margin-top: 1rem; text-align: right; } @media (max-width: 900px) { .checkout-container { flex-direction: column; gap: 1.5rem; padding: 1.2rem 0.5rem; } .checkout-summary { margin-top: 0.5rem; } } .profile-card { max-width: 600px; margin: 3rem auto 2rem auto; background: #fff; border-radius: 32px; box-shadow: 0 4px 32px rgba(179, 111, 255, 0.12); padding: 2.5rem 2rem 2rem 2rem; text-align: center; color: #3a2d4d; } .profile-info { margin-bottom: 2rem; } .profile-orders { margin-bottom: 2rem; } .profile-orders ul { list-style: none; padding: 0; margin: 0; } .profile-orders li { background: #f8e1ff; border-radius: 16px; margin-bottom: 0.7rem; padding: 0.7rem 1rem; color: #b36fff; font-weight: 700; } /* Scroll to Top Button */ >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb .scroll-to-top { position: fixed; bottom: 2rem; right: 2rem; <<<<<<< HEAD background: var(--secondary-gradient); color: var(--text-light); ======= background: linear-gradient(135deg, #b36fff 0%, #ff6fd8 100%); color: white; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb border: none; border-radius: 50%; width: 60px; height: 60px; font-size: 1.5rem; cursor: pointer; <<<<<<< HEAD transition: var(--transition); box-shadow: var(--shadow-medium); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; transform: translateY(20px); z-index: 1000; ======= box-shadow: 0 4px 20px rgba(179, 111, 255, 0.3); transition: all 0.3s ease; opacity: 0; visibility: hidden; z-index: 999; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb } .scroll-to-top.show { opacity: 1; <<<<<<< HEAD transform: translateY(0); ======= visibility: visible; >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb } .scroll-to-top:hover { transform: translateY(-5px) scale(1.1); <<<<<<< HEAD box-shadow: var(--shadow-strong); } /* Enhanced Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } } /* Enhanced Mobile Responsiveness */ ======= box-shadow: 0 8px 30px rgba(179, 111, 255, 0.4); } /* Mobile Responsive */ >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb @media (max-width: 768px) { .mobile-nav-toggle { display: block; } <<<<<<< HEAD ======= >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb nav { position: fixed; top: 100%; left: 0; right: 0; <<<<<<< HEAD background: var(--primary-gradient); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 2rem; flex-direction: column; gap: 1rem; transform: translateY(-100%); transition: var(--transition); border-top: 1px solid var(--glass-border); box-shadow: var(--shadow-medium); } nav.active { transform: translateY(0); } nav a { width: 100%; text-align: center; margin: 0; padding: 1rem; font-size: 1.2rem; } ======= background: linear-gradient(90deg, #b36fff 0%, #ff6fd8 100%); flex-direction: column; padding: 2rem; transform: translateY(-100%); transition: transform 0.3s ease; box-shadow: 0 4px 20px rgba(179, 111, 255, 0.2); } nav.active { transform: translateY(0); } nav a { margin: 0.5rem 0; padding: 1rem; width: 100%; text-align: center; border-radius: 15px; } >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb .header-actions { flex-direction: column; gap: 0.5rem; } <<<<<<< HEAD .header-actions .btn { margin: 0; width: 100%; text-align: center; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.1rem; } .hero-actions { flex-direction: column; align-items: center; } .service-cards { grid-template-columns: 1fr; gap: 1.5rem; } .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .features-grid { grid-template-columns: 1fr; gap: 1.5rem; } .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; } .cta-actions { flex-direction: column; align-items: center; } .newsletter-form { flex-direction: column; align-items: center; } .newsletter-form input[type="email"] { min-width: auto; width: 100%; max-width: 300px; } ======= .header-actions .btn { margin: 0; width: 100%; } >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb .scroll-to-top { bottom: 1rem; right: 1rem; width: 50px; height: 50px; font-size: 1.2rem; } } @media (max-width: 480px) { .container { padding: 0 1rem; } <<<<<<< HEAD .logo img { height: 40px; } .furry-header { padding: 0.3rem 0; } .hero { padding: 2rem 0; } .hero h1 { font-size: 2rem; } .hero p { font-size: 1rem; } .services h2, .gallery-preview h2, .cta h2, .features h2, .testimonials h2 { font-size: 2rem; } .service-card, .gallery-grid img, .feature-card, .testimonial-card { border-radius: var(--border-radius-small); } .newsletter-card { padding: 2rem 1rem; } .newsletter-card h2 { font-size: 1.5rem; } .newsletter-card p { font-size: 1rem; } ======= .logo img { height: 40px; } .furry-header { padding: 0.3rem 0; } >>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb }