*{
    margin: 0;
    padding:0;
    scroll-behavior: smooth;
    font-family: 'Karla', sans-serif;
}

nav{
    display: flex;
    padding: 0.5% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(25, 26, 74, 1);
}

.header img{
    width: 200px;
}

.nav-links{
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 25px;
}

.nav-links ul li a{
    color: whitesmoke;
    text-decoration: none;
    font-size: 22px;
}

.nav-links ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background-color: blue;
    display: block;
    margin: auto;
    transition: 0.5s;

}
.nav-links ul li:hover::after{
    width: 100%;
}



/* CSS för hela sidan */
body {
    background-color: #f4f4f4;
    color: #333;
}

h2, h3 {
    font-size: 2em;
    padding: 60px;
    text-align: center;
}

.spotify-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    margin-bottom: 5%;
}

.spotify-embed {
    width: 100%;
    max-width: 700px; 
}

iframe {
    border: none;
    width: 100%;
    height: 800px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 170px;
}

form label {
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
}

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.1em;
}

form button {
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
}

form button:hover {
    background-color: #0056b3;
}







/* FOOTER */
.container{
    max-width: 100%;
    margin: auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul{
    list-style: none;
}

.footer{
    padding: 70px 0px;
    background-color: black;
}

.footer-col{
    width: 30%;
    color: whitesmoke;
}

.footer-col h4{
    font-size: 18px;
    color: whitesmoke;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before{
    content: "";
    position: absolute;
    bottom: -10px;
    background-color: blue;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 18px;
}

.footer-col ul li a{
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-weight: 300;
    color: grey;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: white;
    padding-left: 8px;
}

.footer-col .kontakt {
    display: flex;
    flex-direction: column;
}

.footer-col .kontakt-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-col .kontakt-item span:first-child {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: blue;
    text-align: center;
    line-height: 40px;
    border-radius: 70%;
    color: white;
    margin-right: 10px;
}

.footer-col .kontakt-item .kontakt-text {
    font-size: 16px;
    color: white;
}

.footer-col .footer-image {
    max-width: 200px; 
    height: auto; 
    margin-top: 10px; 
    margin-bottom: 25px;

}

.footer-bottom {
    text-align: center; 
    padding-top: 60px; 
    color: white;
}


.footer-bottom-row {
    display: flex;       
    flex-direction: row;    
    justify-content: space-between;
    width: 40%;
}










/* Responsiv Desingn */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}
.menu-icon i.fa-times {
    display: none;
}

/* Mobil */
@media (max-width: 600px) {
    nav {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(25, 26, 74, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links ul li a {
        font-size: 28px;
        color: white;
    }

    .menu-icon {
        display: block;
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    #menu-toggle:checked + .menu-icon .fa-bars {
        display: none;
    }
    #menu-toggle:checked + .menu-icon .fa-times {
        display: inline;
    }


    .spotify-container {
        flex-direction: column;
        gap: 150px;
    }

    .spotify-embed {
        max-width: 100%;       
    }

    


    .row {
        display: flex;
        flex-direction: column; 
        align-items: flex-start; 
    }

    .footer-col:first-child {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-bottom-row {
        display: flex;
        width: 100%;
        justify-content: space-between; 
    }

    .footer-bottom-row .footer-col {
        width: 48%; 
        text-align: left;
    }
}



