| Server IP : 52.202.253.110 / Your IP : 216.73.217.139 Web Server : Apache/2.4.56 (Amazon Linux) OpenSSL/3.0.8 System : Linux ip-172-32-10-67.ec2.internal 6.1.49-70.116.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Sep 6 22:13:07 UTC 2023 x86_64 User : ec2-user ( 1000) PHP Version : 8.2.9 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/vhosts/micheleleasurept_html/ |
Upload File : |
/* CSS Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: #1e40af;
--primary-light: #3b82f6;
--primary-dark: #1e3a8a;
--secondary-color: #059669;
--accent-color: #f59e0b;
--text-primary: #1f2937;
--text-secondary: #6b7280;
--text-light: #9ca3af;
--bg-primary: #ffffff;
--bg-secondary: #f8fafc;
--bg-accent: #f0f9ff;
--border-color: #e5e7eb;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--border-radius: 0.5rem;
--transition: all 0.3s ease;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--text-primary);
background-color: var(--bg-primary);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 600;
line-height: 1.2;
margin-bottom: 1rem;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }
p {
margin-bottom: 1rem;
color: var(--text-secondary);
}
/* Buttons */
.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
font-weight: 500;
text-decoration: none;
border-radius: var(--border-radius);
transition: var(--transition);
border: none;
cursor: pointer;
font-size: 1rem;
text-align: center;
}
.btn-primary {
background-color: var(--primary-color);
color: white;
box-shadow: var(--shadow-md);
}
.btn-primary:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.btn-secondary {
background-color: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
background-color: var(--primary-color);
color: white;
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 0;
box-shadow: var(--shadow-sm);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo h2 {
color: var(--primary-color);
margin: 0;
font-size: 1.5rem;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-link {
text-decoration: none;
color: var(--text-primary);
font-weight: 500;
transition: var(--transition);
}
.nav-link:hover {
color: var(--primary-color);
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}
.bar {
width: 25px;
height: 3px;
background-color: var(--text-primary);
margin: 3px 0;
transition: var(--transition);
}
/* Hero Section */
.hero {
padding: 8rem 0 4rem;
background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
min-height: 100vh;
display: flex;
align-items: center;
}
.hero-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.hero-title {
font-size: 3.5rem;
margin-bottom: 1.5rem;
color: var(--text-primary);
}
.highlight {
color: var(--primary-color);
}
.hero-subtitle {
font-size: 1.25rem;
margin-bottom: 2rem;
color: var(--text-secondary);
}
.hero-location {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 2rem;
color: var(--text-secondary);
}
.location-icon {
width: 1.25rem;
height: 1.25rem;
color: var(--primary-color);
}
.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.hero-image {
display: flex;
justify-content: center;
}
.image-placeholder {
width: 100%;
max-width: 400px;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-xl);
}
.placeholder-svg {
width: 100%;
height: auto;
}
.professional-photo {
width: 100%;
max-width: 400px;
height: auto;
border-radius: var(--border-radius);
box-shadow: var(--shadow-xl);
object-fit: cover;
transition: var(--transition);
}
.professional-photo:hover {
transform: scale(1.02);
box-shadow: var(--shadow-xl);
}
.professional-portrait {
width: 100%;
height: auto;
border-radius: var(--border-radius);
box-shadow: var(--shadow-xl);
object-fit: cover;
transition: var(--transition);
}
.professional-portrait:hover {
transform: scale(1.02);
box-shadow: var(--shadow-xl);
}
/* Credentials Banner */
.credentials {
padding: 3rem 0;
background-color: var(--primary-color);
color: white;
}
.credentials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
}
.credential-item h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: white;
}
.credential-item p {
color: rgba(255, 255, 255, 0.8);
margin: 0;
}
/* Section Headers */
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-header h2 {
margin-bottom: 1rem;
}
.section-header p {
font-size: 1.125rem;
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto;
}
/* About Section */
.about {
padding: 6rem 0;
background-color: var(--bg-primary);
}
.about-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 4rem;
align-items: start;
}
.about-text h3 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.about-text p {
font-size: 1.125rem;
margin-bottom: 1.5rem;
}
.specialties {
margin-top: 2rem;
padding: 2rem;
background-color: var(--bg-secondary);
border-radius: var(--border-radius);
}
.specialties h4 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.specialties ul {
list-style: none;
}
.specialties li {
padding: 0.5rem 0;
border-bottom: 1px solid var(--border-color);
position: relative;
padding-left: 1.5rem;
}
.specialties li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--secondary-color);
font-weight: bold;
}
.specialties li:last-child {
border-bottom: none;
}
/* Professional Info Section */
.professional-info {
margin-top: 2rem;
padding: 1.5rem;
background-color: var(--bg-secondary);
border-left: 4px solid var(--primary-color);
border-radius: var(--border-radius);
}
.professional-info h4 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 1.125rem;
}
.license-details p {
margin-bottom: 0.75rem;
line-height: 1.5;
}
.license-details strong {
color: var(--text-primary);
font-size: 1.1rem;
}
.npi-info {
color: var(--text-secondary);
font-size: 0.95rem;
}
.ocs-explanation {
font-size: 0.9rem;
color: var(--text-secondary);
line-height: 1.6;
margin-top: 0.5rem;
}
.ocs-explanation em {
color: var(--primary-color);
font-weight: 500;
}
/* Services Section */
.services {
padding: 6rem 0;
background-color: var(--bg-secondary);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background-color: var(--bg-primary);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-md);
transition: var(--transition);
text-align: center;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.service-icon {
width: 3rem;
height: 3rem;
color: var(--primary-color);
margin: 0 auto 1.5rem;
}
.service-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}
/* Treatment Gallery Section */
.treatment-gallery {
padding: 6rem 0;
background-color: var(--bg-secondary);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.gallery-item {
background-color: var(--bg-primary);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
}
.gallery-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.gallery-image {
width: 100%;
height: 250px;
object-fit: cover;
transition: var(--transition);
}
.gallery-item:hover .gallery-image {
transform: scale(1.05);
}
.gallery-caption {
padding: 1.5rem;
text-align: center;
}
.gallery-caption h4 {
color: var(--primary-color);
margin-bottom: 0.5rem;
font-size: 1.25rem;
}
.gallery-caption p {
color: var(--text-secondary);
font-size: 0.9rem;
line-height: 1.5;
}
/* Special Features Section */
.special-features {
padding: 6rem 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
color: white;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 2rem;
border-radius: var(--border-radius);
text-align: center;
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-card:hover {
transform: translateY(-5px);
background-color: rgba(255, 255, 255, 0.15);
box-shadow: var(--shadow-xl);
}
.feature-icon {
width: 3rem;
height: 3rem;
color: rgba(255, 255, 255, 0.9);
margin: 0 auto 1.5rem;
}
.feature-card h3 {
color: white;
margin-bottom: 1rem;
font-size: 1.5rem;
}
.feature-card p {
color: rgba(255, 255, 255, 0.9);
margin: 0;
line-height: 1.6;
}
/* Approach Section */
.approach {
padding: 6rem 0;
background-color: var(--bg-primary);
}
.approach-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.approach-intro {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: 2rem;
}
.approach-points {
display: flex;
flex-direction: column;
gap: 2rem;
}
.approach-point h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.process-steps {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
.step {
text-align: center;
padding: 2rem;
background-color: var(--bg-secondary);
border-radius: var(--border-radius);
}
.step-number {
width: 3rem;
height: 3rem;
background-color: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.25rem;
margin: 0 auto 1rem;
}
.step h4 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.step p {
margin: 0;
font-size: 0.875rem;
}
/* Testimonials Section */
.testimonials {
padding: 6rem 0;
background-color: var(--bg-secondary);
}
.reviews-rating {
text-align: center;
margin: 2rem 0;
padding: 1.5rem;
background-color: rgba(255, 255, 255, 0.8);
border-radius: var(--border-radius);
box-shadow: var(--shadow-sm);
}
.stars {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.star {
margin: 0 0.1rem;
}
.reviews-rating p {
margin: 0;
color: var(--text-secondary);
font-size: 1.1rem;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.testimonial-card {
background-color: var(--bg-primary);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-md);
}
.testimonial-content {
margin-bottom: 1.5rem;
}
.testimonial-content p {
font-style: italic;
font-size: 1.125rem;
color: var(--text-primary);
margin: 0;
}
.testimonial-author h4 {
color: var(--primary-color);
margin-bottom: 0.25rem;
}
.testimonial-author span {
color: var(--text-light);
font-size: 0.875rem;
}
/* Contact Section */
.contact {
padding: 6rem 0;
background-color: var(--bg-primary);
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
.contact-details {
margin: 2rem 0;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 2rem;
}
.contact-icon {
width: 1.5rem;
height: 1.5rem;
color: var(--primary-color);
margin-top: 0.25rem;
flex-shrink: 0;
}
.contact-item h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
font-size: 1.125rem;
}
.contact-item p {
margin: 0;
}
.hours {
margin-top: 3rem;
}
.hours h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.hours-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.5rem 1rem;
font-size: 0.875rem;
}
.hours-grid div:nth-child(odd) {
font-weight: 500;
color: var(--text-primary);
}
.hours-grid div:nth-child(even) {
color: var(--text-secondary);
}
/* Contact Form */
.contact-form {
background-color: var(--bg-secondary);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-md);
}
.form h3 {
color: var(--primary-color);
margin-bottom: 2rem;
text-align: center;
}
.form-group {
position: relative;
margin-bottom: 2rem;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 2px solid var(--border-color);
border-radius: var(--border-radius);
font-size: 1rem;
transition: var(--transition);
background-color: var(--bg-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}
.form-group label {
position: absolute;
left: 1rem;
top: 1rem;
color: var(--text-light);
transition: var(--transition);
pointer-events: none;
}
.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
top: -0.5rem;
left: 0.75rem;
font-size: 0.75rem;
color: var(--primary-color);
background-color: var(--bg-primary);
padding: 0 0.5rem;
}
.form-group select + label {
top: -0.5rem;
left: 0.75rem;
font-size: 0.75rem;
color: var(--primary-color);
background-color: var(--bg-primary);
padding: 0 0.5rem;
}
/* Footer */
.footer {
background-color: var(--text-primary);
color: white;
padding: 3rem 0 1rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
color: white;
margin-bottom: 1rem;
}
.footer-section p {
color: rgba(255, 255, 255, 0.8);
margin: 0;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section ul li a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: var(--transition);
}
.footer-section ul li a:hover {
color: white;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 1rem;
text-align: center;
}
.footer-bottom p {
color: rgba(255, 255, 255, 0.6);
margin: 0;
font-size: 0.875rem;
}
.footer-bottom a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
}
.footer-bottom a:hover {
color: white;
}
/* Responsive Design */
@media (max-width: 768px) {
.hamburger {
display: flex;
}
.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background-color: white;
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: var(--shadow-md);
padding: 2rem 0;
}
.nav-menu.active {
left: 0;
}
.hero-container {
grid-template-columns: 1fr;
text-align: center;
gap: 2rem;
}
.hero-title {
font-size: 2.5rem;
}
.about-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.approach-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.process-steps {
grid-template-columns: 1fr;
}
.contact-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.credentials-grid {
grid-template-columns: repeat(2, 1fr);
}
.services-grid {
grid-template-columns: 1fr;
}
.features-grid {
grid-template-columns: 1fr;
}
.testimonials-grid {
grid-template-columns: 1fr;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
.hero {
padding: 6rem 0 2rem;
}
.hero-title {
font-size: 2rem;
}
.hero-buttons {
flex-direction: column;
}
.btn {
width: 100%;
text-align: center;
}
.credentials-grid {
grid-template-columns: 1fr;
}
.container {
padding: 0 0.5rem;
}
.section-header {
margin-bottom: 2rem;
}
.about,
.services,
.approach,
.testimonials,
.contact {
padding: 3rem 0;
}
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-content,
.service-card,
.testimonial-card {
animation: fadeInUp 0.6s ease-out;
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}
/* Print styles */
@media print {
.navbar,
.hero-buttons,
.contact-form,
.footer {
display: none;
}
body {
font-size: 12pt;
line-height: 1.4;
}
h1, h2, h3 {
page-break-after: avoid;
}
}