@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    line-height:1.6;
    color:#1f2937;
    background:#d7d0c3;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#fdfaf4;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #e5e7eb;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:20px 0;
}

.logo img{
    height:80px;
    width:auto;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}


nav a{
    text-decoration:none;
    color:#374151;
    font-weight:500;
}

.btn{
    background:#cbb284;
    color:white;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    font-weight:600;
}

.btn:hover{
    opacity:0.9;
}

.btn-outline{
    border:2px solid #cbb284;
    color:#cbb284;
    padding:12px 26px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.hero{
    padding:100px 0;
    background:#f8fafc;
}

.hero-content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:center;
}

.hero h1{
    font-size:3.5rem;
    margin-bottom:20px;
    color:#0f172a;
}

.hero p{
    font-size:1.15rem;
    margin-bottom:30px;
    color:#475569;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.hero-card ul{
    list-style:none;
    margin-top:20px;
}

.hero-card li{
    margin-bottom:12px;
}

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:2.4rem;
    color:#0f172a;
}

.feature-grid,
.service-grid,
.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature,
.service-card,
.step{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.step span{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#cbb284;
    color:white;
    border-radius:50%;
    margin-bottom:15px;
    font-weight:bold;
}

.about{
    background:#f8fafc;
}

.about p{
    max-width:800px;
    margin:auto;
    text-align:center;
    font-size:1.1rem;
}

.contact form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact input,
.contact textarea{
    padding:15px;
    border:1px solid #d1d5db;
    border-radius:8px;
    font-size:1rem;
}

.contact textarea{
    height:150px;
    resize:none;
}


.site-footer {
    background-color: #4e4e4f; /* Ljusgrå bakgrund, ändra efter smak */
    color: white;
    padding: 20px;
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    border-top: 1px solid #eee;
    
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* Ändrat till center för att spalterna ska dras mot mitten */
    justify-content: center; 
    /* Ger lite luft i sidled mellan spalterna när de ligger på rad */
    gap: 40px;

}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 10px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: white;
}

.footer-column p {
    margin: 5px 0;
    line-height: 1.5;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}



.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom {
    max-width: 1100px;
    margin: 15px auto 0 auto;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    font-size: 14px;
    color: #878787;
}
@media(max-width:768px){

    nav ul{
        display:none;
    }

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero-buttons{
        flex-direction:column;
    }
}

.hamburger{
display:none;
background:none;
border:none;
font-size:32px;
cursor:pointer;
color:#374151;
}

/* Mobil */

@media(max-width:768px)
{

nav{
    position:relative;
}

.hamburger{
    display:block;
}

.btn{
    display:block;
    padding:10px 16px;
    font-size:14px;
}

.nav-links{
    display:none;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fdfaf4;
    padding:20px;
    gap:20px;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
    z-index:999;
}

.nav-links.active{
    display:flex;
}

.hero-content{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:2.4rem;
}

.hero-buttons{
    flex-direction:column;
}

  .logo img{
        height:60px;
    }

}
