/* ===== SILENT SHOUT STYLES ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2F3A0E;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social Header */
.social-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(47, 58, 14, 0.1);
}

.social-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

/* Right side navigation group */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 1.95rem;
    text-align: right;
}

.nav-link {
    color: #33312D;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #8b592d;
    border-bottom-color: #8b592d;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    margin-left: 1rem; /* Lägg till luft mellan hamburgarmenyn och andra element */
}

#hamburgerButton {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    z-index: 1001;
    position: relative;
    transition: none;
}

#hamburgerButton:hover {
    background-color: transparent;
}

.hamburger-line {
    width: 100%;
    height: 4px;
    background-color: #2f3a0e;
    transition: all 0.3s ease;
    display: block;
    border-radius: 1px;
    transform-origin: center;
}

#hamburgerButton.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#hamburgerButton.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

#hamburgerButton.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Added animation for mobile nav links */
.mobile-nav.active .mobile-nav-link {
    animation: fadeInDown 0.4s ease forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav.active .mobile-nav-link:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav.active .mobile-nav-link:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.mobile-nav-link {
    font-size: 2rem;
    color: #33312D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

.mobile-nav-link:hover {
    color: #8b592d;
    border-bottom-color: #8b592d;
}

body.menu-open {
    overflow: hidden;
}

/* Location Icon */
.location-icon {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.location-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.location-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 28px;
    height: 28px;
    color: #2f3a0e; 
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    color: #B9823D; /* Brons hover-färg */
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(rgba(47, 58, 14, 0.6), rgba(47, 58, 14, 0.6)), url('studio_entre.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 58, 14, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-text {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-quote {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 3rem;
    font-style: italic;
    color: #fff;
}

.studio-name {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    color: #fff;
    margin: 2rem 0;
}

.studio-tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.location {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-welcome {
    display: block;
    margin: 0 auto 0.5rem;
    max-width: 350px;
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #fff;
}

/* Hero CTA Button - vit outline för kontrast mot bakgrunden */
.hero .cta-button {
    display: inline-block !important;
    padding: 0.6rem 1.2rem !important;
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    letter-spacing: 1px !important;
    border-radius: 0px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.hero .cta-button:hover {
    background: #B9823D !important;
    color: #fff !important;
    border-color: #B9823D !important;
    transform: translateY(-2px) !important;
}

/* Hero Section Logo */
.hero .studio-logo {
    display: block;
    margin: 0 auto 0.5rem;
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* Gör logotypen vit */
}

/* Eller alternativt kan vi använda: */
.hero .studio-logo {
    display: block;
    margin: 0 auto 0.5rem;
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: invert(1) brightness(100%); /* Inverterar färgerna för att göra den vit */
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 0.5rem; /* Minska gap mellan knapparna */
    margin-left: auto;
}

/* Header CTA Button */
.cta-header-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: #2F3A0E;
    border: 1px solid #2F3A0E;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 0px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.cta-header-button:hover {
    background: #2F3A0E;
    color: #fff;
    border-color: #2F3A0E;
}

.cta-header-button.active {
    background: #2F3A0E;
    color: #fff;
    border-color: #2F3A0E;
}

/* Unified button styles */
.cta-button,
.cta-header-button,
.toggle-btn,
.submit-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    border: 1px solid #2F3A0E;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

/* Default state - transparent background */
.cta-button,
.cta-header-button,
.toggle-btn {
    background: transparent;
    color: #2F3A0E;
}

/* Active/filled state */
.cta-header-button.active,
.toggle-btn.active,
.submit-button {
    background: #2F3A0E;
    color: #fff;
    border-color: #2F3A0E;
}

/* Hover effects */
.cta-button:hover,
.cta-header-button:hover,
.toggle-btn:hover {
    background: #B9823D !important;
    color: #fff !important;
    border-color: #B9823D !important;
    transform: translateY(-2px);
    box-shadow: none; /* Ta bort glow-effekten */
}

.submit-button:hover {
    background: #B9823D;
    border-color: #B9823D;
    transform: translateY(-2px);
    box-shadow: none; /* Ta bort glow-effekten även från submit-button */
}

/* Remove focus outline for cleaner appearance */
.cta-button:focus,
.cta-header-button:focus,
.toggle-btn:focus,
.submit-button:focus {
    outline: none;
}

/* Large Typography Sections */
.large-text-section {
    padding: 1.5rem 0 0.5rem 0; /* Minska ytterligare för mobil */
    text-align: center;
    position: relative;
    overflow: hidden; /* Förhindra att element går utanför sektionen */
    width: 100%;
    box-sizing: border-box;
    scroll-margin-top: 100px; /* Justera för header höjd vid anchor-länkar */
}

/* Större padding på desktop */
@media (min-width: 768px) {
    .large-text-section {
        padding: 3rem 0 1rem 0; /* Minska från 4rem */
    }
}

/* Add spacing between paragraphs in large text sections */
.large-text-section .story-content .story-text {
    margin-bottom: 1rem; /* Minska ytterligare från 1.5rem */
}

.large-text-section .story-content .story-text:last-child {
    margin-bottom: 0;
}

/* Responsiv spacing för story-text */
@media (min-width: 768px) {
    .large-text-section .story-content .story-text {
        margin-bottom: 1.5rem; /* Minska från 2rem */
    }
}

.large-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: capitalize;
    line-height: 0.9;
    color: #2F3A0E;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.large-text.split {
    display: block;
}

.large-text.split span {
    display: block;
    margin-left: clamp(2rem, 10vw, 8rem);
}

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center; /* Centrera på mobil */
    gap: 1.5rem; /* Minska ytterligare från 2rem */
    margin: 1.5rem auto; /* Minska margin från 2rem */
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px; /* Lägg till padding */
    box-sizing: border-box;
}

/* Desktop image gallery spacing */
@media (min-width: 768px) {
    .image-gallery {
        justify-content: center; 
        gap: 5.5rem; 
        margin: 2.5rem auto; 
        padding: 0; 
    }
}

.gallery-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 0; /* Helt fyrkantiga bilder */
    flex-shrink: 0;
    /* Ta bort transition och hover-effekter */
}

/* Ta bort hover-effekt för gallery-image */

@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .gallery-image {
        width: 280px;
        height: 280px;
    }
}

