| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Attorney James Montgomery | Distinguished Legal Counsel</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 rel="preconnect" href="https://fonts.googleapis.com"> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| <link href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet"> |
| |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| fontFamily: { |
| 'serif': ['EB Garamond', 'serif'], |
| 'sans': ['Montserrat', 'sans-serif'], |
| }, |
| colors: { |
| 'gold': '#D4AF37', |
| 'dark': '#111827', |
| }, |
| backgroundImage: { |
| 'gold-pattern': "url(\"data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-6 60c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm29 22c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM32 63c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm57-13c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-9-29c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM60 91c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM35 41c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 60c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E\")" |
| } |
| } |
| } |
| } |
| </script> |
| <style> |
| .mobile-menu { |
| max-height: 0; |
| overflow: hidden; |
| transition: max-height 0.3s ease-out; |
| } |
| .mobile-menu.open { |
| max-height: 500px; |
| } |
| </style> |
| </head> |
| <body class="bg-dark text-white font-serif min-h-screen overflow-x-hidden"> |
| |
| <button id="languageBtn" class="fixed top-5 right-5 z-50 bg-dark/70 border border-gold text-white px-4 py-2 rounded-full flex items-center gap-2 hover:bg-gold hover:text-dark transition-all duration-300"> |
| <i class="fas fa-language"></i> |
| <span>IT</span> |
| </button> |
| |
| <div class="container mx-auto min-h-screen flex flex-col justify-between px-6 py-12 bg-gold-pattern"> |
| |
| <header class="flex justify-between items-center mb-8"> |
| <div class="text-2xl font-bold font-sans text-gold">J.MONTGOMERY</div> |
| |
| |
| <nav class="hidden md:flex space-x-8"> |
| <a href="#about" class="text-white hover:text-gold transition">About</a> |
| <a href="#achievements" class="text-white hover:text-gold transition">Achievements</a> |
| <a href="#contact" class="text-white hover:text-gold transition">Contact</a> |
| </nav> |
| |
| |
| <button id="mobileMenuButton" class="md:hidden text-white text-2xl"> |
| <i class="fas fa-bars"></i> |
| </button> |
| </header> |
| |
| |
| <div id="mobileMenu" class="mobile-menu md:hidden bg-dark/90 rounded-lg mt-2 mb-6"> |
| <div class="flex flex-col space-y-4 p-4"> |
| <a href="#about" class="text-white hover:text-gold transition">About</a> |
| <a href="#achievements" class="text-white hover:text-gold transition">Achievements</a> |
| <a href="#contact" class="text-white hover:text-gold transition">Contact</a> |
| </div> |
| </div> |
| |
| |
| <main class="flex-grow flex flex-col md:flex-row items-center justify-center gap-12"> |
| |
| <div class="w-full md:w-1/3 flex justify-center"> |
| <div class="relative w-72 h-96"> |
| <img src="https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=800&q=80" |
| alt="Attorney James Montgomery" |
| class="w-full h-full object-cover grayscale-[30%] contrast-110"> |
| <div class="absolute inset-0 bg-gradient-to-t from-dark/80 via-dark/30 to-transparent"></div> |
| <div class="absolute inset-0 flex items-end p-6"> |
| <h2 class="font-sans text-3xl font-bold" id="nameTitle">JAMES MONTGOMERY</h2> |
| </div> |
| <div class="absolute -bottom-5 -right-5 w-20 h-20 bg-gold flex items-center justify-center rotate-6"> |
| <span class="text-dark font-bold text-xs text-center" id="experienceText">15+ YEARS<br>EXPERIENCE</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="w-full md:w-2/3 space-y-8"> |
| <h1 class="font-sans text-4xl md:text-5xl font-bold tracking-tight leading-tight"> |
| <span id="mainTitle">DISTINGUISHED</span> <span class="text-gold" id="legalText">LEGAL</span> <span id="counselText">COUNSEL</span> |
| </h1> |
| |
| <p class="text-lg text-gray-300 max-w-2xl leading-relaxed" id="descriptionText"> |
| Specializing in corporate law, intellectual property, and high-stakes litigation with a proven track record of securing favorable outcomes for clients ranging from Fortune 500 companies to individual entrepreneurs. |
| </p> |
| |
| |
| <div id="achievements" class="space-y-4"> |
| <h3 class="text-xl font-semibold text-gold font-sans" id="achievementsTitle">NOTABLE ACHIEVEMENTS</h3> |
| <ul class="space-y-3"> |
| <li class="relative pl-8 before:absolute before:left-0 before:top-3 before:w-4 before:h-4 before:bg-gold before:rotate-45" id="achievement1"> |
| Successfully argued before the Supreme Court in landmark IP case (2021) |
| </li> |
| <li class="relative pl-8 before:absolute before:left-0 before:top-3 before:w-4 before:h-4 before:bg-gold before:rotate-45" id="achievement2"> |
| Recipient of the National Law Journal's "Top 40 Under 40" award |
| </li> |
| <li class="relative pl-8 before:absolute before:left-0 before:top-3 before:w-4 before:h-4 before:bg-gold before:rotate-45" id="achievement3"> |
| Negotiated $250M merger between tech giants with zero litigation |
| </li> |
| <li class="relative pl-8 before:absolute before:left-0 before:top-3 before:w-4 before:h-4 before:bg-gold before:rotate-45" id="achievement4"> |
| Maintained 92% success rate in jury trials over the past decade |
| </li> |
| </ul> |
| </div> |
| |
| |
| <div class="flex flex-wrap gap-4 pt-4"> |
| <a href="#" class="bg-gold text-dark font-bold px-8 py-3 rounded-sm flex items-center gap-2 hover:-translate-y-1 hover:shadow-lg hover:shadow-gold/30 transition-all duration-300"> |
| <i class="fas fa-file-alt"></i> <span id="resumeBtnText">DOWNLOAD RESUME</span> |
| </a> |
| <a href="#contact" class="border-2 border-gold text-white font-bold px-8 py-3 rounded-sm hover:bg-gold/10 transition"> |
| <span id="consultationBtnText">SCHEDULE CONSULTATION</span> |
| </a> |
| </div> |
| </div> |
| </main> |
| |
| |
| <footer id="contact" class="flex flex-col md:flex-row justify-between items-center pt-8 border-t border-gray-800"> |
| <div class="mb-4 md:mb-0"> |
| <h3 class="text-lg font-semibold text-gold font-sans" id="footerName">JAMES MONTGOMERY, ESQ.</h3> |
| <p class="text-gray-400" id="footerTitle">PRINCIPAL ATTORNEY | MONTGOMERY & ASSOCIATES</p> |
| </div> |
| <div class="flex flex-col md:flex-row gap-4 md:gap-6"> |
| <a href="tel:+15551234567" class="text-white hover:text-gold transition flex items-center"> |
| <i class="fas fa-phone mr-2"></i> (555) 123-4567 |
| </a> |
| <a href="mailto:james@montgomerylaw.com" class="text-white hover:text-gold transition flex items-center"> |
| <i class="fas fa-envelope mr-2"></i> JAMES@MONTGOMERYLAW.COM |
| </a> |
| </div> |
| </footer> |
| </div> |
|
|
| <script> |
| |
| const mobileMenuButton = document.getElementById('mobileMenuButton'); |
| const mobileMenu = document.getElementById('mobileMenu'); |
| |
| mobileMenuButton.addEventListener('click', function() { |
| mobileMenu.classList.toggle('open'); |
| const icon = this.querySelector('i'); |
| if (mobileMenu.classList.contains('open')) { |
| icon.classList.remove('fa-bars'); |
| icon.classList.add('fa-times'); |
| } else { |
| icon.classList.remove('fa-times'); |
| icon.classList.add('fa-bars'); |
| } |
| }); |
| |
| |
| const translations = { |
| en: { |
| nameTitle: "JAMES MONTGOMERY", |
| mainTitle: "DISTINGUISHED", |
| legalText: "LEGAL", |
| counselText: "COUNSEL", |
| descriptionText: "Specializing in corporate law, intellectual property, and high-stakes litigation with a proven track record of securing favorable outcomes for clients ranging from Fortune 500 companies to individual entrepreneurs.", |
| achievementsTitle: "NOTABLE ACHIEVEMENTS", |
| achievement1: "Successfully argued before the Supreme Court in landmark IP case (2021)", |
| achievement2: "Recipient of the National Law Journal's \"Top 40 Under 40\" award", |
| achievement3: "Negotiated $250M merger between tech giants with zero litigation", |
| achievement4: "Maintained 92% success rate in jury trials over the past decade", |
| resumeBtnText: "DOWNLOAD RESUME", |
| consultationBtnText: "SCHEDULE CONSULTATION", |
| footerName: "JAMES MONTGOMERY, ESQ.", |
| footerTitle: "PRINCIPAL ATTORNEY | MONTGOMERY & ASSOCIATES", |
| experienceText: "15+ YEARS<br>EXPERIENCE" |
| }, |
| it: { |
| nameTitle: "JAMES MONTGOMERY", |
| mainTitle: "CONSULENZA", |
| legalText: "LEGALE", |
| counselText: "DI ECCELLENZA", |
| descriptionText: "Specializzato in diritto societario, proprietà intellettuale e contenziosi ad alto rischio con un comprovato track record nel garantire esiti favorevoli per clienti che vanno dalle aziende Fortune 500 ai singoli imprenditori.", |
| achievementsTitle: "RISULTATI IMPORTANTI", |
| achievement1: "Discusso con successo davanti alla Corte Suprema in un caso fondamentale di proprietà intellettuale (2021)", |
| achievement2: "Vincitore del premio \"Top 40 Under 40\" del National Law Journal", |
| achievement3: "Negoziati 250 milioni di dollari di fusione tra colossi tecnologici senza contenzioso", |
| achievement4: "Mantenuto un tasso di successo del 92% nei processi con giuria nell'ultimo decennio", |
| resumeBtnText: "SCARICA CURRICULUM", |
| consultationBtnText: "PRENOTA CONSULENZA", |
| footerName: "JAMES MONTGOMERY, AVV.", |
| footerTitle: "AVVOCATO PRINCIPALE | MONTGOMERY & ASSOCIATES", |
| experienceText: "15+ ANNI<br>ESPERIENZA" |
| } |
| }; |
| |
| let currentLanguage = 'en'; |
| const languageBtn = document.getElementById('languageBtn'); |
| |
| function updateContent(language) { |
| const translation = translations[language]; |
| for (const [key, value] of Object.entries(translation)) { |
| const element = document.getElementById(key); |
| if (element) { |
| if (key === 'experienceText') { |
| element.innerHTML = value; |
| } else { |
| element.textContent = value; |
| } |
| } |
| } |
| } |
| |
| languageBtn.addEventListener('click', function() { |
| currentLanguage = currentLanguage === 'en' ? 'it' : 'en'; |
| updateContent(currentLanguage); |
| this.querySelector('span').textContent = currentLanguage === 'en' ? 'IT' : 'EN'; |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| |
| if (mobileMenu.classList.contains('open')) { |
| mobileMenu.classList.remove('open'); |
| mobileMenuButton.querySelector('i').classList.remove('fa-times'); |
| mobileMenuButton.querySelector('i').classList.add('fa-bars'); |
| } |
| |
| const targetId = this.getAttribute('href'); |
| if (targetId === '#') return; |
| |
| const targetElement = document.querySelector(targetId); |
| if (targetElement) { |
| targetElement.scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| } |
| }); |
| }); |
| |
| |
| updateContent('en'); |
| </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=tinolin/coco1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |