/* ==========================================================================
   1. GLOBAL RESET & BASE
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* =========================================================================
   GLOBAL HEADER & DESIGN (Matchar image_c07a29.png)
   ========================================================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5f5; /* Ljusgrå bakgrund enligt skiss */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 9999;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    height: 35px; /* Justera efter din loggas proportioner */
    display: block;
}

/* Skjut ner resten av innehållet på sidan så att det inte hamnar under menyn */
body {
    padding-top: 70px; 
}

/* =========================================================================
   DESKTOP NAV (Döljs på mindre skärmar)
   ========================================================================= */
.desktop-nav {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #6a1b9a; /* Din lila accentfärg från loggans diamant */
}

/* Dropdown Logik på hover */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 8px 20px;
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

/* Hamburgarknapp (Gömd som standard) */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333;
}

/* =========================================================================
   MOBILMENY SLIDE-OUT (Matchar image_c07668.png och image_c07398.png)
   ========================================================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* När menyn är öppen via JS */
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: -300px; /* Börjar utanför skärmen */
    width: 280px;
    height: 100%;
    background-color: #2c2c2c; /* Mörkgrå/Svart bakgrund enligt image_c07398.png */
    padding: 30px 0;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.open .mobile-menu-inner {
    right: 0; /* Glider in */
}

/* Stängkryss */
.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-logo {
    text-align: center;
    margin: 30px 0;
    padding: 0 20px;
}

.mobile-menu-logo img {
    height: 35px;
    /*filter: brightness(0) invert(1);  Gör loggan vit om den är mörk */
}

/* Mobil-länkar */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #444;
}

.mobile-nav-links li a {
    display: block;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid #444;
    transition: background 0.2s;
}

.mobile-nav-links li a:hover {
    background-color: #383838;
}

.mobile-lang-separator {
    height: 20px;
    background-color: #222;
}

/* Styling för de små flaggorna i menyn */
.menu-flag {
    width: 20px;         /* Sätter en perfekt, diskret bredd */
    height: auto;        /* Behåller proportionerna på flaggan */
    vertical-align: middle; /* Centrerar flaggan i höjdled med texten */
    margin-right: 8px;   /* Ger ett litet snyggt mellanrum till texten */
    border-radius: 2px;  /* Valfritt: ger flaggorna lite mjukt rundade hörn */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* Gör att t.ex. den finska flaggan syns mot ljus bakgrund */
}

/* Fixar placeringen för huvudknappen i datormenyn */
.lang-toggle-link {
    display: inline-flex;
    align-items: center;
}

/*---------contact form svarmeddelande----------*/

/* Kontaktformulär Statusmeddelanden */
.form-status-alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.form-status-alert.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-status-alert.alert-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}







/* =========================================================================
   RESPONSIV LOGIK (Brytpunkt för mobil/padda)
   ========================================================================= */
@media (max-width: 768px) {
    .desktop-nav {
        display: none; /* Göm datormenyn */
    }
    
    .hamburger-btn {
        display: flex; /* Visa hamburgaren */
    }
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px; /* Ger bra luft till skärmkanterna på mobilen */
}

.main-seo-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* Bassnygg padding för alla huvudsakliga sektioner */
.services-intro-section,
.experience-section {
    padding: 60px 0;
    background-color: #ffffff; /* Standardbakgrund: Vit */
}

/* Den varvade bakgrundsklassen (Zebra) */
.bg-light {
    background-color: #f9f9f9; /* Ljusgrå nyans som bryter av snyggt */
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

/* Säkerställ att rubrikblocket ser likadant ut överallt */
.section-title-block {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-block h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.horizontal-line {
    width: 60px;
    height: 3px;
    background-color: #000000; /* Byt till din accentfärg om du har en */
    margin: 0 auto;
}





/* Gemensam stil för de snygga dubbellinjerna under rubriker (Sektion 3, 4, 5) */
.section-title {
    font-size: 1.8rem;
    color: #333333;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb; /* Den klassiska WP-dubbellinjen */
}

/* Tillfällig fix för enkla linjer (Startsidan) */
.section-title-block {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-block h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.horizontal-line {
    width: 60px;
    height: 3px;
    background-color: #333;
    margin: 0 auto;
}

/* ==========================================================================
   2. HERO SEKTIONEN (Standardmobil - ändrad från grid till flex för mobilen)
   ========================================================================== */
.hero-section {
    background-color: #f5f5f5;
    padding: 50px 0 0 0; /* Ingen padding i botten på mobilen så bilden ligger mot nästa block */
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column; /* Bilden hamnar under texten på mobilen */
    align-items: center;
}

.hero-text-side {
    text-align: center;
}

.hero-greeting {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-title {
    font-size: 2.6rem;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-bottom: 40px; /* Skapar luft ner till bilden på mobilen */
}

.btn-hero:hover {
    background-color: #111;
}

.hero-image-side {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-image-side img {
    max-width: 320px; /* Blender-bilden/Logon hålls kompakt på mobilen */
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. STARTSIDAN: SERVICE CARDS & ERFARENHET
   ========================================================================== */
.service-card {
    display: block;
    text-decoration: none;
    color: #333;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card h3 {
    margin: 0 0 10px 0;
    color: #111;
    font-size: 1.5rem;
}

.service-card p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #ddd;
}

.service-card .btn-link {
    display: inline-block;
    color: #0073aa;
    font-weight: bold;
}

.experience-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.experience-card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exp-meta h4 {
    font-size: 1.2rem;
    color: #111;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.exp-date {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

.exp-content h3 {
    font-size: 1.3rem;
    color: #0073aa;
    margin: 0 0 10px 0;
}

.exp-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   4. UNDERSIDOR: PRICING SECTION (Sektion 2)
   ========================================================================== */
.pricing-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Prisboxen till vänster (det vita kortet) */
.price-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 40px 25px;
    text-align: center;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.01);
}

.price-box h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.price-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background-color: #ccc;
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #777777;
    font-size: 0.95rem;
}

/* Rubrik och beskrivning i pricing */
.pricing-info {
    text-align: center;
    padding: 0 10px;
}

.pricing-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333333;
    font-weight: 800;
}

/* ==========================================================================
   5. UNDERSIDOR: BRÖDTEXT & SPOTIFY (Sektion 3 & 4)
   ========================================================================== */
.main-text-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.text-container {
    max-width: 740px;
}

.text-container p {
    margin-bottom: 20px;
    color: #666666;
    text-align: left; /* Läsvänlig vänsterjusterad brödtext på mobil */
}

.text-container strong {
    color: #111111;
}

.text-container a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.examples-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.spotify-wrapper {
    max-width: 660px;
    margin: 0 auto;
    width: 100%;
}

.spotify-wrapper iframe {
    width: 100%;
    height: 380px;
    border-radius: 12px;
}

/* ==========================================================================
   6. KONTAKTSEKTION & FORMULÄR (Sektion 5)
   ========================================================================== */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-direction: column; /* Staplas på mobilen */
    gap: 50px;
}

/* Vänstra info-delen */
.section-title-block.left-aligned {
    text-align: center; /* Centrerat på mobil för renare look */
    margin-bottom: 30px;
}

.section-title-block.left-aligned .horizontal-line {
    margin: 0 auto;
}

.contact-sub {
    margin-top: 15px;
    color: #666;
    font-size: 1.1rem;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Raderna i kontaktlistan */
.contact-details-list li {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrerat på mobil */
    text-align: center;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-details-list a, 
.address-text {
    font-size: 1.1rem;
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.contact-details-list a:hover {
    color: #0073aa;
}

/* Formuläret */
.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fbfbfb;
    transition: border-color 0.2s, background-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #333;
    background-color: #fff;
    outline: none;
}

.btn-submit {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    align-self: center; /* Centrerad knapp på mobilen */
    transition: background-color 0.2s;
    width: auto;
}

.btn-submit:hover {
    background-color: #111;
}

/* ==========================================================================
   7. FOOTER SEKTIONEN
   ========================================================================== */
.site-footer {
    background-color: #111;
    color: #fff;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #888;
}

.social-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.social-links-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.social-links-list a:hover {
    color: #0073aa;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links-list {
        justify-content: center;
    }
}

/* ==========================================================================
   8. DESKTOP-UPPDATERING (Gäller när skärmbredden är över 768px)
   ========================================================================== */
@media (min-width: 768px) {
    
    /* Hero går till tvåspalt */
    .hero-section {
        padding: 80px 0;
        text-align: left;
    }
    
    .hero-container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }
    
    .hero-text-side {
        text-align: left;
    }
    
    .hero-lead {
        margin-left: 0;
        margin-right: 0;
    }
    
    .btn-hero {
        margin-bottom: 0;
    }
    
    .hero-image-side img {
        max-width: 100%;
    }

    /* Pricing går till tvåspalt */
    .pricing-container {
        flex-direction: row;
        /*align-items: center;*/
        gap: 60px;
    }
    
    .price-box {
        margin: 0;
        flex: 1;
    }
    
    .pricing-info {
        text-align: left;
        flex: 1.5;
    }

    /* Kontaktsektionen går till tvåspalt */
    .contact-container {
        flex-direction: row;
        align-items: start;
        gap: 60px;
    }
    
    .contact-container > * {
        flex: 1;
    }
    
    .section-title-block.left-aligned {
        text-align: left;
    }
    
    .section-title-block.left-aligned .horizontal-line {
        margin: 0;
    }
    
    .contact-details-list li {
        align-items: flex-start;
        text-align: left;
    }
    
    .btn-submit {
        align-self: flex-start; /* Vänsterjusterad knapp på desktop */
    }
}




/*------------------prislista bold först-------------------*/

    .price-list li:first-child {
    font-weight: bold;
}