/* CTA Container for gallery */
.cta-container {
    text-align: center;
    margin-top: 1rem; /* Minska ytterligare från 1.5rem */
    margin-bottom: 1rem; /* Minska ytterligare från 1.5rem */
}

/* Desktop CTA spacing */
@media (min-width: 768px) {
    .cta-container {
        margin-top: 1.5rem; /* Minska från 2rem */
        margin-bottom: 1.5rem; /* Minska från 2rem */
    }
}

/* Story Section */
.story-section {
    padding: 3rem 0; /* Minska för mobil */
    background: #ffffff;
}

/* Större padding på desktop */
@media (min-width: 768px) {
    .story-section {
        padding: 6rem 0;
    }
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Förhindra att innehållet går utanför */
}

/* Story Quote Header */
.story-quote-header {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: #2F3A0E;
    margin-bottom: 3rem;
    line-height: 1.4;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Content with Image */
.story-content-with-image {
    display: flex;
    gap: 1rem; /* Minska ytterligare från 1.5rem */
    align-items: flex-start;
    margin: 1rem 0; /* Minska från 2rem */
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; /* Lägg till padding för att säkerställa att innehållet inte går utanför */
    box-sizing: border-box;
}

/* Större mellanrum på desktop */
@media (min-width: 768px) {
    .story-content-with-image {
        gap: 2rem; /* Minska från 2.5rem */
        margin: 2rem 0; /* Minska från 3rem */
        padding: 0; /* Ta bort padding på desktop */
    }
}

.story-image {
    flex-shrink: 0;
    flex-basis: 380px;
}

.kjell-image {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.story-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Minska ytterligare från 1rem */
    width: 100%;
}

/* Welcome intro styling */
.welcome-intro {
    margin-bottom: 1rem; /* Minska från 1.5rem */
}

/* Större gap på desktop */
@media (min-width: 768px) {
    .story-text-content {
        gap: 1.25rem; /* Minska från 1.5rem */
    }
    
    .welcome-intro {
        margin-bottom: 2rem; /* Minska från 2.5rem */
    }
}

/* Story Content with Image - Reverse (image on right) */
.story-content-with-image.reverse {
    flex-direction: row-reverse;
}

.story-content-with-image.reverse .story-text-content {
    flex: 1;
    width: 100%;
    max-width: none;
}

.story-content-with-image.reverse .story-text {
    width: 100%;
    max-width: none;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2F3A0E;
    font-weight: 300;
    margin-bottom: 0;
    width: 100%;
    max-width: none;
    word-wrap: break-word; /* Förhindra att text går utanför */
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Mindre fontstorlek på mobil för bättre anpassning */
@media (max-width: 768px) {
    .story-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

.story-highlight {
    font-size: 1.1rem;
    font-style: italic;
    color: #2F3A0E;
    margin: 0;
}

/* Story Highlight Section - Full Width */
.story-highlight-section {
    width: 100%;
    margin-top: 3rem;
    text-align: center;
}

.story-highlight-section .story-highlight {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

/* Mobile responsiveness for story section */
@media (max-width: 768px) {
    .story-quote-header {
        text-align: center;
        font-weight: 500;
    }
    
    .story-content-with-image {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem; /* Minska ytterligare från 1.5rem */
        margin: 1rem 0; /* Minska margin också */
        padding: 0 20px; /* Säkerställ padding på mobil */
    }
    
    /* Override reverse layout on mobile - all should be same layout */
    .story-content-with-image.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem; /* Samma här */
        margin: 1rem 0;
        padding: 0 20px;
    }
    
    .story-image {
        flex-basis: auto;
    }
    
    .kjell-image {
        width: 300px;
        height: 300px;
    }
    
    .story-text-content {
        align-items: center;
        flex: 1;
        text-align: center;
        width: 100%;
        max-width: none;
    }
    
    .story-text {
        text-align: center;
        width: 100%;
        max-width: none;
    }
    
    /* Ensure reverse layout follows same rules on mobile */
    .story-content-with-image.reverse .story-text-content {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: none;
    }
    
    .story-content-with-image.reverse .story-text {
        text-align: center;
        width: 100%;
        max-width: none;
    }
}

/* Booking Section with Artistic Touch */
.booking-section {
    padding: 2rem 0; /* Ännu mindre mellanrum */
    background: #fff;
    position: relative;
}

.booking-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem; /* Lägg till mindre top margin */
    color: #2F3A0E;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 0;
    position: relative;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2F3A0E;
    margin-bottom: 1.5rem;
}

.form-intro h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2F3A0E;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.form-intro p {
    font-size: 1rem;
    color: #2F3A0E;
    line-height: 1.6;
    font-weight: 300;
}

iframe {
    width: 100%;
    height: 800px;
    border: none;
    background: #fff;
}

/* Custom Form Styles */
.custom-form {
    max-width: 100%;
    display: flex; /* Ändra till flex för konsekvent layout */
    flex-direction: column; /* Vertikal layout */
    gap: 1.5rem; /* Mellanrum mellan rader */
    align-items: stretch; /* Sträck ut elementen */
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column; /* Vertikal layout för alla skärmar */
    gap: 1rem;
}

.form-group {
    margin-bottom: 0;
    text-align: left;
    width: 100%;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: none; /* Dölj label för att endast använda placeholders */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-width: 0;
    padding: 1rem; /* Öka padding för bättre placering */
    border: 1px solid #2F3A0E;
    border-radius: 0px;
    background: #ffffff; /* Ljus bakgrund för kontrast */
    font-family: inherit;
    font-size: 1rem; /* Justera fontstorlek */
    color: #2F3A0E;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #2F3A0E; /* Matcha textfärg med resten av sidan */
    font-size: 1rem; /* Justera fontstorlek */
    font-weight: 400; /* Normal vikt */
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.2rem;
    accent-color: #B9823D; /* Ljus orange färg för iklickad checkbox */
}

.checkbox-group label {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #2F3A0E;
}

.checkbox-group a {
    color: #77772F; /* Grön färg */
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #974C09; /* Mörkare grön vid hover */
}

.submit-button {
    width: auto;
    padding: 0.6rem 1.2rem;
    background: #2F3A0E;
    color: #fff;
    border: 1px solid #2F3A0E;
    border-radius: 0px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: end;
}

.submit-button:hover {
    background: #B9823D;
    border-color: #B9823D;
}

/* Form intro styling */
.form-intro {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.form-intro h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2F3A0E;
    margin-bottom: 1rem;
    text-transform: none;
}

.form-intro p {
    font-size: 1rem;
    color: #2F3A0E;
    line-height: 1.6;
    font-weight: 400;
}

/* Profile/Contact Row */
.profile-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.profile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 200px;
    max-width: 260px;
}

.profile-contact-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2F3A0E;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-contact-info p {
    font-size: 1rem;
    color: #2F3A0E;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: none; /* Remove underline from paragraph */
}

/* Unified styling for ALL profile contact links - highest specificity */
.profile-contact-info .contact-info-section p a,
.profile-contact-info a {
    color: #77772F !important; /* Ljusgrön färg för alla länkar */
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

.profile-contact-info .contact-info-section p a:hover,
.profile-contact-info a:hover {
    color: #B9823D !important; /* Ljusare orange vid hover för alla länkar */
    text-decoration: underline !important;
}

.opening-hours h4 {
    margin-bottom: 0.5rem;
}

.opening-hours p {
    font-size: 1rem;
    color: #974C09;
    margin-bottom: 0.2rem;
    font-weight: 400;
    text-decoration: none;
}

@media (max-width: 700px) {
    .profile-contact-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .profile-contact-info {
        align-items: center;
        max-width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .custom-form {
        grid-template-columns: 1fr; /* Ändra till en kolumn för mindre skärmar */
        gap: 1.5rem;
    }
    .form-fields {
        gap: 1rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem 1rem;
    }
    
    iframe {
        height: 600px;
    }
}

/* Form Toggle */
.form-toggle {
    display: flex;
    justify-content: center;
    gap: 2rem; /* Öka mellanrum mellan knappar */
    margin: 4rem 0 3rem 0;
    scroll-margin-top: 120px; /* Justera för header höjd */
}

/* Google Forms Container */
.google-form-container {
    width: 100%;
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 0;
    background: #8B592D;
    color: #fff;
    text-align: center;
}

.philosophy-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    font-style: italic;
    color: #2F3A0E;
}

h3.philosophy-text {
    color: #fff;
}

/* Client Stories */
.stories-section {
    padding: 4rem 0 2rem 0; /* Drastiskt minskad top padding från 8rem till 4rem */
    background: #E0D2BC;
}

.stories-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 2rem; /* Minskad från 4rem till 2rem */
    color: #2F3A0E;
}

/* Reviews Slider */
.reviews-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 180px; /* Slightly reduced min-height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 1000%; /* 10 slides = 1000% */
    flex-grow: 1;
}

