html {
    overflow-x: hidden;
}

body {
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    line-height: 1.6;
    max-width: 650px; /* Minimalistisk bredd */
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    color: #333;
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: -1rem;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

/* Linktree-knappar */
.button {
    display: block;
    padding: 12px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    transition: all 0.2s;
}

.button:hover {
    background-color: #000;
    color: #fff;
}
.icon-button {
    width: 20px;
    height: 20px;
    transition: color 0.2s;
}

.icon-button:hover {
    color: #443333;
}

/* Hamburgarmeny */
.hamburger-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.hamburger-btn.hidden {
    display: none;
}

.hamburger-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s;
    transform: translateX(100%);
    padding: 60px 30px 30px;
}

.hamburger-menu.open {
    transform: translateX(0);
}

.hamburger-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.hamburger-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-menu li {
    margin-bottom: 1rem;
}

.hamburger-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.hamburger-menu a:hover {
    color: red;
}

/* Under konstruktion */
.coming-soon {
    text-align: center;
    padding: 2rem 0;
}

.coming-soon-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.coming-soon h2 {
    margin-bottom: 0.5rem;
}

.coming-soon p {
    color: #666;
}

.coming-soon .button {
    display: inline-block;
    margin-top: 2rem;
}
