/* <<< HÄR ÄR ÄNDRINGEN: Importerar det nya typsnittet från Google Fonts >>> */
@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@300;400&display=swap');

body {
    margin: 0; 
    padding: 0; 
    background-color: #8cffe0; 
    /* <<< HÄR ÄR ÄNDRINGEN: Lägger till Martian Mono som primärt typsnitt >>> */
    font-family: 'Martian Mono', 'Courier New', Courier, monospace;
    /* <<< NYTT TILLÄGG: Ställer in en lättare standardvikt på texten >>> */
    font-weight: 250;
    /* <<< NYTT TILLÄGG: Minskar den globala textstorleken något >>> */
    font-size: 15px;
}

.page-container {
    max-width: 1100px; 
    margin: 0 auto;
    position: relative;
    padding-top: 80px;
}

#logo-holder {
    width: 250px;
    height: 200px;
    position: absolute; 
    top: 80px;
    left: 10px;
    z-index: 100;
    pointer-events: none;
}

#canvas-holder, #canvas-holder-2 {
    width: 100%; 
    position: relative;
}

#canvas-holder {
    height: 600px;
    margin-top: 0;
    z-index: 1;
}

#canvas-holder-2 {
    height: 500px;
    margin-top: -150px;
    z-index: 50;
}

h1 { 
    font-size: 1.7em; 
    font-weight: 300; 
    text-align: left;
    margin-top: 30px; 
    margin-left: 25px;
}

.content-divider {
    padding: 20px 25px;
    margin-top: 40px;
}

.content-divider h1 {
    margin-left: 0;
}

.team-section {
    padding: 0 25px 40px 25px; 
    text-align: center;
}

.team-section h2 {
    font-size: 1.7em;
    font-weight: 300;
    margin-bottom: 50px; 
    text-align: left;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.team-member:last-child:nth-child(odd) {
    grid-column: span 2;
    justify-self: center;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    font-weight: 300;
}

.team-member a {
    font-size: 1em;
    color: #555;
    text-decoration: none;
}

.team-member a:hover {
    text-decoration: underline;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.location-section {
    padding: 0;
}

.location-section h2 {
    font-size: 1.7em;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: left;
}

.map-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-image: url('karta.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 600px) {
    .team-container {
        grid-template-columns: 1fr;
    }

    .team-member:last-child:nth-child(odd) {
        grid-column: auto;
    }
}

footer {
    text-align: center;
    padding: 20px 25px 40px 25px;
    margin-top: 0;
    background-color: #8cffe0;
    color: #555;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
}

footer a {
    color: #555;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