.story-card {
    width: 10%; /* Each card takes 100%/10 cards = 10% */
    flex-shrink: 0;
    text-align: center;
    padding: 0.5rem 2rem; /* Further reduced top/bottom padding */
    box-sizing: border-box; /* Ensure padding doesn't affect width calculation */
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: center;
}

.story-card p {
    font-family: 'Reenie Beanie', cursive;
    font-size: 1.7rem;
    line-height: 1.2;
    color: #33312D;
    font-weight: 500;
    margin: 0; /* Remove default margins */
}

.story-card .client-name {
    font-size: 1rem;
    font-style: italic;
    color: #2F3A0E;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem; /* Reduced margin */
    flex-shrink: 0; /* Prevent dots from shrinking */
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(47, 58, 14, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #2F3A0E;
}

.dot:hover {
    background: #B9823D;
}

.review-heart {
    text-align: center;
    font-size: 1.5rem;
    margin: 1rem 0 0 0; /* Reduced bottom margin */
}

/* Story specific styles */
.story-pride-flag {
    text-align: left !important;
    margin: 0 0 1rem 0;
}

.story-intro-header {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #2F3A0E;
    width: 100%;
    max-width: none;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: #2F3A0E;
    color: #fff;
    text-align: center;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 2;
    font-weight: 300;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: #fff;
}

/* Loading Animation */
.form-loading {
    text-align: center;
    padding: 3rem;
    color: #974C09;
    font-size: 1rem;
}

.spinner {
    border: 2px solid #BDA581;
    border-top: 2px solid #2F3A0E;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .large-text-section {
        padding: 4rem 0;
    }
    
    .booking-section, .stories-section {
        padding: 4rem 0;
    }
    
    .form-container {
        padding: 2rem 1rem;
    }
    
    iframe {
        height: 600px;
    }
    
    .story-section {
        padding: 4rem 0;
    }
    
    .social-header {
        padding: 0.75rem 0;
    }
    
    .social-header .container {
        gap: 0.5rem;
    }
    
    .cta-buttons {
        gap: 0.25rem;
    }
    
    /* Mobile menu styles */
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 4; /* Längst till höger */
    }
    
    .location-icon {
        order: 2; /* Först av de synliga elementen */
    }
    
    .cta-header-button {
        order: 3; /* Efter location icon */
    }
    
    .cta-buttons {
        align-items: center;
    }
    
    .cta-header-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .hero {
        padding-top: 70px;
        padding-bottom: 2rem;
    }
    
    .animated-gif {
        width: 150px;
        height: 150px;
        margin: 1.5rem auto;
    }
    
    .animated-drawing {
        width: 120px;
        height: 120px;
        margin: 1.5rem auto;
    }
}

/* Artistic Elements */
.hero::before,
.hero::after {
    content: none; /* Ta bort pseudo-elementen som skapar kvadraten */
}

/* Animated GIF */
.animated-gif {
    display: block;
    width: 250px;
    height: 250px;
    margin: 0 auto; /* Ingen top/bottom margin alls */    
    opacity: 0.3;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: #FFF8EB;
    scroll-margin-top: 100px; /* Justera för header höjd vid anchor-länkar */
}

.pricing-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 2rem;
    color: #8B592D;
}

.pricing-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #33312D;
}

.pricing-subtitle {
    font-size: 0.95rem !important;
    font-style: italic;
    margin-top: 1rem;
}

.pricing-cta-container {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-toggle-btn {
    background: transparent;
    color: #8B592D;
    border: 1px solid #8B592D;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

.pricing-toggle-btn:hover {
    background: #B9823D !important;
    color: #fff !important;
    border-color: #B9823D !important;
    transform: translateY(-2px);
    box-shadow: none;
}

.toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.pricing-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Collapse button at bottom */
.pricing-content .pricing-cta-container {
    text-align: center;
    margin-top: 2rem;
}

.pricing-content .pricing-toggle-btn {
    padding: 0.5rem;
    min-width: 40px;
    justify-content: center;
}

.pricing-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease;
    opacity: 0;
}

.pricing-content.active {
    max-height: 2000px;
    opacity: 1;
    margin-top: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto 2rem auto;
    grid-auto-rows: min-content;
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-category {
    background: #ffffff;
    padding: 2rem;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
}

.pricing-category h3 {
    color: #2F3A0E;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.price-item:last-child:not(.motivavgift-item) {
    border-bottom: none;
}

/* Extra spacing for motivavgift */
.motivavgift-item {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-bottom: 1px solid #e0e0e0 !important;
}

.price-name {
    color: #33312D;
    font-weight: 500;
}

.price-value {
    color: #2F3A0E;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-note {
    background: #E0D2BC;
    padding: 1.5rem;
    margin-top: 2rem;
}

.pricing-note p {
    margin-bottom: 0.75rem;
    color: #33312D;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-explanation {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.pricing-explanation p {
    margin-bottom: 0.75rem;
    color: #33312D;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-explanation p:last-child {
    margin-bottom: 0;
}

.pricing-note h4 {
    color: #8B592D;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-note ul {
    margin: 0;
    padding-left: 1.5rem;
}

.pricing-note li {
    margin-bottom: 0.75rem;
    color: #33312D;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-note li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}.animated-gif img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.2);
}

/* Animated Line Drawing SVG */
.animated-drawing {
    display: block;
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    opacity: 0.2;
}

.animated-drawing svg {
    width: 100%;
    height: 100%;
}

.animated-drawing path {
    fill: none;
    stroke: #2F3A0E;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 4s ease-in-out infinite;
}

.animated-drawing path:nth-child(2) {
    animation-delay: 0.5s;
}

.animated-drawing path:nth-child(3) {
    animation-delay: 1s;
}

.animated-drawing path:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: -1000;
        opacity: 0;
    }
}

/* Smooth animations */
.large-text, .studio-name {
    animation: fadeInUp 1s ease-out;
}

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Profile Image Styling */
.profile-image-wrapper {
    position: relative; /* För att placera overlay */
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(47, 58, 14, 0.10); /* Move shadow here */
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Remove shadow from here */
}

.profile-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 58, 14, 0.5); /* Grön overlay med transparens */
    border-radius: 50%;
    pointer-events: none; /* Gör overlayen klickbar */
    mix-blend-mode: multiply; /* Lägg till multiply filter */
}

/* Footer */
.social-footer {
    background: #2F3A0E; /* Mörkgrön bakgrund */
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtil vit linje */
    color: #fff; /* Vit text */
}

.social-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-footer .social-icon {
    width: 24px;
    height: 24px;
    color: #fff; /* Vit ikonfärg */
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-footer .social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #B9823D; /* Brons hover-färg */
}

.studio-logo {
    display: block;
    margin: 0 auto 0.5rem; /* Minska avståndet för att få tagline närmare logotypen */
    max-width: 350px; /* Återställ till större storlek */
    height: auto;
}


.hero-welcome {
    display: block;
    margin: 0 auto 0.5rem;
    max-width: 350px; /* Samma bredd som studio-logo */
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #ffffff;
}

.social-footer .studio-logo {
    max-width: 150px; /* Behåll liten storlek för logotypen i footern */
    margin: 0 auto 1.5rem; /* Minska avståndet */
}


