@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

/* General page styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    margin-top: 100px !important; /* Space added for the header */
}

.breadcrumb {
    padding: 15px 25px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

.breadcrumb a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.breadcrumb span {
    color: #666;
}

.sitemap-container {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

.sitemap-left {
    width: 60%;
}

h1 {
    font-family: "Audiowide", system-ui, sans-serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #0073e6;
    padding-bottom: 10px;
}

.sitemap-list {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    color: #444;
    font-family: 'Outfit', sans-serif;
}

.sitemap-list li {
    margin: 15px 0;
    padding-left: 10px;
    position: relative;
}

.sitemap-list li:before {
    content: "\203A";
    color: #0073e6;
    font-size: 18px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 5px;
    font-family: 'Outfit', sans-serif;
}

.sitemap-list li ul {
    margin-top: 10px;
    padding-left: 30px;
}

.sitemap-list li ul li {
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
}

.sitemap-list li a {
    text-decoration: none;
    color: #0073e6;
    transition: color 0.3s ease;
}

.sitemap-list li a:hover {
    text-decoration: underline;
    color: #005bb5;
}

/* Updated Doctor Card Styling with Overlapping Image */
.sitemap-right {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-card {
    position: relative;
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 60px 30px 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    margin-top: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 370px;
}

.doctor-card:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.doctor-card img {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    height: 270px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.doctor-info {
    margin-top: 80px;
    padding: 0 20px;
    font-family: 'Outfit', sans-serif;
}

.doctor-info h2 {
    font-family: "Audiowide", system-ui, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1f2f46;
    margin-bottom: 15px;
}

.doctor-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Outfit', sans-serif;
}

.view-profile-button {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #001F62;
    border-radius: 45px;
    background: white;
    color: #000000;
    font-size: 1.2vw;
    font-weight: 510;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.view-profile-button:hover {
    background: #1c3694;
    color: white;
    border-color: #1c3694;
}

/* Remove blue outline from focused links and buttons */
a:focus, button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Accessible alternative focus styling */
a:focus, button:focus {
    outline: 2px dashed #0073e6 !important;
    outline-offset: 4px !important;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .sitemap-container {
        flex-direction: column;
        padding: 20px;
    }

    .sitemap-left, .sitemap-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .doctor-card {
        max-width: 100%;
        padding: 50px 20px;
        min-height: 450px;
    }

    .doctor-card img {
        width: 150px;
        height: 150px;
        top: -100px;
    }

    .doctor-info {
        margin-top: 60px;
    }
}

/* Media Query for 2560px width */
@media (min-width: 2560px) {
    body {
        font-size: 1.5rem; /* Increase base font size for larger screens */
    }

    .breadcrumb {
        font-size: 20px; /* Larger breadcrumb text */
        padding: 25px 40px;
    }

    .sitemap-container {
        padding: 80px;
        max-width: 1800px; /* Increase width of the sitemap container */
    }

    h1 {
        font-size: 50px; /* Larger title */
    }

    .sitemap-list {
        font-size: 24px; /* Increase font size */
    }

    .sitemap-list li {
        margin: 30px 0;
        padding-left: 30px; /* More spacing */
    }

    .sitemap-list li:before {
        font-size: 26px; /* Increase arrow size */
    }

    .doctor-card {
        max-width: 800px; /* Larger doctor card */
        padding: 120px 60px; /* Increased padding */
        margin-top: 200px; /* More space for overlapping image */
        min-height: 700px; /* Increased minimum height */
    }

    .doctor-card img {
        width: 400px; /* Larger image size */
        height: 400px;
        top: -220px; /* Adjust positioning for larger image */
    }

    .doctor-info {
        margin-top: 150px;
        padding: 0 50px; /* More padding */
    }

    .doctor-info h2 {
        font-size: 36px; /* Larger font for doctor's name */
    }

    .doctor-info p {
        font-size: 24px; /* Larger description text */
    }

    .view-profile-button {
        font-size: 1.8rem; /* Increase button text size */
        padding: 20px 60px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Slightly deeper shadow */
    }
}
