/* Single Dentist Profile Page */
.site-header.sticky {
    background-color: var(--primary);
    border-radius: 28px;
    transform: translateY(10px) scale(0.975);
}

.dentist-main {
    background-color: #FAF8F5; 
    color: #1a1a1a;
    font-family: var(--font-family-base, sans-serif);
}

.site-inner:has(.dentist-main){
   max-width: 100%;
   padding: 0;
}

.dentist-main section{
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.dentist-main section .container{
    width: calc(100% - 80px);
    max-width: 1200px;
}




/* 1. Hero Section */
.dentist-main .dentist-hero{
    padding-top: 160px;
    width: 100%;
    background-color: #091425;
    padding-bottom: 60px;
}

.dentist-main .dentist-hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1000px;
}

.dentist-hero-content {
    flex: 1;
    min-width: 300px;
}

.dentist-hero-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E69056; /* Copper accent */
    margin-bottom: 10px;
    font-weight: 600;
}

.dentist-hero-content .dentist-title {
    font-family: var(--font-family-serif, serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 30px;
    color: white;
}

.dentist-hero-image {
    flex: 1;
    max-width: 400px;
}



.dentist-profile-image {
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    aspect-ratio: 4 / 5;
    object-position: top;
}
.dentist-hero .button{
    color: var(--primary);
    background-color: #fff;
    margin-bottom: 50px;
}



/* 2. Light Bio Section */
.dentist-main .dentist-bio-light {
    background-color: #FAF8F5; /* Cream background */
    padding: 80px 0;
    width: 100%;
}

.dentist-main .dentist-bio-light .container {
    max-width: 1000px; /* Keep reading text narrow */
    background-color: #ffffff;
    padding: 50px;
    border-radius: 24px;
}

.dentist-bio-content {
    color: #4a4a4a;
}

.dentist-short-desc {
    font-size: 28px;
    color: #E69056; /* Copper accent */
    font-family: var(--font-family-serif, serif);
    margin-bottom: 40px;
    line-height: 1.4;
}

.dentist-full-bio {
    font-size: 18px;
    line-height: 1.8;
}
.dentist-full-bio p {
    margin-bottom: 24px;
}

/* 3. Consultation Form Section */
.dentist-main .dentist-consult-form {
    background-image: url(/wp-content/uploads/2025/05/prefooter_11zon-scaled.webp);
    background-position: center center;
    background-size: cover;
    padding: 100px 0;
    width: 100%;
    position: relative;
}

.dentist-main .dentist-consult-form .container {
    justify-content: center; /* Center the form horizontally */
}

.dentist-form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Very subtle soft shadow */
    max-width: 550px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.dentist-form-card h2 {
    font-family: var(--font-family-serif, serif);
    font-size: 42px;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.1;
}


.dentist-main .dentists {
    padding: 140px 0 100px 0;
    width: 100%;
    position: relative;
}

.dentist-main .dentists:before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 50%;
    background-color: black;
}

.dentist-main .dentists .section-title {
    margin-bottom: 50px;
}


@media screen and (max-width: 1024px) {
    .dentist-hero-content .dentist-title {
        font-size: 48px;
    }
}

@media screen and (max-width: 768px) {
    .dentist-main section .container {
      width: calc(100% - 40px);
    }
    .dentist-main .dentist-hero .container {
        flex-direction: column;
        text-align: center;
    }
    .dentist-hero-image {
        max-width: 100%;
    }
    .dentist-hero-content .dentist-title {
        font-size: 40px;
    }
    .dentist-form-card {
        padding: 40px 20px;
    }
    .dentist-short-desc {
        font-size: 24px;
    }

    .dentist-main .dentist-bio-light .container {
      padding: 20px;
    }
}
@media screen and (max-width: 500px) {
    .dentist-main .dentist-bio-light {
      padding: 40px 0;
    }
    .dentist-main .dentist-bio-light .container {
      background-color: unset;
      padding: 0;
    }
}
 
  