/* Aftercare Content */
.aftercare-content {
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
}

.aftercare-content .philosophy-text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: none;
    margin: 1.5rem 0;
    font-weight: 400;
    font-style: normal;
    color: #33312D;
    text-align: center;
}

.aftercare-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.aftercare-list li {
    margin-bottom: 1.5rem; /* Mer luft mellan punkterna */
    line-height: 1.6;
    font-size: 1rem;
    color: #33312D;
}

.aftercare-list li:last-child {
    margin-bottom: 0; /* Ta bort extra margin från sista punkten */
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: #2F3A0E;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #B9823D;
    color: #fff;
    transform: translateY(-2px);
}

/* Light version for dark backgrounds */
.scroll-to-top.light {
    background: #fff;
    color: #2F3A0E;
}

.scroll-to-top.light:hover {
    background: #B9823D;
    color: #fff;
}

.scroll-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.2s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-1px);
}

/* Mobile responsiveness for scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .scroll-to-top svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    /* Begränsa bredden på Instagram-texten för att matcha övrig contact-info */
    .contact-info p {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
    }
}

/* SRT Cards Section */
.srt-cards-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1000px;
    flex-wrap: wrap;
}

.srt-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 58, 14, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.srt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 14px rgba(47, 58, 14, 0.15);
    border-color: rgba(255, 255, 255, 0.616);
}

.srt-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
    height: 100%;
}

.srt-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.srt-card:hover .srt-image {
    opacity: 1;
}

.srt-card-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.srt-card-content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2F3A0E;
    letter-spacing: 0.5px;
}

.srt-arrow {
    font-size: 1.5rem;
    color: #8B592D;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.srt-card:hover .srt-arrow {
    transform: translateX(4px);
    color: #B9823D;
}

@media (max-width: 768px) {
    .srt-cards-section {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem auto 0;
        max-width: 280px;
    }
    
    .srt-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .srt-image {
        width: 130px;
        height: 130px;
    }
}

/* Specific styling for kjell_karamell, SRT and Google Maps links only in story section */
.story-text a[href*="kjell_karamell"],
.story-text a[href*="maps.app.goo.gl"],
.story-highlight a[href*="s-r-t.se"] {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.story-text a[href*="kjell_karamell"]:hover,
.story-text a[href*="maps.app.goo.gl"]:hover,
.story-highlight a[href*="s-r-t.se"]:hover {
    color: #B9823D !important;
    text-decoration: none !important;
}

/* Footer link styling - keep white on hover */
.social-footer .contact-info a {
    color: #fff !important;
    text-decoration: none !important;
    border-bottom: none !important; /* Ta bort eventuell border-bottom */
    transition: text-decoration 0.3s ease;
}

.social-footer .contact-info a:hover {
    color: #fff !important; /* Behåll vit färg vid hover */
    text-decoration: underline !important; /* Lägg till understreck endast vid hover */
    border-bottom: none !important; /* Förhindra dubbla understreck */
}
