/* ====== BAS ====== */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    background: #141414;
    color: #f5f5f5;
}

h1, h2, h3 {
    margin-bottom: 12px;
    font-weight: 600;
}

section {
    max-width: 1000px;
    margin: auto;
    padding: 30px 20px;
}


/* ====== NAVIGATION ====== */

.navbar {
    background: #0b0b0b;
    color: #f5f5f5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.logo {
    color: #f5f5f5;
    font-weight: bold;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    margin-left: 25px;
    padding: 8px 14px;
    border-radius: 5px;
    transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
    background: #1c1c1c;
    padding: 5px 12px;
}


/* ====== SIDHUVUD ====== */

.page-header {
    text-align: center;
    padding: 60px 20px;
}

.page-header p {
    max-width: 600px;
    margin: auto;
    color: #b0b0b0;
}


/* ====== TJÄNSTER ====== */

.service-section {
    margin-top: 40px;
}

.service-section h2 {
    margin-bottom: 20px;
}

.service-card {
    background: #2e2e2e;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: 0.2s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.7);
    border-color: #cfae70;
}

.service-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.price {
    font-weight: bold;
    margin-top: 15px;
    color: #cfae70;
}


/* ====== TILLÄGG ====== */

.addon-list {
    background: #2e2e2e;
    padding: 25px;
    border-radius: 10px;
    list-style: disc;
    padding-left: 40px;
    transition: 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.service-section .addon-list:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.7);
    border-color: #cfae70;
}


/* ====== KNAPPAR ====== */

a.button, button {
    display: inline-block;
    background: #cfae70;
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s ease;
    border: none;
    cursor: pointer;
}

a.button:hover,
button:hover {
    background: #b89a5f;
}


/* ====== FOOTER ====== */

.footer {
    background: #0b0b0b;
    color: #b0b0b0;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    font-size: 14px;
}


/* ====== RESPONSIVITET ====== */

@media (max-width: 700px) {
    .nav-links a {
        margin-left: 10px;
        padding: 6px 10px;
    }

    .service-card {
        padding: 20px;
    }

    section, header {
        padding: 20px 15px;
    }
}

.nav-container .book {
    background: #cfae70;
    color: #f5f5f5;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.25s ease;
}

.nav-container .book:hover {
    background: #b89a5f;
    transform: translateY(-2px);
}

.book {
    background: #cfae70;
    color: #f5f5f5;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.25s ease;
    text-decoration: none;
}

.book:hover {
    background: #b89a5f;
    transform: translateY(-2px);
}

.service-card a {
    background: #cfae70;
    color: #f5f5f5;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.25s ease;
    text-decoration: none;
}

.hero-buttons a {
    background: #cfae70;
    color: #f5f5f5;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.25s ease;
    text-decoration: none;
}

.hero-buttons a:hover {
    background: #b89a5f;
    transform: translateY(-2px);
}

.nav-container a {
    position: relative;
    color: #f5f5f5;
    text-decoration: none;
    margin-left: 25px;
    padding: 8px 4px;
    font-weight: 500;
    transition: 0.25s ease;
}

/* Underline animation */
.nav-container a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #cfae70;
    transition: 0.25s ease;
}

.nav-container a:hover::after,
.nav-container .active::after {
    width: 100%;
}


/* ===== HERO MED GIF ===== */

.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f5f5f5;
    background: url("../img/hero.gif") center center / cover no-repeat;
    overflow: hidden;
}

/* Mörk overlay för att texten ska synas */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Textinnehåll */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #dcdcdc;
}


/* ===== USP SEKTION ===== */

#usp {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

.usp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.usp-intro {
    text-align: center;
    margin-bottom: 40px;
}

.usp-intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.usp-intro p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.usp-card {
    background: #2e2e2e;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: 0.25s ease;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.7);
    border-color: #cfae70;
}

.usp-card p {
    color: #b0b0b0;
}


/* ===== CTA SEKTION ===== */

#cta {
    background: #2e2e2e;
    color: #f5f5f5;
    padding: 70px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

#cta p {
    font-size: 1.1rem;
    color: #d0d0d0;
}

.cta-buttons .secondary {
    background: transparent;
    border: 2px solid #cfae70;
    color: #f5f5f5;
}

.cta-buttons .secondary:hover {
    background: #cfae70;
    color: #f5f5f5;
}

/* ===== BEFORE / AFTER HOVER ===== */

/* GRID för flera before/after */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
}

/* Container */
.ba-hover-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* fyrkantig = funkar bäst för portrait bilder */
    overflow: hidden;
    border-radius: 12px;
    cursor: ew-resize;
    background: #000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Bilder */
.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* FIXAR SVARTA BARS */
}

/* Efter-bilden klipps */
.ba-after {
    clip-path: inset(0 0 0 50%);
}

/* Divider */
.ba-divider {
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background: #2e2e2e;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    pointer-events: none;
}

.logo img {
    height: 40px;      /* ändra storlek här */
    width: auto;
    display: block;
}

/* ===== ABOUT PAGE ===== */

.about-section {
    margin-top: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    color: #c9c9c9;
    margin-bottom: 15px;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}


/* VALUES */
.about-values {
    text-align: center;
    margin-top: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: #2e2e2e;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.25s ease;
}

.value-card:hover {
    border-color: #cfae70;
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2rem;
    color: #cfae70;
    margin-bottom: 10px;
    display: block;
}


/* BEFORE/AFTER SMALL */
.about-ba {
    margin-top: 60px;
    text-align: center;
}

.ba-grid-small {
    max-width: 1100px;
    margin: 30px auto;
    gap: 20px;
}

.ba-hover-container.ba-small {
    aspect-ratio: 4 / 5;
    max-width: 300px;
    margin: auto;
}

/* ===== SOCIAL MEDIA BUTTONS ===== */

.about-socials {
    text-align: center;
    margin-top: 60px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    color: #111111;
    background: #cfae70; /* Guld */
    transition: 0.25s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
    background: #b8965d; /* Mörkare guld */
    transform: translateY(-3px);
}

/* Instagram knapp */
.social-btn.insta {
    background: #833AB4;
    color: #f5f5f5;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

/* Instagram gradient hover */
.social-btn.insta:hover {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737, #FCAF45);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #ffffff33;
}


/* TikTok knapp */
.social-btn.tiktok {
    background: #69C9D0;
    color: #f5f5f5;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

/* Hover-effekt med TikTok-färger */
.social-btn.tiktok:hover {
    background: linear-gradient(135deg, #EE1D52, #69C9D0);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #ffffff33;
}

/* Facebook knapp */
.social-btn.facebook {
    background: #0E5A9C;
    color: #f5f5f5;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

/* Facebook blå hover */
.social-btn.facebook:hover {
    background: #1877F2; /* Facebook blå */
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #ffffff33;
}

/* ===== CONTACT PAGE ===== */

.contact-methods {
    text-align: center;
    margin-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: #2e2e2e;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.25s ease;
}

.contact-card:hover {
    border-color: #cfae70;
    transform: translateY(-4px);
}

.contact-card p {
    color: #c9c9c9;
}


/* FAQ */
.faq-section {
    margin-top: 60px;
}

.faq-item {
    background: #2e2e2e;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.25s ease;
}

.faq-item:hover {
    border-color: #cfae70;
}

.faq-item p {
    color: #c9c9c9;
}


/* CONTACT FORM */
.contact-form-section {
    margin-top: 60px;
}

.contact-form {
    background: #2e2e2e;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    max-width: 600px;
    margin: auto;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    color: #f5f5f5;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #0e0e0e;
    color: #f5f5f5;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    margin-top: 20px;
    width: 100%;
}

.contact-card a {
    color: #cfae70; /* Guld */
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    transition: 0.25s ease;
}

.contact-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #cfae70;
}

/* MOBILE VERSION */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        order: 3; 
        margin-left: 0; 
        margin-right: 0;
    }

    .nav-container { 
        display: flex; 
        align-items: center; 
    }

    /* Ordna om bara på mobil */ 
    .logo { 
        order: 1; 
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #111111;
        position: absolute;
        top: 70px;
        order: 4;
        right: 40px;
        margin: 20px;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.1);
        gap: 15px;
        width: 200px;
        text-align: center;
    }

    .nav-container a {
        margin-left: 0;
    }


    .nav-links.show {
        display: flex;
    }

    /* Keep Boka nu visible */
    .book {
        margin-left: auto;
        order: 2;
    }
}

/* ===== TERMS & CONDITIONS ===== */

.terms-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px 25px;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.terms-section h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 35px;
    color: #cfae70;
}

.terms-section h2 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #cfae70;
    border-left: 4px solid #cfae70;
    padding-left: 12px;
}

.terms-section p {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Extra spacing for readability */
.terms-section p:last-child {
    margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .terms-section {
        padding: 25px 18px;
        margin: 40px 15px;
    }

    .terms-section h1 {
        font-size: 1.7rem;
    }

    .terms-section h2 {
        font-size: 1.25rem;
    }

    .terms-section p {
        font-size: 0.95rem;
    }
}

/* Knapp för villkor */
.terms-button {
    display: inline-block;
    padding: 10px 18px;
    background: #cfae70;
    color: #f5f5f5;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.25s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.terms-button:hover {
    background: #b89a5f;
    transform: translateY(-2px);
}

.terms-link {
    color: #cfae70;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.terms-link:hover {
    color: #e6c98a;
    text-decoration: underline;
}

.old-price {
    color: #b0b0b0;
    margin-right: 8px;
}

.new-price {
    color: #cfae70;
    font-weight: bold;
}

.addons-section {
    margin-top: 20px;
}

.addons-btn {
    background-color: #cfae70;
    color: #fff;
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.addons-dropdown {
    margin-top: 12px;
    padding: 15px;
    background: #2e2e2e;
    border-radius: 6px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.addons-dropdown label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
