/* ------------------------------------------- /
/ 1. Global Reset & Variables                 /
/ ------------------------------------------- */
:root {
--color-primary: #587976; /* Darker, more professional version of A0C0BD /
--color-accent: #A0C0BD; / Original accent color /
--color-text-dark: #333333;
--color-text-light: #4f4f4f;
--color-background-light: #f7f9fb;
--color-background-mid: #f0f5f5;
--color-white: #ffffff;
--font-heading: 'Rubik', sans-serif; / For strong elements /
--font-body: 'Inter', 'Open Sans', sans-serif; / Professional, clean font for body */
--header-height: 80px;
}
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-body);
color: var(--color-text-light);
background-color: var(--color-background-light);
line-height: 1.6;
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color 0.2s;
}
a:hover {
color: var(--color-text-dark);
text-decoration: underline;
}
/* ------------------------------------------- /
/ 2. Typography & Headings                    /
/ ------------------------------------------- */
h1, h2, h3, h4, .section-subtitle {
font-family: var(--font-heading);
color: var(--color-text-dark);
font-weight: 500;
margin-bottom: 0.5rem;
text-align: center;
}
.section-subtitle {
font-size: clamp(1.8rem, 4vw, 2.5rem);
padding-bottom: 1rem;
}
.section-text, p {
font-size: 18px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-align: center;
color: rgb(114, 130, 127);
line-height: 1.4em;
font-family: futura-lt-w01-light, sans-serif;
padding-bottom: 50px;
}
/* ------------------------------------------- /
/ 3. Layout & Structure                       /
/ ------------------------------------------- */
.container-fluid {
max-width: 100%;
padding: 0;
}
.main-content {
min-height: calc(100vh - 300px); /* Account for large header/padding and footer /
padding-top: var(--header-height); / Offset for fixed header */
background-color: var(--color-white);
}
.content-section {
max-width: 1000px;
margin: 0 auto;
padding: 4rem 1.5rem;
}
/* ------------------------------------------- /
/ 4. Header & Navigation                      /
/ ------------------------------------------- */
.header {
height: var(--header-height);
width: 100%;
position: sticky; /* Sticky is better than fixed for less obstruction on mobile */
top: 0;
z-index: 100;
background-color: white;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-column {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
height: 100%;
}
.header-practice img {
max-width: 180px; /* Reduced logo size for cleaner header */
height: auto;
border-radius: 4px;
}
.header-href {
display: flex;
align-items: center;
gap: 1.5rem;
}
.header-info {
display: flex;
flex-direction: column;
align-items: flex-end;
font-size: 0.9rem;
line-height: 1.2;
}
.header-name {
color: var(--color-text-light);
font-weight: 400;
}
.header-contact a {
color: var(--color-primary);
font-weight: 500;
}
/* Desktop Navigation */
.links1 ul {
list-style: none;
display: flex;
gap: 1.5rem;
margin: 0;
}
.links1 a {
color: var(--color-text-dark);
font-weight: 500;
padding: 0.5rem 0.5rem;
border-radius: 4px;
transition: all 0.2s;
}
.links1 a:hover {
background-color: var(--color-background-mid);
text-decoration: none;
}
.links1 a.button-portal {
padding: 8px 16px;
background-color: var(--color-primary);
color: var(--color-white);
border-radius: 6px;
border: 1px solid var(--color-primary);
transition: all 0.3s;
}
.links1 a.button-portal:hover {
background-color: var(--color-white);
color: var(--color-primary);
}
/* Mobile Hamburger Menu */
.links2 {
display: block;
}
.hamburger-icon {
font-size: 1.8rem;
cursor: pointer;
color: var(--color-dark);
padding: 0.25rem 0.5rem;
}
.overlay {
height: 100%;
width: 100%;
position: fixed;
z-index: 101;
top: 0;
left: 0;
background-color: rgba(44, 62, 80, 0.95); / Darker overlay for focus /
overflow-y: hidden;
transition: 0.5s;
}
.overlay-content {
position: relative;
top: 25%;
width: 100%;
text-align: center;
margin-top: 30px;
}
.overlay a {
padding: 15px;
text-decoration: none;
font-size: 24px;
color: var(--color-white);
display: block;
transition: 0.3s;
font-family: var(--font-heading);
}
.overlay a:hover, .overlay a:focus {
color: var(--color-accent);
}
.overlay .closebtn {
position: absolute;
top: 20px;
right: 45px;
font-size: 60px;
}
/* ------------------------------------------- /
/ 5. Hero Section (index.ejs)                 /
/ ------------------------------------------- */
.hero-section {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 4rem 1.5rem;
background-color: var(--color-background-mid);
gap: 3rem;
}
.hero-img-container {
max-width: 340px;
text-align: center;
}
.hero-img-container img {
width: 100%;
height: auto;
border-radius: 8px; /* Softer rounded corners */
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.hero-text-container {
max-width: 500px;
}
.hero-text-container p {
margin-bottom: 0.5rem;
}
.contact-text {
padding: 12px 24px;
border: 2px solid var(--color-primary);
background-color: var(--color-primary);
color: var(--color-white);
font-weight: 600;
border-radius: 6px;
text-transform: uppercase;
letter-spacing: 0.05em;
transition: background-color 0.2s, color 0.2s, border-color 0.2s;
cursor: pointer;
font-size: 14px;
line-height: 1.2;
font-family: sans-serif;
}
.contact-text:hover {
background-color: var(--color-white);
color: var(--color-primary);
border-color: var(--color-primary);
transform: translateY(-2px);
}
.tagline-section {
text-align: center;
padding: 5rem 1.5rem;
background-color: rgb(213,225,223);
color: var(--color-white);
}
.tagline {
color: var(--color-white);
font-size: clamp(1.5rem, 3.5vw, 1.6rem);
font-weight: 300;
max-width: 800px;
margin: 0 auto 2.5rem;
line-height: 1.3;
}
.contact-center {
padding-bottom: 10px;
text-align: center;
}
/* Feature Icons Section */
.infoicons1- {
padding: 3rem 1rem;
background-color: var(--color-white);
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
gap: 3rem;
max-width: 1000px;
margin: 0 auto;
border-top: 1px solid var(--color-background-mid);
}
.infoicons1- .item {
flex: 0 0 auto;
text-align: center;
max-width: 180px;
}
.infoicons1- .icon-circle {
height: 90px;
width: 90px;
border-radius: 50%;
background-color: var(--color-background-mid);
margin: 0 auto 12px;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.3s;
}
.infoicons1- .item:hover .icon-circle {
background-color: var(--color-accent);
}
.infoicons1- svg {
fill: var(--color-primary);
width: 32px;
height: 32px;
}
.infoicons1- .desc {
color: var(--color-text-light);
font-size: 0.9rem;
line-height: 1.3;
font-weight: 500;
}
.infoicons1- .desc div {
display: inline; /* Fixes the odd line break */
}
/* ------------------------------------------- /
/ 6. Content Pages (About, Services, Location)/
/ ------------------------------------------- */
.about-page-content {
max-width: 800px;
margin: 0 auto;
padding: 4rem 1.5rem;
}
.profile {
text-align: center;
margin: 3rem 0 0;
padding-top: 2rem;
border-top: 1px solid var(--color-background-mid);
}
.profile-img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
margin-bottom: 1rem;
border: 4px solid var(--color-white);
}
.profile-name {
font-family: var(--font-heading);
font-size: 1.5rem;
color: var(--color-text-dark);
}
.profile-title {
font-size: 1rem;
color: var(--color-text-light);
}
/* Services Page */
.services-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
text-align: left;
margin-top: 2rem;
padding: 0 1.5rem;
}
.service-section h4 {
font-size: 1.25rem;
color: var(--color-primary);
margin-bottom: 0.5rem;
text-align: left;
font-weight: 600;
}
.service-section ul {
list-style: none;
padding: 0;
}
.service-section li {
margin-bottom: 0.5rem;
padding-left: 1.2rem;
position: relative;
}
.service-section li:before {
content: '→';
color: var(--color-primary);
font-weight: 700;
position: absolute;
left: 0;
}
/* Location Page */
.location-content {
display: flex;
flex-direction: column;
gap: 2rem;
align-items: center;
text-align: center;
padding-top: 3rem;
}
.map-container {
max-width: 100%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.map-container img {
display: block;
width: 100%;
max-width: 500px; /* Limit map size for better mobile/desktop appearance */
height: auto;
}
.address p {
text-align: center;
}
.address h3 {
color: var(--color-primary);
}
/* Contact Form Modal */
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 150;
display: none;
align-items: center;
justify-content: center;
background-color: rgba(44, 62, 80, 0.85); / Matches overlay color /
padding: 1rem;
backdrop-filter: blur(6px);
}
.modal-content {
position: relative;
background-color: white;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
width: 100%;
max-width: 600px; / Increased width for better form viewing /
margin: auto;
overflow: hidden;
transform: scale(0.95);
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal-backdrop[style="display: flex"] .modal-content {
transform: scale(1);
opacity: 1;
}
.close-button {
background: none;
color: var(--color-text-dark);
position: absolute;
top: 10px;
right: 10px;
font-size: 2rem;
font-weight: 300;
cursor: pointer;
z-index: 10;
line-height: 1;
transition: color 0.2s;
border: none;
}
.close-button:hover {
color: var(--color-primary);
transform: rotate(90deg);
}
.form-container {
padding: 0;
padding-top: 0; /* Let the iframe determine its own padding */
width: 100%;
height: 80vh;
max-height: 900px;
}
/* ------------------------------------------- /
/ 7. Footer                                   /
/ ------------------------------------------- */
footer {
background-color: var(--color-text-dark);
color: var(--color-background-mid);
padding: 0rem 0rem;
font-size: 0.95rem;
}
footer a {
color: white;
text-decoration: none;
}
footer a:hover {
color: var(--color-white);
}
.footer-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
gap: 3rem;
}
.footer-column {
flex: 1 1 200px;
min-width: 200px;
padding: .5rem 0rem;
}
.subtitle {
font-weight: 600;
margin-bottom: 0.8rem;
font-size: 1.1rem;
color: var(--color-white);
}
.sp-disclaimer {
font-size: 0.75rem;
text-align: center;
padding-top: 2rem;
padding-botom: 0.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 2rem;
}
.foot-container {
background-color: gray;
display: flex;
}
/* ------------------------------------------- /
/ 8. Responsive Adjustments                   /
/ ------------------------------------------- */
@media (min-width: 768px) {
.location-content {
flex-direction: row;
align-items: flex-start;
justify-content: center;
gap: 4rem;
padding: 6rem 3rem;
}
}
@media (max-width: 990px) {
.links1 { display: none; }
.links2 { display: block; }
.header-info { display: none; }
}
@media (min-width: 991px) {
.links1 { display: block; }
.links2 { display: none; }
}
@media (max-width: 767px) {
.hero-section { flex-direction: column; text-align: center; }
.hero-text-container { order: 2; text-align: center; }
.hero-img-container { order: 1; }
.hero-text-container p { text-align: center; }
.tagline-section { padding: 3rem 1.5rem; }
.footer-row { flex-direction: column; gap: 1.5rem; }
.footer-column { min-width: unset; }
.contact-text { margin-bottom: 10px; margin-right: 0;}
}
