law-firm / index.html
patoconnect's picture
Add 2 files
faf0f95 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ROBERTO & CAESER LLP | Building a Law Firm for the Future</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">
<style>
.hero-video {
position: relative;
height: 100vh;
min-height: 600px;
overflow: hidden;
}
.hero-video video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: 0;
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.stat-card {
transition: all 0.3s ease;
}
.stat-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-card {
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
}
.case-study-card {
transition: all 0.3s ease;
}
.case-study-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #b8860b;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.dropdown:hover .dropdown-menu {
display: block;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Top Bar -->
<div class="bg-gray-900 text-white py-2 px-4">
<div class="container mx-auto flex justify-between items-center">
<div class="flex space-x-4 text-sm">
<a href="#" class="hover:text-amber-500"><i class="fas fa-phone-alt mr-1"></i> +1 (212) 555-0100</a>
<a href="#" class="hover:text-amber-500"><i class="fas fa-envelope mr-1"></i> contact@robertocaeser.com</a>
</div>
<div class="flex space-x-4">
<a href="#" class="hover:text-amber-500"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="hover:text-amber-500"><i class="fab fa-twitter"></i></a>
<a href="#" class="hover:text-amber-500"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center py-4">
<div class="flex items-center">
<a href="#" class="text-2xl font-bold text-gray-900">
<span class="text-amber-600">ROBERTO</span> & <span class="text-gray-800">CAESER</span> <span class="text-sm font-normal">LLP</span>
</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<div class="dropdown relative">
<a href="#" class="nav-link text-gray-700 hover:text-amber-600 font-medium">Practice Areas <i class="fas fa-chevron-down ml-1 text-xs"></i></a>
<div class="dropdown-menu absolute hidden bg-white shadow-lg rounded-md mt-2 py-2 w-48">
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100 hover:text-amber-600">Corporate Law</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100 hover:text-amber-600">Litigation</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100 hover:text-amber-600">Intellectual Property</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100 hover:text-amber-600">Real Estate</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100 hover:text-amber-600">Tax Law</a>
</div>
</div>
<a href="#" class="nav-link text-gray-700 hover:text-amber-600 font-medium">Our Firm</a>
<a href="#" class="nav-link text-gray-700 hover:text-amber-600 font-medium">Attorneys</a>
<a href="#" class="nav-link text-gray-700 hover:text-amber-600 font-medium">Insights</a>
<a href="#" class="nav-link text-gray-700 hover:text-amber-600 font-medium">Careers</a>
<a href="#" class="nav-link text-gray-700 hover:text-amber-600 font-medium">Contact</a>
</div>
<div class="md:hidden">
<button class="text-gray-700 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section with Video -->
<section class="hero-video">
<video autoplay muted loop>
<source src="https://example.com/law-firm-video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="video-overlay"></div>
<div class="relative z-10 flex items-center h-full">
<div class="container mx-auto px-4 text-white">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Building a Law Firm <br>for the Future</h1>
<p class="text-xl md:text-2xl mb-8 max-w-2xl">Innovative legal solutions with a forward-thinking approach to complex challenges.</p>
<div class="flex space-x-4">
<a href="#" class="bg-amber-600 hover:bg-amber-700 text-white px-6 py-3 rounded font-medium transition duration-300">Our Services</a>
<a href="#" class="border-2 border-white hover:bg-white hover:text-gray-900 text-white px-6 py-3 rounded font-medium transition duration-300">Contact Us</a>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="stat-card bg-white p-8 rounded-lg shadow-md text-center">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-balance-scale"></i>
</div>
<h3 class="text-3xl font-bold mb-2">150+</h3>
<p class="text-gray-600">Cases Won</p>
</div>
<div class="stat-card bg-white p-8 rounded-lg shadow-md text-center">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-user-tie"></i>
</div>
<h3 class="text-3xl font-bold mb-2">50+</h3>
<p class="text-gray-600">Expert Attorneys</p>
</div>
<div class="stat-card bg-white p-8 rounded-lg shadow-md text-center">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-globe-americas"></i>
</div>
<h3 class="text-3xl font-bold mb-2">12</h3>
<p class="text-gray-600">Global Offices</p>
</div>
<div class="stat-card bg-white p-8 rounded-lg shadow-md text-center">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-award"></i>
</div>
<h3 class="text-3xl font-bold mb-2">25+</h3>
<p class="text-gray-600">Industry Awards</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-20">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl md:text-4xl font-bold mb-6">About <span class="text-amber-600">ROBERTO & CAESER</span> LLP</h2>
<p class="text-lg text-gray-600 mb-6">Founded in 1995, Roberto & Caeser LLP has grown from a small boutique firm to an internationally recognized legal practice with offices across three continents.</p>
<p class="text-lg text-gray-600 mb-8">Our forward-thinking approach combines traditional legal expertise with innovative strategies to help our clients navigate an increasingly complex global landscape.</p>
<a href="#" class="inline-block bg-amber-600 hover:bg-amber-700 text-white px-6 py-3 rounded font-medium transition duration-300">Learn More About Our Firm</a>
</div>
<div class="md:w-1/2">
<div class="relative">
<img src="https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Law firm meeting" class="rounded-lg shadow-xl w-full">
<div class="absolute -bottom-6 -right-6 bg-white p-6 rounded-lg shadow-lg w-3/4">
<h3 class="text-xl font-bold mb-2">Our Vision</h3>
<p class="text-gray-600">To redefine legal excellence through innovation, collaboration, and an unwavering commitment to our clients' success.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Legal Services</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Comprehensive legal solutions tailored to meet your specific needs and challenges.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-building"></i>
</div>
<h3 class="text-xl font-bold mb-4">Corporate Law</h3>
<p class="text-gray-600 mb-4">Expert guidance on corporate governance, M&A, private equity, and corporate finance transactions.</p>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-gavel"></i>
</div>
<h3 class="text-xl font-bold mb-4">Litigation</h3>
<p class="text-gray-600 mb-4">Strategic representation in complex commercial disputes, class actions, and appellate matters.</p>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-lightbulb"></i>
</div>
<h3 class="text-xl font-bold mb-4">Intellectual Property</h3>
<p class="text-gray-600 mb-4">Protection and enforcement of patents, trademarks, copyrights, and trade secrets worldwide.</p>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-home"></i>
</div>
<h3 class="text-xl font-bold mb-4">Real Estate</h3>
<p class="text-gray-600 mb-4">Full-service real estate practice covering acquisitions, dispositions, financing, and development.</p>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-bold mb-4">Tax Law</h3>
<p class="text-gray-600 mb-4">Strategic tax planning, controversy, and transactional advice for businesses and individuals.</p>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-globe"></i>
</div>
<h3 class="text-xl font-bold mb-4">International Law</h3>
<p class="text-gray-600 mb-4">Cross-border transactions, regulatory compliance, and dispute resolution in global markets.</p>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</section>
<!-- Case Studies Section -->
<section class="py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Notable Case Studies</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Explore some of our most significant legal victories and complex matters.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="case-study-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="relative">
<img src="https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Corporate case" class="w-full h-48 object-cover">
<div class="absolute top-0 left-0 bg-amber-600 text-white px-3 py-1 text-sm font-medium">Corporate</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">$2.4B Tech Merger</h3>
<p class="text-gray-600 mb-4">Successfully represented a leading tech company in its acquisition by a Fortune 500 corporation.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">2023</span>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">View Details <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
<div class="case-study-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="relative">
<img src="https://images.unsplash.com/photo-1581094271901-8022df4466f9?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="IP case" class="w-full h-48 object-cover">
<div class="absolute top-0 left-0 bg-amber-600 text-white px-3 py-1 text-sm font-medium">IP</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Patent Infringement Victory</h3>
<p class="text-gray-600 mb-4">Secured a landmark $150M verdict in a high-stakes patent infringement case for a biotech client.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">2022</span>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">View Details <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
<div class="case-study-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="relative">
<img src="https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Litigation case" class="w-full h-48 object-cover">
<div class="absolute top-0 left-0 bg-amber-600 text-white px-3 py-1 text-sm font-medium">Litigation</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Class Action Defense</h3>
<p class="text-gray-600 mb-4">Achieved dismissal of a nationwide class action against a major financial services provider.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">2021</span>
<a href="#" class="text-amber-600 font-medium hover:text-amber-700 flex items-center">View Details <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block border-2 border-amber-600 hover:bg-amber-600 hover:text-white text-amber-600 px-6 py-3 rounded font-medium transition duration-300">View All Case Studies</a>
</div>
</div>
</section>
<!-- Video Insights Section -->
<section class="py-20 bg-gray-900 text-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Legal Insights</h2>
<p class="text-xl text-gray-300 max-w-2xl mx-auto">Watch our attorneys discuss emerging legal trends and complex case strategies.</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<div class="bg-gray-800 rounded-lg overflow-hidden">
<div class="relative pb-[56.25%]">
<iframe class="absolute top-0 left-0 w-full h-full" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">The Future of Corporate Governance</h3>
<p class="text-gray-300 mb-4">Partner Maria Roberto discusses how evolving regulations are reshaping corporate governance standards.</p>
<div class="flex items-center text-sm text-gray-400">
<span>June 15, 2023</span>
<span class="mx-2"></span>
<span>12 min watch</span>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-lg overflow-hidden">
<div class="relative pb-[56.25%]">
<iframe class="absolute top-0 left-0 w-full h-full" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Navigating Cross-Border Transactions</h3>
<p class="text-gray-300 mb-4">Senior Partner James Caeser shares insights on managing legal complexities in international deals.</p>
<div class="flex items-center text-sm text-gray-400">
<span>May 28, 2023</span>
<span class="mx-2"></span>
<span>18 min watch</span>
</div>
</div>
</div>
</div>
<div class="mt-12 grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-800 p-6 rounded-lg">
<div class="text-amber-500 text-2xl mb-4">
<i class="fas fa-chart-pie"></i>
</div>
<h3 class="text-lg font-bold mb-2">Market Trends Report</h3>
<p class="text-gray-300 mb-4">Our latest analysis of emerging trends in corporate law and their impact on business strategy.</p>
<a href="#" class="text-amber-500 font-medium hover:text-amber-400 flex items-center">Download Report <i class="fas fa-download ml-2"></i></a>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<div class="text-amber-500 text-2xl mb-4">
<i class="fas fa-newspaper"></i>
</div>
<h3 class="text-lg font-bold mb-2">Quarterly Legal Review</h3>
<p class="text-gray-300 mb-4">Key legal developments from the past quarter and what they mean for your business.</p>
<a href="#" class="text-amber-500 font-medium hover:text-amber-400 flex items-center">Read Now <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="bg-gray-800 p-6 rounded-lg">
<div class="text-amber-500 text-2xl mb-4">
<i class="fas fa-calendar-alt"></i>
</div>
<h3 class="text-lg font-bold mb-2">Upcoming Events</h3>
<p class="text-gray-300 mb-4">Join our attorneys at these upcoming conferences, webinars, and speaking engagements.</p>
<a href="#" class="text-amber-500 font-medium hover:text-amber-400 flex items-center">View Calendar <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-amber-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Client Testimonials</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">What our clients say about working with Roberto & Caeser LLP</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="text-amber-500 text-2xl mr-2">
<i class="fas fa-quote-left"></i>
</div>
<div class="text-gray-600 italic">
"The team at Roberto & Caeser demonstrated exceptional legal acumen in handling our complex merger. Their strategic guidance was instrumental in achieving a favorable outcome."
</div>
</div>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael Johnson</h4>
<p class="text-sm text-gray-500">CEO, Tech Innovations Inc.</p>
</div>
</div>
</div>
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="text-amber-500 text-2xl mr-2">
<i class="fas fa-quote-left"></i>
</div>
<div class="text-gray-600 italic">
"Their international tax expertise saved our company millions in potential liabilities. The Roberto & Caeser team combines deep knowledge with practical business understanding."
</div>
</div>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah Chen</h4>
<p class="text-sm text-gray-500">CFO, Global Manufacturing Co.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-amber-600 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Discuss Your Legal Needs?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Contact us today to schedule a consultation with one of our experienced attorneys.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white hover:bg-gray-100 text-amber-600 px-8 py-4 rounded font-bold transition duration-300">Get in Touch</a>
<a href="#" class="border-2 border-white hover:bg-amber-700 text-white px-8 py-4 rounded font-bold transition duration-300">Call Now: (212) 555-0100</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
<div>
<h3 class="text-2xl font-bold mb-6">
<span class="text-amber-500">ROBERTO</span> & <span class="text-white">CAESER</span> <span class="text-sm font-normal">LLP</span>
</h3>
<p class="text-gray-400 mb-4">Building a law firm for the future with innovative legal solutions and forward-thinking strategies.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-6">Practice Areas</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Corporate Law</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Litigation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Intellectual Property</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Real Estate</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Tax Law</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">International Law</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-6">Our Firm</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Attorneys</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Diversity & Inclusion</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Pro Bono</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact Us</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-6">Contact Information</h4>
<address class="not-italic text-gray-400">
<p class="mb-4">123 Legal Avenue<br>New York, NY 10001</p>
<p class="mb-1"><i class="fas fa-phone-alt mr-2"></i> +1 (212) 555-0100</p>
<p class="mb-1"><i class="fas fa-fax mr-2"></i> +1 (212) 555-0101</p>
<p><i class="fas fa-envelope mr-2"></i> contact@robertocaeser.com</p>
</address>
</div>
</div>
<div class="border-t border-gray-800 pt-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Roberto & Caeser LLP. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white">Terms of Use</a>
<a href="#" class="text-gray-400 hover:text-white">Disclaimer</a>
<a href="#" class="text-gray-400 hover:text-white">Sitemap</a>
</div>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle functionality
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.querySelector('.md\\:hidden button');
const mobileMenu = document.createElement('div');
mobileMenu.className = 'hidden bg-white w-full absolute left-0 mt-2 shadow-lg py-2 z-50';
const menuItems = [
{text: 'Practice Areas', subItems: ['Corporate Law', 'Litigation', 'Intellectual Property', 'Real Estate', 'Tax Law']},
{text: 'Our Firm'},
{text: 'Attorneys'},
{text: 'Insights'},
{text: 'Careers'},
{text: 'Contact'}
];
menuItems.forEach(item => {
const menuItem = document.createElement('div');
menuItem.className = 'px-4 py-2 border-b border-gray-100';
if (item.subItems) {
const link = document.createElement('a');
link.href = '#';
link.className = 'flex justify-between items-center text-gray-700';
link.innerHTML = `${item.text} <i class="fas fa-chevron-down ml-2 text-xs"></i>`;
menuItem.appendChild(link);
const subMenu = document.createElement('div');
subMenu.className = 'hidden pl-4 mt-2';
item.subItems.forEach(subItem => {
const subMenuItem = document.createElement('a');
subMenuItem.href = '#';
subMenuItem.className = 'block py-2 text-gray-600 hover:text-amber-600';
subMenuItem.textContent = subItem;
subMenu.appendChild(subMenuItem);
});
menuItem.appendChild(subMenu);
link.addEventListener('click', function(e) {
e.preventDefault();
subMenu.classList.toggle('hidden');
});
} else {
const link = document.createElement('a');
link.href = '#';
link.className = 'block text-gray-700';
link.textContent = item.text;
menuItem.appendChild(link);
}
mobileMenu.appendChild(menuItem);
});
document.body.appendChild(mobileMenu);
mobileMenuButton.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth'
});
}
});
});
});
</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=patoconnect/law-firm" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>