|
<!DOCTYPE html> |
|
<html lang="ru"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>ОПТИКА "ОПТОН" - Профессиональные услуги по ремонту очков</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700&display=swap" rel="stylesheet"> |
|
<style> |
|
:root { |
|
--metal-primary: #3a3a3a; |
|
--metal-secondary: #1a1a1a; |
|
--metal-accent: #64c8ff; |
|
--metal-dark: #0a0a0a; |
|
--metal-light: #e0e0e0; |
|
} |
|
|
|
body { |
|
font-family: 'Montserrat', sans-serif; |
|
background-color: var(--metal-dark); |
|
color: var(--metal-light); |
|
overflow-x: hidden; |
|
} |
|
|
|
.metal-text { |
|
font-family: 'Orbitron', sans-serif; |
|
font-weight: 500; |
|
letter-spacing: 1px; |
|
color: white; |
|
text-shadow: 0 0 8px rgba(100, 200, 255, 0.6); |
|
} |
|
|
|
.metal-bg { |
|
background: linear-gradient(145deg, var(--metal-secondary), var(--metal-primary)); |
|
border: 1px solid rgba(100, 200, 255, 0.1); |
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); |
|
position: relative; |
|
overflow: hidden; |
|
} |
|
|
|
.metal-bg::before { |
|
content: ''; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
right: 0; |
|
bottom: 0; |
|
background: linear-gradient( |
|
135deg, |
|
rgba(100, 200, 255, 0.05) 0%, |
|
rgba(100, 200, 255, 0) 20%, |
|
rgba(100, 200, 255, 0) 80%, |
|
rgba(100, 200, 255, 0.05) 100% |
|
); |
|
pointer-events: none; |
|
} |
|
|
|
.metal-card { |
|
transition: all 0.3s ease; |
|
transform-style: preserve-3d; |
|
perspective: 1000px; |
|
} |
|
|
|
.metal-card:hover { |
|
transform: translateY(-5px) scale(1.02); |
|
box-shadow: 0 10px 30px rgba(100, 200, 255, 0.2); |
|
} |
|
|
|
.metal-card::after { |
|
content: ''; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
right: 0; |
|
bottom: 0; |
|
background: linear-gradient( |
|
135deg, |
|
rgba(100, 200, 255, 0.1) 0%, |
|
rgba(100, 200, 255, 0) 100% |
|
); |
|
opacity: 0; |
|
transition: opacity 0.3s ease; |
|
} |
|
|
|
.metal-card:hover::after { |
|
opacity: 1; |
|
} |
|
|
|
.metal-icon { |
|
background: linear-gradient(145deg, var(--metal-primary), var(--metal-secondary)); |
|
color: var(--metal-accent); |
|
border: 1px solid rgba(100, 200, 255, 0.2); |
|
box-shadow: 0 0 15px rgba(100, 200, 255, 0.3); |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.metal-icon:hover { |
|
transform: rotate(5deg) scale(1.1); |
|
box-shadow: 0 0 20px rgba(100, 200, 255, 0.5); |
|
} |
|
|
|
.metal-btn { |
|
background: linear-gradient(135deg, var(--metal-accent), #3a8bc8); |
|
color: var(--metal-dark); |
|
font-weight: 600; |
|
border: none; |
|
transition: all 0.3s ease; |
|
box-shadow: 0 0 15px rgba(100, 200, 255, 0.4); |
|
position: relative; |
|
overflow: hidden; |
|
} |
|
|
|
.metal-btn:hover { |
|
background: linear-gradient(135deg, #3a8bc8, var(--metal-accent)); |
|
transform: translateY(-2px); |
|
box-shadow: 0 0 25px rgba(100, 200, 255, 0.6); |
|
} |
|
|
|
.metal-btn::after { |
|
content: ''; |
|
position: absolute; |
|
top: -50%; |
|
left: -50%; |
|
width: 200%; |
|
height: 200%; |
|
background: linear-gradient( |
|
to bottom right, |
|
rgba(255, 255, 255, 0.3) 0%, |
|
rgba(255, 255, 255, 0) 60% |
|
); |
|
transform: rotate(30deg); |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.metal-btn:hover::after { |
|
left: 100%; |
|
} |
|
|
|
.metal-header { |
|
background: rgba(20, 20, 20, 0.9); |
|
backdrop-filter: blur(10px); |
|
border-bottom: 1px solid rgba(100, 200, 255, 0.1); |
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); |
|
} |
|
|
|
.metal-nav-link { |
|
position: relative; |
|
font-weight: 500; |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.metal-nav-link::after { |
|
content: ''; |
|
position: absolute; |
|
width: 0; |
|
height: 2px; |
|
bottom: -5px; |
|
left: 0; |
|
background: linear-gradient(90deg, var(--metal-accent), #3a8bc8); |
|
transition: width 0.3s ease; |
|
} |
|
|
|
.metal-nav-link:hover { |
|
color: white; |
|
text-shadow: 0 0 5px rgba(100, 200, 255, 0.5); |
|
} |
|
|
|
.metal-nav-link:hover::after { |
|
width: 100%; |
|
} |
|
|
|
.metal-section-title { |
|
position: relative; |
|
display: inline-block; |
|
font-family: 'Orbitron', sans-serif; |
|
color: var(--metal-accent); |
|
text-shadow: 0 0 10px rgba(100, 200, 255, 0.5); |
|
} |
|
|
|
.metal-section-title::after { |
|
content: ''; |
|
position: absolute; |
|
width: 50%; |
|
height: 3px; |
|
bottom: -10px; |
|
left: 25%; |
|
background: linear-gradient(90deg, transparent, var(--metal-accent), transparent); |
|
box-shadow: 0 0 10px rgba(100, 200, 255, 0.5); |
|
} |
|
|
|
.metal-highlight { |
|
background: rgba(100, 200, 255, 0.1); |
|
border-left: 3px solid var(--metal-accent); |
|
position: relative; |
|
} |
|
|
|
.metal-highlight::before { |
|
content: ''; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
right: 0; |
|
bottom: 0; |
|
background: linear-gradient( |
|
to right, |
|
rgba(100, 200, 255, 0.1) 0%, |
|
rgba(100, 200, 255, 0) 100% |
|
); |
|
} |
|
|
|
@keyframes pulse { |
|
0% { box-shadow: 0 0 0 0 rgba(100, 200, 255, 0.4); } |
|
70% { box-shadow: 0 0 0 10px rgba(100, 200, 255, 0); } |
|
100% { box-shadow: 0 0 0 0 rgba(100, 200, 255, 0); } |
|
} |
|
|
|
.pulse { |
|
animation: pulse 2s infinite; |
|
} |
|
|
|
.metal-divider { |
|
height: 1px; |
|
background: linear-gradient(90deg, transparent, rgba(100, 200, 255, 0.3), transparent); |
|
} |
|
|
|
.metal-grid-pattern { |
|
background-image: |
|
linear-gradient(rgba(100, 200, 255, 0.05) 1px, transparent 1px), |
|
linear-gradient(90deg, rgba(100, 200, 255, 0.05) 1px, transparent 1px); |
|
background-size: 20px 20px; |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-[#0a0a0a] metal-grid-pattern"> |
|
|
|
<div class="fixed inset-0 pointer-events-none"> |
|
<div class="absolute w-1 h-1 bg-[#64c8ff] rounded-full opacity-30" style="top: 20%; left: 15%;"></div> |
|
<div class="absolute w-2 h-2 bg-[#64c8ff] rounded-full opacity-20" style="top: 60%; left: 50%;"></div> |
|
<div class="absolute w-1 h-1 bg-[#64c8ff] rounded-full opacity-30" style="top: 80%; left: 70%;"></div> |
|
<div class="absolute w-1 h-1 bg-[#64c8ff] rounded-full opacity-20" style="top: 30%; left: 80%;"></div> |
|
</div> |
|
|
|
|
|
<header class="metal-header sticky top-0 z-50"> |
|
<div class="container mx-auto px-4 py-3"> |
|
<div class="flex justify-between items-center"> |
|
<div class="flex items-center space-x-3"> |
|
<div class="metal-icon p-3 rounded-lg pulse"> |
|
<i class="fas fa-glasses text-xl"></i> |
|
</div> |
|
<h1 class="text-2xl metal-text">ОПТИКА "ОПТОН"</h1> |
|
</div> |
|
<nav class="hidden md:flex space-x-8 items-center"> |
|
<a href="#services" class="metal-nav-link font-medium text-gray-300">Услуги</a> |
|
<a href="#repair" class="metal-nav-link font-medium text-gray-300">Ремонт</a> |
|
<a href="#manufacturing" class="metal-nav-link font-medium text-gray-300">Изготовление</a> |
|
<a href="#about" class="metal-nav-link font-medium text-gray-300">О нас</a> |
|
<a href="#contacts" class="metal-nav-link font-medium text-gray-300">Контакты</a> |
|
<a href="tel:+79263236886" class="metal-btn px-4 py-2 rounded font-medium flex items-center"> |
|
<i class="fas fa-phone mr-2"></i>+7 (926) 323-68-86 |
|
</a> |
|
</nav> |
|
<div class="md:hidden"> |
|
<button id="menu-btn" class="text-gray-300 hover:text-white focus:outline-none"> |
|
<i class="fas fa-bars text-xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="mobile-menu" class="hidden md:hidden bg-[#1a1a1a] border-t border-[rgba(100,200,255,0.1)] px-4 py-2"> |
|
<div class="flex flex-col space-y-3 py-3"> |
|
<a href="#services" class="py-2 text-gray-300 hover:text-white">Услуги</a> |
|
<a href="#repair" class="py-2 text-gray-300 hover:text-white">Ремонт</a> |
|
<a href="#manufacturing" class="py-2 text-gray-300 hover:text-white">Изготовление</a> |
|
<a href="#about" class="py-2 text-gray-300 hover:text-white">О нас</a> |
|
<a href="#contacts" class="py-2 text-gray-300 hover:text-white">Контакты</a> |
|
<a href="tel:+79263236886" class="metal-btn px-4 py-2 rounded font-medium text-center"> |
|
<i class="fas fa-phone mr-2"></i>+7 (926) 323-68-86 |
|
</a> |
|
</div> |
|
</div> |
|
</header> |
|
|
|
|
|
<section class="relative py-32 overflow-hidden"> |
|
<div class="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80')] bg-cover bg-center opacity-30"></div> |
|
<div class="absolute inset-0 bg-gradient-to-b from-[rgba(10,10,10,0.8)] to-[rgba(10,10,10,0.9)]"></div> |
|
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9InJnYmEoMTAwLDIwMCwyNTUsMC4xKSIgc3Ryb2tlLXdpZHRoPSIxIj48L3BhdGg+Cjwvc3ZnPg==')] opacity-20"></div> |
|
|
|
<div class="container mx-auto px-4 relative z-10"> |
|
<div class="max-w-3xl mx-auto text-center"> |
|
<h1 class="text-4xl md:text-5xl font-bold mb-6 text-white metal-text">Профессиональный ремонт очков</h1> |
|
<p class="text-xl text-gray-300 mb-8">Качественные услуги по ремонту и изготовлению очков с 20-летним опытом работы</p> |
|
<div class="flex flex-col sm:flex-row justify-center gap-4"> |
|
<a href="tel:+79263236886" class="metal-btn px-8 py-3 rounded font-medium flex items-center justify-center"> |
|
<i class="fas fa-phone mr-3"></i>Заказать звонок |
|
</a> |
|
<a href="#contacts" class="metal-bg hover:bg-[#252525] text-white px-8 py-3 rounded font-medium transition flex items-center justify-center border border-[rgba(100,200,255,0.2)]"> |
|
<i class="fas fa-map-marker-alt mr-3"></i>Найти нас |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="services" class="py-16 relative overflow-hidden"> |
|
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9InJnYmEoMTAwLDIwMCwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=')] opacity-30"></div> |
|
<div class="container mx-auto px-4 relative z-10"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4 metal-section-title">Наши услуги</h2> |
|
<p class="text-gray-400 max-w-2xl mx-auto">Мы предлагаем полный спектр услуг по ремонту и обслуживанию очков</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="metal-bg metal-card rounded-lg p-6 relative"> |
|
<div class="metal-icon p-4 rounded-lg w-16 h-16 flex items-center justify-center mb-4"> |
|
<i class="fas fa-tools text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3 text-white">Ремонт очков</h3> |
|
<ul class="space-y-2 text-gray-400"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>Замена носовых упоров</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>Замена заушников</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>Замена винтов</span> |
|
</li> |
|
</ul> |
|
</div> |
|
|
|
|
|
<div class="metal-bg metal-card rounded-lg p-6 relative"> |
|
<div class="metal-icon p-4 rounded-lg w-16 h-16 flex items-center justify-center mb-4"> |
|
<i class="fas fa-paint-brush text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3 text-white">Окраска линз</h3> |
|
<ul class="space-y-2 text-gray-400"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>Окраска полимерных линз</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>Широкий выбор цветов</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>Градиентные решения</span> |
|
</li> |
|
</ul> |
|
</div> |
|
|
|
|
|
<div class="metal-bg metal-card rounded-lg p-6 relative"> |
|
<div class="metal-icon p-4 rounded-lg w-16 h-16 flex items-center justify-center mb-4"> |
|
<i class="fas fa-glasses text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold mb-3 text-white">Изготовление очков</h3> |
|
<ul class="space-y-2 text-gray-400"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>По индивидуальному рецепту</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>Качественные материалы</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-[#64c8ff] mt-1 mr-2"></i> |
|
<span>Профессиональный подход</span> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="repair" class="py-16 relative overflow-hidden"> |
|
<div class="container mx-auto px-4 relative z-10"> |
|
<div class="flex flex-col lg:flex-row items-center"> |
|
<div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-8"> |
|
<img src="https://images.unsplash.com/photo-1556306535-38febf6782e7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="Ремонт очков" |
|
class="rounded-lg shadow-lg w-full border border-[rgba(100,200,255,0.2)] transform transition duration-500 hover:scale-105"> |
|
</div> |
|
<div class="lg:w-1/2"> |
|
<h2 class="text-3xl font-bold mb-6 metal-section-title">Ремонт очков</h2> |
|
<p class="text-gray-400 mb-6">Наша мастерская специализируется на всех видах ремонта очков. Мы используем только качественные материалы и профессиональное оборудование.</p> |
|
|
|
<div class="space-y-4"> |
|
<div class="flex items-start"> |
|
<div class="metal-icon p-2 rounded mr-4"> |
|
<i class="fas fa-check text-[#64c8ff]"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Быстро</h4> |
|
<p class="text-gray-400 text-sm">Большинство ремонтов выполняем за 15-30 минут</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="metal-icon p-2 rounded mr-4"> |
|
<i class="fas fa-check text-[#64c8ff]"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Качественно</h4> |
|
<p class="text-gray-400 text-sm">Используем проверенные материалы и оборудование</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="metal-icon p-2 rounded mr-4"> |
|
<i class="fas fa-check text-[#64c8ff]"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Гарантия</h4> |
|
<p class="text-gray-400 text-sm">Предоставляем гарантию на все виды работ</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-8 metal-highlight p-4 rounded"> |
|
<p class="text-[#64c8ff] font-medium flex items-start"> |
|
<i class="fas fa-info-circle mr-2 mt-1"></i> |
|
<span>Обратите внимание: мы не производим пайку оправ.</span> |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="manufacturing" class="py-16 relative overflow-hidden"> |
|
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9InJnYmEoMTAwLDIwMCwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=')] opacity-30"></div> |
|
<div class="container mx-auto px-4 relative z-10"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4 metal-section-title">Изготовление очков</h2> |
|
<p class="text-gray-400 max-w-2xl mx-auto">Мы изготавливаем очки по вашему рецепту с учетом всех индивидуальных особенностей</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
|
|
<div class="metal-bg metal-card rounded-lg p-8 flex flex-col items-center text-center"> |
|
<div class="metal-icon text-[#64c8ff] rounded-lg w-16 h-16 flex items-center justify-center mb-4 text-2xl font-bold">1</div> |
|
<h3 class="text-xl font-semibold mb-3 text-white">Консультация</h3> |
|
<p class="text-gray-400">Профессиональный подбор оправы и линз с учетом ваших потребностей</p> |
|
</div> |
|
|
|
|
|
<div class="metal-bg metal-card rounded-lg p-8 flex flex-col items-center text-center"> |
|
<div class="metal-icon text-[#64c8ff] rounded-lg w-16 h-16 flex items-center justify-center mb-4 text-2xl font-bold">2</div> |
|
<h3 class="text-xl font-semibold mb-3 text-white">Изготовление</h3> |
|
<p class="text-gray-400">Точное изготовление очков по вашему рецепту на профессиональном оборудовании</p> |
|
</div> |
|
|
|
|
|
<div class="metal-bg metal-card rounded-lg p-8 flex flex-col items-center text-center"> |
|
<div class="metal-icon text-[#64c8ff] rounded-lg w-16 h-16 flex items-center justify-center mb-4 text-2xl font-bold">3</div> |
|
<h3 class="text-xl font-semibold mb-3 text-white">Примерка</h3> |
|
<p class="text-gray-400">Точная подгонка и настройка очков для максимального комфорта</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="about" class="py-16 relative overflow-hidden"> |
|
<div class="container mx-auto px-4 relative z-10"> |
|
<div class="flex flex-col lg:flex-row items-center"> |
|
<div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-8"> |
|
<h2 class="text-3xl font-bold mb-6 metal-section-title">О нашей мастерской</h2> |
|
<p class="text-gray-400 mb-6">Наша мастерская уже более 20 лет предоставляет услуги по ремонту и изготовлению очков. Мы гордимся своим вниманием к каждому клиенту и качеством выполняемой работы.</p> |
|
|
|
<div class="space-y-4"> |
|
<div class="flex items-start"> |
|
<div class="metal-icon p-2 rounded mr-4"> |
|
<i class="fas fa-check text-[#64c8ff]"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Опыт</h4> |
|
<p class="text-gray-400 text-sm">20 лет профессиональной работы</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="metal-icon p-2 rounded mr-4"> |
|
<i class="fas fa-check text-[#64c8ff]"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Клиенты</h4> |
|
<p class="text-gray-400 text-sm">Тысячи довольных клиентов</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="metal-icon p-2 rounded mr-4"> |
|
<i class="fas fa-check text-[#64c8ff]"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Оборудование</h4> |
|
<p class="text-gray-400 text-sm">Современное профессиональное оборудование</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="lg:w-1/2"> |
|
<img src="https://images.unsplash.com/photo-1581093450021-559792f1d1b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="Мастерская" |
|
class="rounded-lg shadow-lg w-full border border-[rgba(100,200,255,0.2)] transform transition duration-500 hover:scale-105"> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contacts" class="py-16 relative overflow-hidden"> |
|
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9InJnYmEoMTAwLDIwMCwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=')] opacity-30"></div> |
|
<div class="container mx-auto px-4 relative z-10"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4 metal-section-title">Контакты</h2> |
|
<p class="text-gray-400 max-w-2xl mx-auto">Мы всегда рады помочь вам с ремонтом или изготовлением очков</p> |
|
</div> |
|
|
|
<div class="flex flex-col lg:flex-row gap-8"> |
|
<div class="lg:w-1/2"> |
|
<div class="metal-bg p-8 rounded-lg h-full"> |
|
<h3 class="text-xl font-semibold mb-6 text-white">Контактная информация</h3> |
|
|
|
<div class="space-y-6"> |
|
<div class="flex items-start"> |
|
<div class="metal-icon p-3 rounded mr-4"> |
|
<i class="fas fa-map-marker-alt"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Адрес</h4> |
|
<p class="text-gray-400">Москва, ул.Берзарина д.34 стр.12</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="metal-icon p-3 rounded mr-4"> |
|
<i class="fas fa-phone"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Телефон</h4> |
|
<p class="text-gray-400">+7 (926) 323-68-86</p> |
|
<a href="tel:+79263236886" class="text-[#64c8ff] text-sm mt-1 inline-block hover:underline">Позвонить</a> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="metal-icon p-3 rounded mr-4"> |
|
<i class="fas fa-clock"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold text-white">Время работы</h4> |
|
<p class="text-gray-400">Пн-Чт: 8:00 - 16:00</p> |
|
<p class="text-gray-400">Вс: 9:00 - 14:00</p> |
|
<p class="text-gray-400">Пт-Сб: выходной</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="lg:w-1/2"> |
|
<div class="metal-bg p-8 rounded-lg h-full"> |
|
<h3 class="text-xl font-semibold mb-6 text-white">Как нас найти</h3> |
|
<div class="h-96 rounded-lg overflow-hidden"> |
|
|
|
<script type="text/javascript" charset="utf-8" async src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3Ac8fcb6c1bec1d088da7abd2d9ca82929556153fe8e67aea432ef025fb36f1714&width=100%&height=100%&lang=ru_RU&scroll=true"></script> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<footer class="bg-[#1a1a1a] text-gray-300 py-8 relative overflow-hidden"> |
|
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9InJnYmEoMTAwLDIwMCwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=')] opacity-30"></div> |
|
<div class="container mx-auto px-4 relative z-10"> |
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
<div class="mb-4 md:mb-0"> |
|
<div class="flex items-center space-x-3"> |
|
<div class="metal-icon p-2 rounded"> |
|
<i class="fas fa-glasses"></i> |
|
</div> |
|
<h2 class="text-xl metal-text">ОПТИКА "ОПТОН"</h2> |
|
</div> |
|
<p class="text-[#64c8ff] mt-2">Профессиональные услуги по ремонту очков</p> |
|
</div> |
|
<div class="flex space-x-6"> |
|
<a href="#services" class="hover:text-[#64c8ff] transition">Услуги</a> |
|
<a href="#about" class="hover:text-[#64c8ff] transition">О нас</a> |
|
<a href="#contacts" class="hover:text-[#64c8ff] transition">Контакты</a> |
|
</div> |
|
</div> |
|
<div class="metal-divider mt-8 pt-8 text-center text-gray-500"> |
|
<p>© 2023 Оптика "ОПТОН". Все права защищены.</p> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.getElementById('menu-btn').addEventListener('click', function() { |
|
document.getElementById('mobile-menu').classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
const observerOptions = { |
|
threshold: 0.1 |
|
}; |
|
|
|
const observer = new IntersectionObserver((entries) => { |
|
entries.forEach(entry => { |
|
if (entry.isIntersecting) { |
|
entry.target.classList.add('animate-fadeIn'); |
|
} |
|
}); |
|
}, observerOptions); |
|
|
|
document.querySelectorAll('section').forEach(section => { |
|
observer.observe(section); |
|
}); |
|
}); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ANTIMOLL/opt6968" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |