/* boka.css - Specifika stilar för bokningssidan */

.boka-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* Tillbaka-knapp */
.back-nav {
    margin-top: 1.5rem;
    text-align: center;
}

.back-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: white;
    border: 2px solid #B08612;
    color: #B08612;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background-color: #B08612;
    color: white;
}

.category-section {
    margin-bottom: 3.5rem;
    padding: 0 1rem;
}

.category-title {
    text-align: center;
    font-family: serif;
    color: #B08612;
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    border-bottom: 2px solid white;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0.5rem;
}

.booking-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.booking-card {
    background-color: var(--ljusgrön);
    border: 5px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--mörkgrön);
    line-height: 1.3;
}

.card-info p {
    margin: 0.4rem 0 0 0;
    color: #444;
    font-size: 0.95rem;
}

.card-action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.price {
    font-weight: bold;
    font-size: 1.15rem;
    color: var(--mörkgrön);
    white-space: nowrap;
}

.btn-boka {
    background-color: white;
    border: 2px solid var(--grön);
    color: var(--mörkgrön);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    min-width: 80px;
}

.btn-boka:hover {
    background-color: var(--grön);
    color: white;
}

/* Mobilanpassning */
@media (max-width: 600px) {
    .booking-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }

    .card-info h3 {
        font-size: 1.4rem;
    }

    .card-action {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .price {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }

    .btn-boka {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.2rem;
        box-sizing: border-box;
    }

    .category-title {
        font-size: 1.8rem;
    }
}