/* Home Page Styles */
.home-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 20px;
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}

.home-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #333;
    text-align: center;
    margin: 0;
}

.home-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    display: block;
}

.site-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    display: block;
}

/* Home Page Responsive */
@media (max-width: 768px) {
    .home-title {
        font-size: 2.5rem;
    }
    
    .home-logo,
    .site-logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .home-title {
        font-size: 2rem;
    }
    
    .home-logo,
    .site-logo {
        width: 120px;
        height: 120px;
    }
}

