/* --- Ladda in lokal font --- */
@font-face {
    font-family: 'Alphbeta';
    /* Sökvägen förutsätter att fonten ligger i samma mapp som CSS/HTML */
    src: url('alphbeta.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

/* --- Basic Setup & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    background-image: linear-gradient(to bottom right, #0061ff, #60efff);
    background-attachment: fixed;
    font-family: "Geo", sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* --- Huvudinnehåll --- */
.content-wrapper {
    max-width: 90%;
}

h1 {
    font-family: "Alphbeta", sans-serif;
    font-size: 4rem;
    font-weight: normal;
    text-align: center;
    line-height: 1.2;
}

p {
    font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-top: 1rem;
}

p:last-of-type {
    margin-bottom: 2.5rem;
}

/* --- Knappar --- */
.link-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-btn {
    padding: 15px 25px;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    background-color: black;
    mix-blend-mode: screen;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.social-btn span {
    position: relative;
    z-index: 2; 
    transition: color 0.4s ease-in-out;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: translateX(-101%); 
    transition: transform 0.4s ease-in-out;
    z-index: 1;
}

/* --- HOVER-EFFEKTER --- */
.social-btn:hover {
    transform: scale(1.03); 
}

.social-btn:hover::before {
    transform: translateX(0);
}

.social-btn:hover span {
    color: black;
}

/* --- Media Query --- */
@media (max-width: 600px) {
    h1 { font-size: 3rem; }
    p, .social-btn { font-size: 1.1rem; }
}