/* Studio 19 - Apple-inspired Design - Updated */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: #1d1d1f;
    background: #fff;
}

/* HEADER - Apple Style med centrerad meny */
header {
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

nav {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1d1d1f;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

/* HERO SECTION - Apple Style with Full Background Image */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #a8b5ff 50%, #c4d0ff 100%);
    background-image: url('../images/hero-studio.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #d2d2d7;
}

.hero-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 120px 22px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.hero-text {
    z-index: 2;
    text-align: center;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}

.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-graphic {
    /* Tom - endast för layout */
}

/* MÖHIPPA SECTION - Full background image */
/* MÖHIPPA SECTION - Full background image */
.mohippa-section {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa8cc 50%, #ffccdd 100%);
    background-image: url('../images/mohippa-group.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #d2d2d7;
}

.mohippa-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 100px 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

.mohippa-text {
    z-index: 2;
}

.mohippa-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.mohippa-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mohippa-features {
    list-style: none;
    margin-bottom: 40px;
}

.mohippa-features li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.mohippa-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #fff;
}

.mohippa-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.mohippa-cta:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.mohippa-graphic {
    /* Tom - endast för layout */
}

/* FAQ MÖHIPPA SECTION - Updated to pink gradient */
.faq-mohippa {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 80px 0;
    border-bottom: 1px solid #d2d2d7;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 22px;
}

.faq-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 48px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    user-select: none;
}

.faq-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: #1d1d1f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    padding: 0 24px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1d1d1f;
    margin: 0;
}

/* OTHER RECORDINGS SECTION - Full background image */
.other-recordings {
    background: linear-gradient(135deg, #00d4ff 0%, #5b9bd5 50%, #a8c8ff 100%);
    background-image: url('../images/mixing-console.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #d2d2d7;
}

.other-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 100px 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.other-text {
    z-index: 2;
}

.other-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.other-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.other-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

.other-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
}

.other-feature-icon {
    font-size: 24px;
    color: #fff;
    width: 32px;
    flex-shrink: 0;
}

.other-feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.other-feature-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.other-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.other-cta:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.other-graphic {
    /* Tom - endast för layout */
}

/* EXTENDED ABOUT SECTION - Updated with Om Studio 19 content */
.extended-about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 100px 0;
    border-bottom: 1px solid #d2d2d7;
}

.extended-about-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
}

.extended-about-content {
    text-align: center;
}

.extended-about-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 64px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.extended-about-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
}

.about-block {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.about-block p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

/* CONTACT SECTION - Apple Dark Style */
.contact {
    background: #000;
    color: #f5f5f7;
    border-bottom: 1px solid #d2d2d7;
}

.contact-content {
    text-align: center;
    max-width: 734px;
    margin: 0 auto;
    padding: 100px 22px;
}

.contact-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.contact-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
    color: #a1a1a6;
    margin-bottom: 48px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.04);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 32px;
    color: #0071e3;
    margin-bottom: 16px;
}

.contact-method h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f5f5f7;
    line-height: 1.3;
}

.contact-method a {
    color: #0071e3;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #0077ed;
}

/* CONTACT FORM SECTION */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 100px 0;
    border-bottom: 1px solid #d2d2d7;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 22px;
    text-align: center;
}

.contact-form-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.contact-form-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #86868b;
    margin-bottom: 48px;
}

.contact-form {
    text-align: left;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #1d1d1f;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #86868b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1), 0 4px 20px rgba(0,0,0,0.1);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.2);
}

.form-submit:hover {
    background: linear-gradient(135deg, #0077ed 0%, #0066cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 113, 227, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff453a;
    box-shadow: 0 0 0 3px rgba(255, 69, 58, 0.1);
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #32d74b;
    box-shadow: 0 0 0 3px rgba(50, 215, 75, 0.1);
}

/* Math Captcha Button Styles */
#mathAnswers {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

#mathAnswers button {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #d2d2d7;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #1d1d1f;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#mathAnswers button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #0071e3;
}

#mathAnswers button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

/* Responsive math buttons */
@media (max-width: 480px) {
    #mathAnswers {
        flex-direction: column;
        gap: 8px;
    }
}
.form-message {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(50, 215, 75, 0.1);
    color: #1d4d2b;
    border: 1px solid rgba(50, 215, 75, 0.3);
}

.form-message.error {
    background: rgba(255, 69, 58, 0.1);
    color: #d21404;
    border: 1px solid rgba(255, 69, 58, 0.3);
}

/* MAP SECTION - Google Maps integration */
.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    border-top: 1px solid #d2d2d7;
}

.map-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 22px;
    text-align: center;
}

.map-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.map-address {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #86868b;
    margin-bottom: 32px;
}

.map-embed {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
}

.footer-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 22px;
    text-align: center;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.33337;
    color: #86868b;
    margin-bottom: 8px;
}

.footer-text a {
    color: #007aff;
    text-decoration: none;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1068px) {
    .hero-container,
    .mohippa-content,
    .other-content {
        max-width: 834px;
    }
}

@media (max-width: 834px) {
    .nav-links {
        gap: 24px;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-container,
    .mohippa-content,
    .other-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-headline {
        font-size: 48px;
    }
    
    .hero-subheadline {
        font-size: 20px;
    }
    
    .mohippa-headline,
    .other-headline,
    .contact-headline {
        font-size: 36px;
    }
    
    .hero-container,
    .mohippa-content,
    .other-content {
        padding: 80px 22px;
    }

    .faq-headline {
        font-size: 32px;
    }

    .extended-about-headline {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .about-block {
        padding: 32px;
    }

    .about-block h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    nav {
        gap: 20px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .hero-headline,
    .mohippa-headline,
    .other-headline,
    .contact-headline {
        font-size: 32px;
    }
    
    .hero-subheadline,
    .mohippa-subheadline,
    .other-subheadline,
    .contact-subheadline {
        font-size: 18px;
    }

    .hero {
        height: 400px;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .map-headline {
        font-size: 28px;
    }

    .map-embed {
        height: 300px;
    }

    .faq-headline {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .extended-about-headline {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .about-block {
        padding: 24px;
    }

    .about-block h3 {
        font-size: 22px;
    }

    .about-block p {
        font-size: 16px;
    }
}

/* Responsive form design */
@media (max-width: 834px) {
    .contact-form-headline {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 36px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 28px;
        border-radius: 16px;
    }
    
    .contact-form-headline {
        font-size: 32px;
    }
    
    .contact-form-subheadline {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
    }
    
    .form-submit {
        padding: 16px 24px;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }