/* Background styles - Only for home page */
body {
    background-image: url('/resources/imgs/bg/berk.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;
    position: relative;
}

/* Background overlay for better readability */
body::after {
    content: '';
    position: fixed;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);

    z-index: -1;
    pointer-events: none;
}