/* Bunya Font - Local Font Files (matching original Google Fonts: 300, 400) */
@font-face {
    font-family: "Bunya";
    src: url("../fonts/Bunya-Light_PERSONAL.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Bunya";
    src: url("../fonts/Bunya-Regular_PERSONAL.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

body {
    background: #000;
    margin: 0;
    font-family: "Bunya", "Arial", sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 48px;
}

.first-name {
    margin-right: 1.8rem;
}

.last-name {
    margin-left: 1.8rem;
}

.fullname {
    color: lightgray;
    font-family: "Bunya", "Arial", sans-serif;
    font-weight: lighter;
    font-size: 9rem;
    text-align: center;
    margin: 6rem 0 2rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.text-standard {
    color: lightgray;
    font-family: "Bunya", "Arial", sans-serif;
    font-weight: lighter;
    font-size: 3rem;
    letter-spacing: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 15rem;
}

.text-small {
    color: lightgray;
    font-family: "Bunya", "Arial", sans-serif;
    font-weight: lighter;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-align: center;
    text-transform: uppercase;
}

.instagram-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    text-decoration: none;
}

.instagram-icon {
    display: block;
    width: 8rem;
    height: 8rem;
    stroke: lightgray;
    fill: none;
}

#lang-switcher {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    padding: 4px 32px 4px 12px; /* Increase right padding for arrow */
    font-size: 1rem;
    outline: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="white" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center; /* Move arrow further right */
    background-size: 18px 18px;
}

#lang-switcher option {
    color: #000;
    background: #fff;
}

.lang-switcher-container {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 100;
}

@media (width <= 450px) {
    .fullname {
        font-size: 4.2rem;
        letter-spacing: 0.15rem;
        line-height: 1.2;
        margin: 3rem 0 1.5rem;
    }

    .first-name, .last-name {
        display: block;
        margin: 0
    }

    .text-standard {
        font-size: 1.5rem;
        letter-spacing: 0.12rem;
        margin-bottom: 12rem;
    }

    .text-small {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }

    .instagram-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 1rem;
    }
}
