@charset "UTF-8";
/* CSS Document */
body {
    margin: 0;
    padding: 0;
    color: #666666;
    line-height: 2;
    background-color: white;
    margin-left: 0%;
    margin-right: 0%;
    font-family: "Montserrat", sans-serif;
	
}

.navbar {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 40px 80px 40px 40px;
    background-color: #FFFFFF;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position:fixed;
	width: 96%;
}

html {
  scroll-padding-top: 162px;
}
.logo img {
    width: 350px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: #666666;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover {
    text-decoration: underline; 
    color: black; 
}
.menu-icon {
    display: none;
    font-size: 28px;
    color: black;
    cursor: pointer;
}

/* Button Styles */
.custom-button {
    background-color: black;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    width: auto;
    font-size: 0.85em;
}
.custom-button:hover {
    background-color: white;
    color: black;
}
/* Hero Styles */
.hero {
    background-image: url('images/heroimage.jpg');
    background-size: 100%;
    background-position: center;
    text-align: left;
    background-repeat: no-repeat;
    padding: 0px 40px 40px; 
    height: 590px;
}
.hero-content {
    flex-direction: column; 
    justify-content: center; 
    height: 100%; 
    line-height: 1;
    padding-top: 320px;
}
.hero h1 {
    font-size: 2.25em; 
    margin-bottom: 10px;
}
.hero h2 {
    margin: 0; 
    text-align: left; 
    font-size: 1.25em;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 20px;
}
h2 {
   line-height: 1.25;
}
/* Intro Styles */
.intro {
    background-color: white;
    text-align: left;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 40px;
    padding-bottom: 40px;
}
/* Doctor Section Styles */
.doctor {
    background-color: #efedee;
    text-align: left;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 40px;
    padding-top: 40px;
}
.doctor-content {
    display: flex;
    align-items: center;
}

.doctor-image {
    margin-right: 20px; 
}

.doctor-image img {
    width: 100%; 
    max-width: 180px; 
    height: auto; 
}

.doctor-info {
    flex: 1; 
}

/* Founder Section Styles */
.founder {
    background-color: #FFFFFF;
    text-align: left;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.founder-content {
    display: flex;
    align-items: center;
}

.founder-image {
    margin-right: 20px; 
}

.founder-image img {
    width: 100%; 
    max-width: 180px; 
    height: auto; 
}

.founder-info {
    flex: 1; 
}
/* Insurances Section Styles */
.insurances {
    background-color: white;
    text-align: left;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.insurances table {
    width: 100%;
    border-collapse: collapse;
}
.insurances th, .insurances td {
    border: 1px solid #dddddd;
    padding: 8px;
    text-align: left;
}
.insurance-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    margin-top: 20px;
}
.insurance-logos img {
    width: 240px;
    height: 70px;
    object-fit: contain;
}
/* Location & Contact Section Styles */
.location {
    background-color: #efedee;
    text-align: left;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.location-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.location-info {
    flex: 1; 
}

.location-image img {
    max-width: 520px; 
    height: auto; 
}

/* New Columns Styles */
.location-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.location-column {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.location-column img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.location-column p {
    margin-top: 10px;
    font-size: 1em;
}

/* Footer Styles */
footer {
    background-color: #666666;
    color: white;
    text-align: left;
    padding: 10px 40px;
    line-height: 1.5;
}

@media (max-width: 768px) {
	html {
  scroll-padding-top: 100px;
}
	.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: #FFFFFF;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: 90%;
}
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #666666;

        top: 94px; /* Adjust based on navbar height */
        right: 0;
        width: 100%;
    }

    .nav-links li {
        text-align: left;
		margin:40px 40px 40px 40px;

    }

	.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
		
}
	.nav-links a:hover {
    text-decoration:underline; 
    color: #ffffff; 
}
    .menu-icon {
        display: block;
    }

    .nav-active {
        display: flex;
    }
	.logo img {
    width: 240px;
}
    .hero {
        background-position: left;
        height: 300px;
        background-size: cover;
    }
    .hero-content {
        text-align-last: left;
        padding-top: 110px;
    }
    .hero h1 {
        text-align: left;
    }
    .intro {
        padding-left: 40px;
        padding-right: 40px;
    }
    .doctor {
        padding-left: 40px;
        padding-right: 40px;
    }
    .doctor-content {
        flex-direction: column; 
    }
    .doctor-image {
        margin-bottom: 10px; 
    }
	    
    .founder {
        padding-left: 40px;
        padding-right: 40px;
    }
    .founder-content {
        flex-direction: column; 
    }
    .founder-image {
        margin-bottom: 10px; 
    }
    .insurances {
        padding: 40px;
    }
	.location {
        padding-left: 40px;
        padding-right: 40px;
    }
    .location-content {
        display: flex;
        flex-direction: column; 
        align-items: left; 
        text-align: center; 
    }
	.location-image img {
    max-width: 300px; 
    height: auto; 
	align-items: center; 
}
    .insurance-logos {
        flex-direction: column;
        align-items: center;
    }
    .insurance-logos img {
        width: 50%;
        height: auto;
        margin-bottom: 20px;
    }
    .location-columns {
        flex-direction: column;
        align-items: center;
    }
    .location-column {
        margin-bottom: 60px;
        padding: 0;
    }
    .location-column img {
        width: 50%;
        height: auto;
    }
}

