/* Hvor Mange Page Styles */
.hvor-mange-page {
    min-height: 100vh;
    background-color: #fdf5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Mobile styles */
@media (max-width: 991.98px) {
    .hvor-mange-page {
        padding: 0 !important;
    }
    
    .hvor-mange-container {
        flex-direction: column;
    }
    
    .hvor-mange-content {
        flex: 1;
        padding: 40px 20px;
    }
    
    .hvor-mange-image {
        flex: 0 0 40vh;
        padding: 0 !important;
    }
    
    .step-header-row {
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 12px !important;
    }
    
    .step-number {
        font-size: 2.5rem !important;
        grid-column: 1 !important;
    }
    
    .step-title {
        text-align: left !important;
        grid-column: 2 !important;
    }
}

.hvor-mange-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background: #f5f0e8;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.hvor-mange-content {
    flex: 0 0 45%;
    background-color: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.hvor-mange-inner {
    width: 100%;
    max-width: 400px;
}

.step-header-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 12px;
    width: 100%;
    margin-bottom: 40px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #bf6d4b;
    line-height: 1;
}

.step-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: #333;
}

.text-accent {
    color: #b4ba93;
    font-weight: 700;
}

.people-input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.people-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #bf6d4b;
    border-radius: 0;
    font-size: 1.2rem;
    text-align: center;
    background: white;
    color: #333;
}

.people-input:focus {
    outline: none;
    border-color: #b4ba93;
    box-shadow: 0 0 0 3px rgba(180, 186, 147, 0.1);
}

.btn-confirm {
    background-color: #bf6d4b;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background-color: #a55a3f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 109, 75, 0.3);
}

.menu-selection {
    margin-top: 30px;
}

.menu-selection h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.menu-options {
    display: grid;
    gap: 15px;
}

.menu-option {
    display: block;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
}

.menu-option:hover {
    border-color: #bf6d4b;
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
}

.menu-option strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #bf6d4b;
}

.menu-option small {
    font-size: 0.9rem;
    color: #666;
}

.hvor-mange-image {
    flex: 0 0 55%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .hvor-mange-container {
        flex-direction: column;
        min-height: 100vh;
    }
    
    .hvor-mange-content {
        flex: none;
        padding: 40px 20px;
    }
    
    .hvor-mange-image {
        flex: none;
        height: 300px;
        order: -1;
    }
    
    .step-header-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .people-input-group {
        gap: 15px;
    }
    
    .people-input {
        padding: 12px 15px;
        font-size: 1.1rem;
    }
    
    .btn-confirm {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hvor-mange-page {
        padding: 10px;
    }
    
    .hvor-mange-content {
        padding: 30px 15px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.8rem;
    }
    
    .menu-option {
        padding: 15px;
    }
    
    .menu-option strong {
        font-size: 1.1rem;
    }
}