/* Globalt */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #7a2540; /* Ljusare vinröd bakgrund */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top border / header */
.top-border {
    background-color: #4d0821; /* Mörk vinröd */
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: white;
    font-size: 22px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.top-border h1 {
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Top links (knappar) */
.top-links {
    display: flex;
    gap: 20px;              
    flex-wrap: wrap;         
    justify-content: center; 
    align-items: center;
    margin: 0;               
    padding: 0;              
}

.top-links a {
    display: inline-block;
    padding: 10px 20px;                 
    font-size: 16px;                   
    font-weight: bold;                 
    text-decoration: none;
    color: #4d0821;                   /* Vinröd text */
    background-color: white;          
    border-radius: 15px;              
    box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.top-links a:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
}

/* Content area */
.content {
    background-color: white;
    width: 100%;
    max-width: 1200px;
    height: 600px; /* behållen höjd */
    margin: 20px auto;
    padding: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Text & bild layout */
.text-content {
    flex: 1;
    margin-left: 20px;
    font-weight: bold;
    line-height: 1.6;
    color: #4d0821; /* Vinröd text */
}

.gif-image {
    flex: 0;
}

/* Footer */
.bottom-border {
    background-color: #4d0821; /* Mörk vinröd */
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
    text-align: center;
}

.bottom-border p,
.bottom-border a {
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    color: white;
    text-decoration: none;
}

/* Responsivitet */
@media (max-width: 900px) {
    .content {
        padding: 30px;
    }

    .text-content {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .top-links {
        gap: 10px;
        justify-content: center;
    }

    .top-links a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }
}
