 
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

 
 .navbar {
    background-color: #222;  
    padding: 20px 0;
    width: 100%;
    position: relative;  
    z-index: 1000;
    margin-bottom: 40px;  
}

 .contact-container, .map-page-container, .main-content {
    margin-top: 0 !important; 
    padding-top: 20px;
}
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ff9900;
}

 
#slideshow-container {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out; /* Mjuk övergång */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.content-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;

}
 .contact-container {
max-width: 900px;
margin: 100px auto 50px;
padding: 20px;
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.contact-info, .form-section {
flex: 1;
min-width: 300px;
}
 .contact-form {
background: #fdfdfd;
padding: 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 20px; }
label {
display: block;
margin-bottom: 8px;
font-weight: 600;
}
input, textarea, select {
width: 100%;
padding: 12px;
border: 2px solid #ddd;
border-radius: 6px;
font-size: 16px;
transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus {
outline: none;
border-color: #2980b9;
box-shadow: 0 0 8px rgba(41, 128, 185, 0.2);
}
.submit-btn {
background: #2980b9;
color: white;
padding: 15px 30px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 18px;
font-weight: bold;
width: 100%;
transition: background 0.3s, transform 0.2s;
}
.submit-btn:hover {
background: #1c638e;
transform: translateY(-2px);
}
 @media (max-width: 768px) {
.contact-container {
flex-direction: column;
margin-top: 80px;
}
}
 .map-page-container {
    max-width: 1200px;
    margin: 80px auto 40px;  
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

 .map-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.map-text {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #2980b9;
}

.map-wrapper {
    flex: 2;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;  
}

 @media (max-width: 768px) {
    .map-content {
        flex-direction: column;
    }
    
    .map-wrapper {
        width: 100%;
        height: 300px;
    }
}
 
html { scroll-behavior: smooth; }  

 .info-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);  
}

 .weather-section {
    padding: 60px 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

#weather-widget {
    margin-top: 20px;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

.footer {
    padding: 20px;
    text-align: center;
    background: #1a252f;
    color: #bdc3c7;
}
 .about-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

 .team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

 .profile-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Mjuk studs-effekt */
    cursor: pointer;
    text-align: center;
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.05);  
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.profile-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: 0.3s;
}

.profile-card:hover img {
    filter: grayscale(0%);
}

.profile-info {
    padding: 20px;
}

.badge {
    display: inline-block;
    background: #2980b9;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 10px;
}

 
.history-section {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    line-height: 1.8;
}
 .main-content, .map-page-container {
    padding-top: 140px;  
    max-width: 1100px;
    margin: 0 auto;
}