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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    background-color: #1a1a1d;
    color: #f5f5f7;
    overflow-x: hidden; /* Förhindrar horisontell scrollning */
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #150a32;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 1000; /* Högre z-index för att vara över allt */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
    font-size: 1.5rem;
    color: #f5f5f7;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f7;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 5px; /* Lade till lite padding för enklare klick */
    border: 2px solid transparent; /* Förbereder för hover-effekt */
}

.nav-links a:hover {
    color: #cccccc;
    border-color: transparent; /* Ta bort onödig hover-effekt */
}

.hamburger-menu {
    display: none; /* Dold på stora skärmar */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #f5f5f7;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* --- Hero Section (#home) --- */
.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex; /* Använd flexbox för enklare hantering */
}

.diagonal-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #32264c 50%, #1a1a1d 50%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.content {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f5f5f7;
    padding: 2rem;
    z-index: 2; /* Säkerställ att innehållet är över bakgrunden */
}

.content.left {
    text-align: left;
}

.content.right {
    text-align: right;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f5f5f7;
}

p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color:#f5f5f7;
    line-height: 1.6; /* Förbättrar läsbarheten */
}

.content a {
    color: #f5f5f7;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #f5f5f7;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block; /* För att padding ska fungera korrekt */
}

.content a:hover {
    background:#f5f5f7;
    color: black;
}

/* --- Generella Sektioner --- */
section {
    padding: 4rem 2rem;
    background-color: #1B1B1E;
    color: #f5f5f7;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem; /* Lite mer utrymme */
    color: #f5f5f7;
}

/* Rensa <center>-taggar och använd klasser istället i framtiden */
.more-info p, .about p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rounded-corners {
    border-radius: 15px;
    max-width: 100%; /* Gör bilden responsiv */
    height: auto;
    width: 600px; /* Behåll max-bredd för stora skärmar */
    margin-top: 2rem;
}

.image-container-nextto {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Tillåt bilder att wrappa om det behövs */
    margin-top: 2rem;
}

.image-container-nextto img {
    max-width: 45%;
    height: auto;
    max-height: 500px;
    border-radius: 10px; /* Snyggare med rundade hörn */
}

#contact p {
    font-size: 1.2rem;
    color: #f5f5f7;
}

/* =========================================== */
/* ===         MOBILANPASSNING             === */
/* =========================================== */
@media (max-width: 768px) {
    
    /* --- Mobil Navbar --- */
    .nav-links {
        display: none; /* Göm länkarna som standard */
        position: absolute;
        right: 0;
        top: 60px; /* Under navbaren */
        background-color: #150a32;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex; /* Visa menyn när den är aktiv */
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hamburger-menu {
        display: flex; /* Visa hamburgare-ikonen */
    }

    /* --- Mobil Hero Sektion --- */
    .container {
        flex-direction: column; /* Stapla innehållet vertikalt */
        height: auto; /* Låt höjden anpassas efter innehållet */
    }

    .diagonal-split {
        /* Ta bort den diagonala effekten och gör den enkel för mobil */
        background: #32264c;
    }

    .content {
        width: 100%;
        height: 100vh; /* Ge varje sektion full skärmhöjd */
        text-align: center;
        padding: 1rem;
    }
    
    .content.right {
        background-color: #1a1a1d;
    }

    h1 {
        font-size: 2.2rem; /* Mindre text på mobil */
    }

    p {
        font-size: 1rem;
    }
    
    /* --- Mobila Sektioner --- */
    section {
        padding: 3rem 1rem; /* Mindre padding på sidorna */
    }

    section h2 {
        font-size: 2rem;
    }
    
    .more-info p, .about p {
        max-width: 95%; /* Använd nästan hela bredden */
    }

    .rounded-corners {
        width: 90%; /* Anpassa bildens bredd */
    }
    
    .image-container-nextto {
        flex-direction: column; /* Stapla bilderna */
        align-items: center;
        gap: 15px;
    }

    .image-container-nextto img {
        max-width: 90%; /* Låt bilderna ta mer plats */
    }
}


/* =========================================== */
/* ===         STYLING FÖR UTHYRNINGSSIDAN === */
/* =========================================== */

/* Sidhuvud */
.page-header {
    padding: 100px 2rem 60px 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1d 0%, #32264c 100%);
    margin-top: 60px; /* Utrymme för fast navbar */
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #c5c5c5;
    max-width: 600px;
    margin: 0 auto;
}

/* Informationssektion */
.info-section {
    background-color: #1a1a1d;
    padding: 4rem 2rem;
    text-align: center;
}

.info-box {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    padding: 2rem;
    background-color: #150a32;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f5f5f7;
    border-bottom: 1px solid #4a3f6a;
    padding-bottom: 0.5rem;
}

.info-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}


/* Produktsektion */
.product-section {
    padding: 4rem 2rem;
    background-color: #1B1B1E;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #1a1a1d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 35, 85, 0.6);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.8rem;
    margin: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.product-card .description {
    font-size: 1rem;
    padding: 0 1.5rem;
    color: #c5c5c5;
    flex-grow: 1; /* Gör att korten får samma höjd */
}

.price-list {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
}

.price-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
}
.price-list li:last-child {
    border-bottom: none;
}

.price-list strong {
    color: #f5f5f7;
}

.price-on-request {
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
    flex-grow: 1;
}

.external-link {
    display: block;
    text-align: center;
    padding: 0.5rem 1.5rem;
    color: #aaa;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: #fff;
}

.cta-button {
    display: block;
    background-color: #32264c;
    color: #f5f5f7;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0;
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    border: 2px solid #32264c;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f7;
    color: #1a1a1d;
    border-color: #f5f5f7;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #150a32;
    color: #aaa;
    font-size: 0.9rem;
}

/* Anpassningar för mobil */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 1rem 40px 1rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }

    .info-section, .product-section {
        padding: 3rem 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr; /* Ett kort per rad på mobil */
    }
}

/* =========================================== */
/* ===         BILD-SLIDER FÖR PRODUKTKORT === */
/* =========================================== */

.slider-container {
    position: relative;
    width: 100%;
    height: 250px; /* Samma höjd som bilden hade innan */
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    opacity: 0; /* Gömda som standard */
    transition: opacity 0.3s ease;
}

.slider-container:hover .slider-btn {
    opacity: 1; /* Visas när man hovrar över slidern */
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Ta bort bild-specifik CSS från product-card för att undvika konflikter */
.product-card img {
    all: unset; /* Nollställer tidigare bild-styling */
}

/* =========================================== */
/* ===         STYLING FÖR BOKNINGSSIDAN   === */
/* =========================================== */

.booking-section {
    padding: 4rem 1rem;
    background-color: #1B1B1E;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.booking-card {
    background-color: #150a32;
    padding: 2rem 2.5rem;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.booking-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-card p {
    font-size: 1.1rem;
    color: #c5c5c5;
    line-height: 1.6;
}

.email-link {
    display: inline-block;
    background-color: #f5f5f7;
    color: #1a1a1d;
    padding: 1rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #f5f5f7;
}

.email-link:hover {
    background-color: transparent;
    color: #f5f5f7;
}

.info-list {
    text-align: left;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.info-list h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.info-list ul {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #c5c5c5;
}

.info-list li::before {
    content: '✓'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #8a63f5; /* En lila accentfärg */
    font-weight: bold;
}

/* Mobilanpassning för bokningskortet */
@media (max-width: 768px) {
    .booking-card {
        padding: 1.5rem;
    }
    .booking-card h2 {
        font-size: 1.8rem;
    }
    .email-link {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}