/* style.css - Version 3.0: Fixad layout och expanderbara kort */
:root {
    --color-brand: #FF5722;
    --color-dark: #111111;
    --color-light: #F9F9F9;
    --color-text-gray: #4b5563;
    --color-text-light-gray: #9ca3af;
    --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background-color: #ffffff;
    color: var(--color-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 { font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--color-text-gray); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style-type: none; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; position: relative; padding-left: 1.5rem; color: var(--color-text-gray); }
li::before {
    content: "•"; color: var(--color-brand); font-weight: bold; 
    position: absolute; left: 0; top: 0;
}

/* Utilities */
.text-brand { color: var(--color-brand); }
.text-gradient { 
    background: linear-gradient(to right, var(--color-brand), #fb923c); 
    -webkit-background-clip: text; 
    color: transparent; 
}
.text-center { text-align: center; }
.bg-dark { background-color: var(--color-dark); color: white; }
.bg-light { background-color: var(--color-light); }
.container { max-width: 1150px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.hidden-mobile { display: none; }
.cursor-pointer { cursor: pointer; }

/* Navigation */
nav {
    position: fixed; top: 0; width: 100%; z-index: 50;
    background: rgba(255,255,255,0.98); /* Nästan helt solid för att dölja scroll */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3f4f6;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; max-width: 1150px; margin: 0 auto; }
.logo { font-size: 1.25rem; font-weight: 700; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--color-text-gray); margin-left: 2rem; }
.nav-links a:hover { color: var(--color-brand); }
.btn-nav {
    background: var(--color-dark); color: white; padding: 0.5rem 1.25rem;
    border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
}
.btn-nav:hover { background: var(--color-brand); color: white; }

/* Hero */
header { 
    /* REJÄLT ÖKAD PADDING FÖR ATT UNDVIKA OVERLAP */
    padding-top: 12rem; 
    padding-bottom: 6rem; 
}
.hero-badge {
    display: inline-block; padding: 0.25rem 0.75rem; background: #f3f4f6;
    color: var(--color-brand); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; border-radius: 9999px; margin-bottom: 1.5rem;
}
.hero-buttons { 
    display: flex; gap: 1rem; flex-direction: column; 
    margin-bottom: 5rem; /* Ökat avstånd ner till erfarenhets-sektionen */
}
.btn-primary {
    display: inline-flex; justify-content: center; align-items: center;
    background: var(--color-brand); color: white; padding: 1rem 2rem;
    border-radius: 0.5rem; font-weight: 700; box-shadow: 0 10px 15px -3px rgba(255, 87, 34, 0.3);
}
.btn-primary:hover { background: #e64a19; }
.btn-outline {
    display: inline-flex; justify-content: center; align-items: center;
    border: 1px solid #e5e7eb; color: #374151; padding: 1rem 2rem;
    border-radius: 0.5rem; font-weight: 700;
}
.btn-outline:hover { border-color: var(--color-dark); }

/* Experience */
.experience-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2rem; }
.exp-link { font-size: 1.125rem; font-weight: 700; color: #9ca3af; }
.exp-link:hover { color: var(--color-brand); }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.service-card {
    background: white; padding: 2rem; border: 1px solid #f3f4f6; border-radius: 1rem;
    transition: 0.3s; display: block; position: relative;
    cursor: pointer; /* Visar att det går att klicka */
}
.service-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); border-color: rgba(255, 87, 34, 0.2); }
.icon-box {
    width: 3rem; height: 3rem; background: #f9fafb; border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.service-card:hover .icon-box { background: rgba(255, 87, 34, 0.1); }
.service-card svg { width: 1.5rem; height: 1.5rem; stroke: var(--color-dark); }
.service-card:hover svg { stroke: var(--color-brand); }

/* Expandable Service Details (NEW) */
.service-details {
    display: none; /* Dold som standard */
    margin-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem;
    animation: fadeIn 0.3s ease-in-out;
}
.service-details.active { display: block; }
.service-price {
    font-weight: 700; color: var(--color-dark); background: #fff7ed;
    padding: 1rem; border-radius: 0.5rem; margin: 1.5rem 0; font-size: 0.9rem;
}
.service-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.btn-action-primary {
    display: inline-flex; justify-content: center; align-items: center;
    background: var(--color-brand); color: white; padding: 0.75rem 1.5rem;
    border-radius: 0.375rem; font-weight: 600; font-size: 0.9rem; width: 100%;
}
.btn-action-secondary {
    display: inline-flex; justify-content: center; align-items: center;
    background: white; color: var(--color-text-gray); border: 1px solid #e5e7eb;
    padding: 0.75rem 1.5rem; border-radius: 0.375rem; font-weight: 600; font-size: 0.9rem; width: 100%;
}
.btn-action-secondary:hover { border-color: var(--color-dark); color: var(--color-dark); }
.toggle-icon { float: right; transition: 0.3s; }
.service-card.open .toggle-icon { transform: rotate(180deg); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fit Section */
.fit-section { 
    max-width: 800px; 
    margin: 0 auto 3rem auto; 
    text-align: center; 
    padding: 0 1.5rem; /* NYTT: Skapar luft på mobilen */
}
.fit-section h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.fit-text { font-size: 1.1rem; line-height: 1.7; color: #374151; }

/* Booking */
.booking-card {
    background: var(--color-dark); color: white; border-radius: 1.5rem;
    padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden;
    margin-bottom: 3rem;
}
.booking-card p { color: #d1d5db; }
.calendar-card {
    background: white; color: var(--color-dark); border-radius: 0.75rem;
    padding: 2.5rem; max-width: 500px; margin: 0 auto; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.calendar-card p { color: var(--color-text-gray); }

/* Footer */
footer { border-top: 1px solid #f3f4f6; padding: 3rem 0; margin-top: 3rem; }
.footer-content { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
.footer-links { display: flex; gap: 1.5rem; align-items: center; }
.cookie-btn { background: none; border: 1px solid #e5e7eb; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; cursor: pointer; color: #9ca3af; }
.cookie-btn:hover { color: var(--color-brand); border-color: var(--color-brand); }

/* Details/FAQ */
details { background: white; border: 1px solid #e5e7eb; border-radius: 0.5rem; padding: 1.5rem; margin-bottom: 1rem; }
summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: "▼"; color: var(--color-brand); font-size: 0.8rem; transition: 0.3s; }
details[open] summary::after { transform: rotate(180deg); }

/* Media Queries */
@media (min-width: 768px) {
    /* MASSIV PADDING FÖR DESKTOP - GARANTERAR ATT DET INTE KLIPPS */
    header { padding-top: 18rem; padding-bottom: 6rem; }
    
    h1 { font-size: 4.5rem; }
    .hero-buttons { flex-direction: row; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { flex-direction: row; justify-content: space-between; text-align: left; }
    .hidden-mobile { display: flex; }
    .service-actions { flex-direction: row; }
}
