/* Custom styles for red navbar */
.site-header {
    background-color: #CC0100;
    border-top: none;
    border-bottom: none;
    min-height: 60px;
}

.site-title,
.site-title:visited {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.site-title:hover {
    color: white !important;
    text-decoration: none;
}

.site-nav {
    background-color: #CC0100;
    border: none;
}

.site-nav .page-link {
    color: white !important;
    font-size: 1rem;
    margin-left: 20px;
}

.site-nav .page-link:hover {
    color: #ffebee !important;
}

/* Force nav to always show on larger screens (Desktop View) */
@media screen and (min-width: 1000px) { /* ADJUSTED BREAKPOINT */
    .site-nav .trigger {
        display: block !important;
    }

    .site-nav .menu-icon {
        display: none;
    }

    .site-nav {
        float: right;
        line-height: 56px;
    }

    .site-nav .page-link {
        margin-left: 20px;
        display: inline-block;
    }
}

/* Mobile menu */
.site-nav .menu-icon > svg {
    fill: white;
}

.site-nav .trigger {
    background-color: #CC0100;
}

/* Show full nav on tablets and up */
@media screen and (min-width: 1000px) { /* ADJUSTED BREAKPOINT */
    .site-nav .page-link {
        margin-left: 20px;
    }
}

/* Main content styling */
.page-content {
    padding: 30px 0;
    background-color: #f5f5f5;
}

.wrapper {
    max-width: 1100px;
}

/* Profile image styling */
.profile-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.profile-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border: 3px solid #ddd;
    flex-shrink: 0;
}

.profile-content {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .profile-section {
        flex-direction: column;
    }

    .profile-image {
        width: 100%;
        max-width: 100%;
    }
}
