/**
 * Homepage Styles - James Kosur
 */

/* ===== HEADER STYLING ===== */
.site-header {
    background: #e3f2fd !important;
    padding: 12px 0;
    border-bottom: none;
    box-shadow: none;
}

.site-title {
    text-align: center;
}

.site-title a {
    color: #2196f3 !important;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
}

.site-title a:hover {
    color: #1976d2 !important;
}

/* Hide navigation on homepage */
.home .main-navigation {
    display: none;
}

/* ===== PAGE BACKGROUND ===== */
body.home,
body.home #page,
.home .site-content {
    background: #ffffff !important;
}

/* ===== HERO SECTION ===== */
.home-hero {
    background: #ffffff;
    padding: 60px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}


.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    max-width: 850px;
    margin: 0 auto;
}

/* Profile photo */
.hero-image {
    flex-shrink: 0;
    position: relative;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #e8eaf6;
    box-shadow: 0 4px 20px rgba(100, 100, 150, 0.1);
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #e8eaf6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    font-size: 13px;
    padding: 20px;
    border: 6px solid #e8eaf6;
}

/* Hero text */
.hero-text {
    max-width: 520px;
    padding-top: 5px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Colored highlight links - magenta/pink style */
.highlight {
    color: #e91e63;
    font-weight: 600;
    text-decoration: none;
}

.highlight-blue {
    color: #2196f3;
    text-decoration: none;
}

/* ===== ICON MENU SECTION ===== */
.icon-menu {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 50px 0 30px;
    max-width: 700px;
    margin: 0 auto;
}

.icon-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.icon-menu-item svg {
    width: 18px;
    height: 18px;
    stroke: #888;
}

.icon-menu-item p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
}

/* ===== FOOTER ===== */
.site-footer {
    background: transparent !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-text {
        padding-top: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .profile-photo,
    .profile-placeholder {
        width: 170px;
        height: 170px;
    }

    .icon-menu {
        flex-wrap: wrap;
        gap: 20px;
    }

}
