/* Grundinställningar */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 600;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.app-icon {
    width: 150px;
    height: 150px;
    border-radius: 35px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 10px auto 30px;
    line-height: 1.5;
}

.app-store-button img {
    height: 60px;
    transition: transform 0.2s;
}

.app-store-button:hover img {
    transform: scale(1.05);
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

/* Features */
.features {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    border-radius: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.4;
}

/* Policy Sida */
.policy-content {
    padding: 40px 0;
    flex: 1;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.policy-content h2 {
    margin-top: 30px;
    font-size: 1.5rem;
}

.policy-content p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

.policy-content a {
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
}

.date {
    opacity: 0.6;
    margin-bottom: 40px;
    font-style: italic;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
    margin-top: auto;
}

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

/* Mobilanpassning */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 30px 0;
    }
}

/* Lägg till/Ersätt detta i din CSS */

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

select#language-selector {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

select#language-selector option {
    background-color: #0062E6;
    /* Mörkblå bakgrund för alternativen så de syns */
    color: white;
}