* {
    box-sizing: border-box;
}

/* Bakgrund & centrering */
body {
    margin: 0;
    min-height: 100vh;
    background: #f3efe8; /* Beige bakgrund */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2b2b2b;
}

/* Wrapper som skapar beige marginaler på mobil */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px; /* detta ger den beige strimman */
}

/* Kortet */
.card {
    width: 100%;
    max-width: 420px;
    padding: 38px 30px;
    background: #faf9f6; /* Off-white */
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 14px 32px rgba(0,0,0,0.05);
}

/* Logotyp */
.logo {
    max-width: 150px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Gemensam stil för knappar */
.link {
    display: block;
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 22px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover-effekt */
.link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

/* Primär knapp – boka */
.primary {
    background: #2f2f2f;
    color: #ffffff;
}

/* Instagram – sand/grå */
.instagram {
    background: #e5dfd4;
    color: #2b2b2b;
}

/* Ring-knapp – stylish grå */
.phone {
    background: #dcdcdc;      /* mjuk grå */
    color: #2b2b2b;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

a:focus-visible {
    outline: 3px solid #2f2f2f;
    outline-offset: 4px;
}

/* Lucide-ikoner: styrs av currentColor */
.icon svg {
    width: 13px;
    height: 13px;
    stroke-width: 1.0;
}

/* Ikonfärger följer texten */
.primary .icon svg {
    color: #ffffff;
}

.instagram .icon svg {
    color: #2b2b2b;
}

.phone {
    background: #e0e0e0;
    color: #2b2b2b;
}

/* Besöksadress */
.address {
    margin-top: 32px;
    font-size: 0.85rem;
    color: #6b6b6b;
    line-height: 1.5;
}

/* Kredit längst ner i beige */
.credit {
    margin-top: 16px;
    font-size: 0.75rem;
    color: #9a948b;
}

.credit a {
    color: inherit;
    text-decoration: none;
}

.credit a:hover {
    text-decoration: underline;
}
